/* ============================================
   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 */
.article_12b6 p,
.tabs_560c,
.slider_3e4e,
.container-5319,
.clean_7cab,
.list_7126,
.action_19ba,
.container-85cd {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.badge_7634 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.badge_7634 > *,
.notice-hard-baf3,
.article_12b6,
.preview_6999 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .badge_7634 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .badge_7634 {
    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 === */
.avatar_motion_1439 {
  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 */
.avatar_motion_1439.large_91c5 {
  box-shadow: var(--shadow-md);
}

.banner-22f2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.footer-88c0 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.old_9201 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.texture_advanced_719b {
  display: none;
}

/* Hide mobile actions on desktop */
.copper-b34e {
  display: none;
}

.mini_f5df a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.mini_f5df a:hover,
.mini_f5df a.fn-active-2cd1 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.notification_65c4 {
  margin-left: 1rem;
}

.disabled_steel_a047 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.outline-dynamic-c336,
.accent_purple_22d1 {
  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;
}

.outline-dynamic-c336 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.outline-dynamic-c336: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;
}

.accent_purple_22d1 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.accent_purple_22d1: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;
}

.outline-dynamic-c336 svg,
.accent_purple_22d1 svg {
  flex-shrink: 0;
}

.avatar_145d {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.red_26f6 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.red_26f6::before,
.red_26f6::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.red_26f6::before {
  top: -7px;
}

.red_26f6::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.dropdown_black_f765 {
  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 === */
.label-top-908d {
  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);
}

.element_slow_c71a {
  margin: 0 0 2rem;
  text-align: center;
}

.container-iron-47d6 {
  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;
}

.container-iron-47d6:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.medium_18cf {
  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);
}

.medium_18cf strong {
  color: var(--primary-color);
  font-weight: 700;
}

.item-3fff {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.rough_3450 {
  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;
}

.rough_3450:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.main_lower_53ae {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.progress_current_1916 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.item-a5c6 {
  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);
}

.item-a5c6 .progress_0a4c {
  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;
}

.item-a5c6 .progress_0a4c svg {
  flex-shrink: 0;
}

.item-a5c6 .iron-c528 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.item-a5c6 .iron-c528: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);
}

.item-a5c6 .box-first-3a4f {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.item-a5c6 .box-first-3a4f: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) {
  .label-top-908d {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .container-iron-47d6 {
    max-width: 100%;
  }

  .item-3fff {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .rough_3450 {
    padding: 1rem;
  }

  .main_lower_53ae {
    font-size: 1.5rem;
  }

  .progress_current_1916 {
    font-size: 0.75rem;
  }

  .medium_18cf {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .item-a5c6 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .item-a5c6 .progress_0a4c {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .item-3fff {
    grid-template-columns: 1fr;
  }
}

.dim-311a {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.east-1958 {
  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 === */
.photo-fe2d {
  margin-bottom: 2.5rem;
}

.static-990e {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.dim-311a {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.active_8a6e {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.backdrop-east-0278 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.tall-4939 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.title_11a6 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.outline_0a48 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.avatar_a710 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.filter-simple-7911 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.filter-simple-7911 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.input-soft-0343 {
  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);
}

.outline-west-1b15 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.column-56e0 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.icon-1c38 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.gradient_5dd4 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.fixed_bc2e {
  display: grid;
  gap: 1rem;
}

.wrapper-outer-d640 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.tabs_small_dac9 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.brown_ccf9 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.smooth-31d8 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.dynamic_9bd7 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.active-5508 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.active-5508 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.tabs_560c {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.content_4eda {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.shadow_8f4c {
  display: grid;
  gap: 2rem;
}

.banner_cb8a {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.backdrop-east-0278 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.active_8a6e {
  flex: 1;
}

.title_11a6 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.title_11a6 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.huge_5dc1 {
  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_0a48 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.center_5dda {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.center_5dda span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.black-7035 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.black-7035 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.hover_29d0 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.hover_29d0 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.hover_29d0 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hover_29d0 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.layout-tall-c0c8 {
  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 === */
.frame-paper-3218 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.widget_thick_a5cd {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.summary-slow-4b3c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.status_yellow_8578 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.status_yellow_8578 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.status_yellow_8578 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.status_yellow_8578 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;
}

.status_yellow_8578 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.status_yellow_8578 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.article_12b6 {
  padding: 3rem 0 5rem;
}

.preview_6999 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.preview_6999.background_center_32b2 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.slider_3e4e {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.mask_eef5 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.sort_4680 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.sort_4680 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.alert-in-f714 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.footer_lower_ab9e {
  text-align: center;
}

.button-3d13 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.fluid_b188 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.huge_d238 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.list_7126 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.container-5319 {
  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;
}

.container-5319 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.container-5319:hover {
  box-shadow: var(--shadow-lg);
}

.container-5319.sidebar-simple-c63b {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.container-5319 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.container-5319 ul {
  margin: 1rem 0;
}

.container-5319 li {
  margin-bottom: 0.75rem;
}

.background-orange-eed3 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.accent_purple_46a9 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.accent_purple_46a9 a {
  font-weight: 600;
}

/* === Data Tables === */
.nav-c8d4 {
  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;
}

.nav-c8d4 table {
  width: 100%;
  min-width: 600px;
}

.nav-c8d4 thead {
  background-color: var(--primary-color);
  color: white;
}

.nav-c8d4 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.nav-c8d4 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.nav-c8d4 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.nav-c8d4 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.center_4623 {
  list-style: none;
  margin: 1.5rem 0;
}

.center_4623 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.center_4623 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.icon-hard-3250::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-2cd1::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 === */
.tabs_c97e {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.message_51ed {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.message_51ed img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.message_51ed strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.message_51ed span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tabs_c97e blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.action_19ba {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.action_19ba::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.glass-a134 {
  position: relative;
  margin-bottom: 3rem;
}

.sidebar_771e {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.sidebar_771e .soft_4108 {
  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;
}

.wrapper_2a80 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.wrapper_2a80 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.wrapper_2a80 ul {
  margin: 1rem 0;
}

.wrapper_2a80 li {
  margin-bottom: 0.75rem;
}

.form-9db7 {
  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 === */
.main-gold-4f00 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.main-gold-4f00 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.video-bronze-0e6e {
  list-style: none;
  margin: 1.5rem 0;
}

.video-bronze-0e6e li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.video-bronze-0e6e a {
  font-weight: 600;
}

.feature-simple-8c4e {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.container-85cd {
  margin: 2.5rem 0;
}

.bottom-7ef6 {
  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;
}

.bottom-7ef6:hover {
  box-shadow: var(--shadow-lg);
}

.bottom-7ef6.bottom-992c {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.module-7906 {
  flex-shrink: 0;
}

.module-7906 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);
}

.overlay-8358 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.tag_fluid_57c3,
.pattern_pink_4e4c,
.heading_0f96 {
  width: 100%;
  margin: 1.5rem 0;
}

.preview-5967 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.preview-5967 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.popup_ca23 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.popup_ca23 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.lite-42b5 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.lite-42b5 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.fixed-3437 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.video_down_07d6 {
  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;
}

.video_down_07d6:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.video_down_07d6.banner-short-3b65 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.video_down_07d6 .hidden-white-3e6f {
  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;
}

.video_down_07d6 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.focus_03a4 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.gas_20ef {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.gas_20ef label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.badge_motion_fb30 {
  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 === */
.progress_0a4c {
  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;
}

.iron-c528 {
  background-color: var(--primary-color);
  color: white;
}

.iron-c528:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.box-first-3a4f {
  background-color: var(--text-secondary);
  color: white;
}

.box-first-3a4f:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.focused-a928 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.focused-a928:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.active-bfc7 {
  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;
}

.active-bfc7:hover {
  background-color: var(--primary-dark);
}

.over_8c62 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.avatar_d961 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.texture_tall_1613 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.row-ff26 {
  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 === */
.menu-84da {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.title-62ff {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.title-62ff h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.icon-2e45 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.sort-91a4 {
  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;
}

.detail_1ac2 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.input-bottom-834d {
  list-style: none;
  counter-reset: rank-counter;
}

.input-bottom-834d li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.input-bottom-834d 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;
}

.description_plasma_2eb7 {
  list-style: none;
}

.description_plasma_2eb7 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.disabled_smooth_b983 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.texture_bcbe {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.texture_bcbe .message_2ac4 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.texture_bcbe .old-0407 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.down-a724 {
  margin-top: 3rem;
}

.simple_85c4 {
  width: 100%;
}

.label_4f60 {
  background-color: #fef3c7;
}

.section-fast-d30f {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.hover-selected-9a48 {
  margin: 3rem 0;
}

.sidebar_d49e {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.first_46af {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.first_46af:hover {
  box-shadow: var(--shadow-lg);
}

.first_46af.blue-459c {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.yellow-e711 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.white-71ca strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.white-71ca span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.smooth-ce3b {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.first_46af blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.wood_0c45 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.description_4db1 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.overlay_76bb {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.silver_b6de {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.hidden_3231 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.dirty_01b1 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.disabled_f46b {
  max-width: 900px;
  margin: 0 auto;
}

.secondary_069f {
  margin: 2rem 0;
}

.green_d409 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.green_d409 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.green_d409 summary::-webkit-details-marker {
  display: none;
}

.green_d409 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.fast-487a {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.green_d409[open] .fast-487a {
  transform: rotate(45deg);
}

.breadcrumb_first_4cff {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.breadcrumb_first_4cff p:last-child {
  margin-bottom: 0;
}

.input-green-f0d1 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.gold-1618 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.cold_c4d0 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.cold_c4d0 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.cold_c4d0 .progress_0a4c {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.description_b292 {
  max-width: 900px;
  margin: 0 auto;
}

.list_c35f {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.input-b856 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.input-b856.fn-success-2cd1 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.dirty_4818 {
  font-size: 3rem;
  line-height: 1;
}

.next-4c45 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.east_3fb8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.caption_738f,
.video-fixed-f34c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.caption_738f h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.video-fixed-f34c h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.paper-132f,
.yellow-9423 {
  margin: 1.5rem 0;
}

.paper-132f li,
.yellow-9423 li {
  margin-bottom: 1rem;
}

.summary-0ba8 {
  margin: 3rem 0;
}

.dropdown_purple_af77 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.dropdown_purple_af77 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.dropdown_purple_af77 ol {
  margin: 1rem 0;
}

.dropdown_purple_af77 li {
  margin-bottom: 0.75rem;
}

.huge_4325 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.item-eb90 {
  margin: 2rem 0;
}

.slider_171f {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.surface_in_097a {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.tabs_small_4105 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.surface-7ed1 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.background-paper-469d {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.header_bb71 {
  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;
}

.header_bb71 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.tall-4939 {
  flex: 1;
}

.tall-4939 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.frame_86b7 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.status-f33c p {
  margin-bottom: 1rem;
}

.block_south_e19a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.surface_green_4ab5 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.item-46d9 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.item-46d9 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.aside-40a1 h3 {
  margin-bottom: 1.5rem;
}

.gallery-3a3d {
  display: grid;
  gap: 2rem;
}

.focus-white-816e {
  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;
}

.focus-white-816e img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.focus-white-816e h4 {
  margin: 0 0 0.25rem;
}

.focus-white-816e p {
  margin: 0;
  font-size: 0.9375rem;
}

.pagination-stale-e695 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.link-simple-0023 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.link-simple-0023 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.link-simple-0023 ul {
  margin: 1.5rem 0;
}

.link-simple-0023 li {
  margin-bottom: 0.75rem;
}

.accent_center_2a88 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.easy_7981 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.breadcrumb-2c77 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.primary_wide_5bee h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.primary_wide_5bee p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.aside_pro_b7ae {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.aside_pro_b7ae a {
  color: rgba(255, 255, 255, 0.8);
}

.thick_0d94 {
  list-style: none;
}

.thick_0d94 li {
  margin-bottom: 0.75rem;
}

.thick_0d94 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.thick_0d94 a:hover {
  color: white;
}

.input_ee90 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.sort-wood-5247 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.lite_054f {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.slow-7027 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.disabled_4743 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .badge_7634 {
    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;
  }

  .plasma-b91f {
    font-size: 1.5rem !important;
  }

  .static-990e {
    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 */
  .container-5319,
  .clean_7cab,
  .wrapper_2a80,
  .overlay-8358,
  .yellow-e711,
  .first_46af,
  .breadcrumb_first_4cff,
  .medium_18cf,
  .tabs_560c,
  .slider_3e4e {
    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 */
  .dim-311a {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .active_8a6e {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .backdrop-east-0278 {
    flex-shrink: 0;
  }

  .tall-4939 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .title_11a6,
  .outline_0a48 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .outline_0a48 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .old_9201 {
    display: none;
  }

  /* Show mobile actions */
  .copper-b34e {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .message-center-be13 {
    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;
  }

  .message-center-be13 svg {
    flex-shrink: 0;
  }

  .message-center-be13 .card_huge_47ed {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .message-center-be13 .slow_ede6 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .tabs-middle-0962 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .card_1a7d {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .message-center-be13:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .texture_advanced_719b {
    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;
  }

  .texture_advanced_719b.fn-active-2cd1 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .texture_advanced_719b li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .texture_advanced_719b li:last-child {
    border-bottom: none;
  }

  .texture_advanced_719b a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .mini_f5df {
    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;
  }

  .mini_f5df li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .mini_f5df li:last-child {
    border-bottom: none;
  }

  .mini_f5df a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .notification_65c4 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .disabled_steel_a047 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .outline-dynamic-c336,
  .accent_purple_22d1 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .outline-dynamic-c336 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .accent_purple_22d1 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .mini_f5df.fn-active-2cd1 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .avatar_145d {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .avatar_motion_1439 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .banner-22f2 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .dropdown_black_f765 {
    margin-top: 0;
  }

  /* Hero section */
  .dropdown_black_f765 {
    padding: 2rem 0 1.5rem;
  }

  .static-990e {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .tabs_560c {
    font-size: 1rem;
  }

  /* Hero brand image */
  .label-top-908d {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .container-iron-47d6 {
    max-width: 100%;
    border-radius: 8px;
  }

  .item-3fff {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .rough_3450 {
    padding: 1rem;
  }

  .main_lower_53ae {
    font-size: 1.5rem;
  }

  .progress_current_1916 {
    font-size: 0.75rem;
  }

  .medium_18cf {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .item-a5c6 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .item-a5c6 .progress_0a4c {
    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 */
  .summary-slow-4b3c {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .bottom-7ef6 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .module-7906 {
    margin-bottom: 1rem;
  }

  /* Author */
  .banner_cb8a {
    flex-direction: column;
  }

  .header_bb71 {
    flex-direction: column;
  }

  /* Quotes */
  .yellow-e711 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .east_3fb8 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .surface-7ed1 {
    flex-direction: column;
  }

  .surface-7ed1 .progress_0a4c {
    width: 100%;
  }

  /* Version comparison */
  .fixed-3437 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .menu-84da {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .breadcrumb-2c77 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lite_054f {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .nav-c8d4,
  .pattern_pink_4e4c,
  .aside-simple-6cee,
  .simple_85c4,
  .tag_fluid_57c3,
  .heading_0f96 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-c8d4 table,
  .pattern_pink_4e4c table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .badge_motion_fb30 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .badge_7634 {
    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;
  }

  .plasma-b91f {
    font-size: 1.25rem !important;
  }

  .static-990e {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .avatar_motion_1439 {
    position: fixed;
  }

  .banner-22f2 {
    padding: 0.625rem 0;
  }

  .footer-88c0 img {
    height: 26px;
  }

  .mini_f5df {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .texture_advanced_719b {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .message-center-be13 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .message-center-be13 svg {
    width: 18px;
    height: 18px;
  }

  .message-center-be13 .card_huge_47ed {
    font-size: 0.7rem;
  }

  .message-center-be13 .slow_ede6 {
    font-size: 0.65rem;
  }

  .outline-dynamic-c336,
  .accent_purple_22d1 {
    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, .badge_7634, .notice-hard-baf3, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .label-top-908d {
    padding: 1rem;
  }

  .item-3fff {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .rough_3450 {
    padding: 0.875rem;
  }

  .main_lower_53ae {
    font-size: 1.25rem;
  }

  .item-a5c6 .progress_0a4c {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .static-990e {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .progress_0a4c {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .over_8c62 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .bottom-7ef6 {
    padding: 1rem;
  }

  .module-7906 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .container-5319,
  .down_6f5a,
  .under-de55,
  .frame-fe25 {
    padding: 1rem;
  }
}

@media print {
  .avatar_motion_1439,
  .frame-paper-3218,
  .avatar_145d,
  .progress_0a4c,
  .easy_7981 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .badge_7634 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.sort-bright-ded3 {
  margin-bottom: 3rem;
  text-align: center;
}

.plasma-b91f {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.header-wood-6c6e {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.lower-0585,
.complex-39e3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card_active_1bdd {
  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;
}

.card_active_1bdd:hover {
  transform: translateY(-5px);
}

.card_active_1bdd strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.card_active_1bdd span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.active-lower-3610 {
  margin: 3rem 0;
}

.stale_1cbb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card-focused-5901 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.card-focused-5901:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.chip_top_9eb2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.mask-black-0e37 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.section-e7ca {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.header-37f7 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.summary_caeb {
  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;
}

.summary_caeb:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.summary_caeb.header-east-513e {
  border-left: 4px solid var(--primary-color);
}

.brown-fe74 {
  flex-shrink: 0;
}

.brown-fe74 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.summary_lower_2abd {
  flex: 1;
}

.summary_lower_2abd h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.thick-fa19 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.fluid-ff61,
.badge_8f50,
.title_ed49 {
  margin-bottom: 1.5rem;
}

.fluid-ff61 h4,
.badge_8f50 h4,
.title_ed49 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fluid-ff61 ul,
.badge_8f50 ul,
.title_ed49 ul {
  list-style: none;
  padding: 0;
}

.fluid-ff61 li,
.badge_8f50 li,
.title_ed49 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.fluid-ff61 li:before,
.badge_8f50 li:before,
.title_ed49 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.feature-bronze-282c {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.feature-bronze-282c 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;
}

.feature-bronze-282c a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.new-bade { margin: 2rem 0; }
.filter-lower-51cd { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.filter-lower-51cd h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.top_80e8 p { margin-bottom: 1rem; line-height: 1.7; }
.top_80e8 strong { color: var(--text-primary); }
.top_80e8 ul { list-style: none; padding-left: 0; }
.top_80e8 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.top_80e8 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.yellow_487a { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.column-rough-fd30 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.column-rough-fd30:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.shade_stale_cc05 { font-size: 3rem; margin-bottom: 1rem; }
.column-rough-fd30 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.column-rough-fd30 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.image_525e { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.image_525e span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.label-bright-9bab { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.hovered_346b { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.fluid_3620 { text-align: center; }
.shade-hovered-3598 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.active-71ef { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.main-prev-7511 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.light_5f4a { margin: 2rem 0; }
.frame_action_65f5 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.frame_action_65f5 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.frame_action_65f5 p, .frame_action_65f5 ul { line-height: 1.7; }
.frame_action_65f5 ul { list-style: none; padding-left: 0; }
.frame_action_65f5 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.frame_action_65f5 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.footer_silver_b87f { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.pressed_8a14 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.overlay-a3ed { text-align: center; }
.west_552a { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.footer_971b { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.search-short-378d { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.heading-1fce { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.notice_c6b4 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.notice_c6b4:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.notice_c6b4 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.notice_c6b4 p, .notice_c6b4 ul { line-height: 1.7; }
.notice_c6b4 ul { list-style: none; padding-left: 0; }
.notice_c6b4 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.notice_c6b4 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 21ea */
.ghost-box-g3 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.3;
}
