/* ============================================
   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 */
.slider_3d82 p,
.heading-lower-8ae7,
.tooltip-2228,
.pink_3db8,
.fixed_5bf1,
.frame_1ea1,
.pagination_easy_02da,
.notification_8ee4 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.south_efbf {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.south_efbf > *,
.backdrop-wood-a999,
.slider_3d82,
.form_6f39 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .south_efbf {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .south_efbf {
    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 === */
.card_tiny_1726 {
  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 */
.card_tiny_1726.layout_65c5 {
  box-shadow: var(--shadow-md);
}

.silver-c304 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.left_c8c3 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.iron_f5b9 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.full_64ed {
  display: none;
}

/* Hide mobile actions on desktop */
.video_2daa {
  display: none;
}

.pressed-5e5f a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.pressed-5e5f a:hover,
.pressed-5e5f a.fn-active-55ef {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.shade-a762 {
  margin-left: 1rem;
}

.overlay-ee48 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.brown_9df9,
.badge-ce61 {
  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;
}

.brown_9df9 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.brown_9df9: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;
}

.badge-ce61 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.badge-ce61: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;
}

.brown_9df9 svg,
.badge-ce61 svg {
  flex-shrink: 0;
}

.hover_61c0 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.status-pro-8d80 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.status-pro-8d80::before,
.status-pro-8d80::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.status-pro-8d80::before {
  top: -7px;
}

.status-pro-8d80::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.paragraph_smooth_be1f {
  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 === */
.section-top-2c90 {
  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);
}

.banner-selected-3fa3 {
  margin: 0 0 2rem;
  text-align: center;
}

.sort-52b5 {
  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;
}

.sort-52b5:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.panel-7c4a {
  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);
}

.panel-7c4a strong {
  color: var(--primary-color);
  font-weight: 700;
}

.dynamic_f882 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.static_5c36 {
  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;
}

.static_5c36:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.overlay-0590 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.main-b9ee {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.tag-a106 {
  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);
}

.tag-a106 .gold-0ee4 {
  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;
}

.tag-a106 .gold-0ee4 svg {
  flex-shrink: 0;
}

.tag-a106 .outline-rough-304a {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.tag-a106 .outline-rough-304a: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);
}

.tag-a106 .preview-557e {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.tag-a106 .preview-557e: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) {
  .section-top-2c90 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .sort-52b5 {
    max-width: 100%;
  }

  .dynamic_f882 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .static_5c36 {
    padding: 1rem;
  }

  .overlay-0590 {
    font-size: 1.5rem;
  }

  .main-b9ee {
    font-size: 0.75rem;
  }

  .panel-7c4a {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .tag-a106 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .tag-a106 .gold-0ee4 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .dynamic_f882 {
    grid-template-columns: 1fr;
  }
}

.wood-c6fa {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hover-84ef {
  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 === */
.thumbnail_b29f {
  margin-bottom: 2.5rem;
}

.text-6a3c {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.wood-c6fa {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.status-in-0744 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blue_f204 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.lower_aa29 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pro-b87e {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.copper-8166 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.stale_0d78 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer_5082 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer_5082 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.stone_4392 {
  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);
}

.short-0da6 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.black_a15f {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.box-2253 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.warm-fbca {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.center_23db {
  display: grid;
  gap: 1rem;
}

.hidden-lite-acbb {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.chip-hard-7db5 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.breadcrumb_31a6 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.nav_186c {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.article_brown_7531 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.easy-c3cf {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.easy-c3cf p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.heading-lower-8ae7 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.title_action_23df {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.media-lite-c3b0 {
  display: grid;
  gap: 2rem;
}

.last_ec30 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.blue_f204 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.status-in-0744 {
  flex: 1;
}

.pro-b87e {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.pro-b87e a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.center-f98e {
  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;
}

.copper-8166 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.fixed_397c {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.fixed_397c span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.thumbnail_d161 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.thumbnail_d161 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.dark-85f7 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.dark-85f7 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.dark-85f7 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dark-85f7 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.content-f932 {
  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 === */
.primary-bottom-0f02 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.picture-over-a158 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.caption-2aad {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.slider-81a8 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.slider-81a8 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.slider-81a8 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.slider-81a8 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;
}

.slider-81a8 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.slider-81a8 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.slider_3d82 {
  padding: 3rem 0 5rem;
}

.form_6f39 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.form_6f39.disabled_4b77 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.tooltip-2228 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.widget_539a {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.tag-soft-6469 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.tag-soft-6469 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.action_ea60 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.easy_b62f {
  text-align: center;
}

.dropdown_43d7 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.under-d3ea {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.mini_33dc {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.frame_1ea1 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.pink_3db8 {
  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;
}

.pink_3db8 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.pink_3db8:hover {
  box-shadow: var(--shadow-lg);
}

.pink_3db8.primary_bronze_1c80 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.pink_3db8 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.pink_3db8 ul {
  margin: 1rem 0;
}

.pink_3db8 li {
  margin-bottom: 0.75rem;
}

.secondary-0517 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.content_e288 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.content_e288 a {
  font-weight: 600;
}

/* === Data Tables === */
.focus-32a2 {
  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;
}

.focus-32a2 table {
  width: 100%;
  min-width: 600px;
}

.focus-32a2 thead {
  background-color: var(--primary-color);
  color: white;
}

.focus-32a2 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.focus-32a2 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.focus-32a2 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.focus-32a2 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.soft-f461 {
  list-style: none;
  margin: 1.5rem 0;
}

.soft-f461 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.soft-f461 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.sidebar-hard-fb8b::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-55ef::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 === */
.card_paper_f2ba {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.down_4bf9 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.down_4bf9 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.down_4bf9 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.down_4bf9 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.card_paper_f2ba blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.pagination_easy_02da {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.pagination_easy_02da::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.pressed_e891 {
  position: relative;
  margin-bottom: 3rem;
}

.dropdown_213c {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.dropdown_213c .hero-f88f {
  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;
}

.block-east-0150 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.block-east-0150 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.block-east-0150 ul {
  margin: 1rem 0;
}

.block-east-0150 li {
  margin-bottom: 0.75rem;
}

.search_blue_e997 {
  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 === */
.upper-45f9 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.upper-45f9 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.green_c710 {
  list-style: none;
  margin: 1.5rem 0;
}

.green_c710 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.green_c710 a {
  font-weight: 600;
}

.shade-wide-1b99 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.notification_8ee4 {
  margin: 2.5rem 0;
}

.avatar-b40f {
  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;
}

.avatar-b40f:hover {
  box-shadow: var(--shadow-lg);
}

.avatar-b40f.background-e117 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.stale_fc22 {
  flex-shrink: 0;
}

.stale_fc22 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);
}

.tertiary_copper_3959 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.status_south_11c0,
.modal-9098,
.background_eea6 {
  width: 100%;
  margin: 1.5rem 0;
}

.form_iron_42e9 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.form_iron_42e9 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.hidden-copper-ac00 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.hidden-copper-ac00 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.title_f4f8 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.title_f4f8 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.smooth-e5dd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.lower_4106 {
  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;
}

.lower_4106:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.lower_4106.alert-liquid-44d3 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.lower_4106 .pressed-54f5 {
  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;
}

.lower_4106 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.red_e56e {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.border_6c9e {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.border_6c9e label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.title-bright-540f {
  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 === */
.gold-0ee4 {
  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;
}

.outline-rough-304a {
  background-color: var(--primary-color);
  color: white;
}

.outline-rough-304a:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.preview-557e {
  background-color: var(--text-secondary);
  color: white;
}

.preview-557e:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.button_4592 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.button_4592:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.backdrop_c961 {
  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;
}

.backdrop_c961:hover {
  background-color: var(--primary-dark);
}

.secondary_b6cc {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.chip-817c {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.accent-d543 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.label_4f56 {
  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 === */
.slider-fb55 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.photo-active-eefc {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.photo-active-eefc h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.shade-65c0 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.modal_hovered_9365 {
  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;
}

.primary-7273 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.notification_449f {
  list-style: none;
  counter-reset: rank-counter;
}

.notification_449f li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.notification_449f 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;
}

.east_7591 {
  list-style: none;
}

.east_7591 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.tertiary_dark_a604 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.frame_1537 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.frame_1537 .gas-481a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.frame_1537 .summary_3ce3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.filter_eccf {
  margin-top: 3rem;
}

.pagination-74b5 {
  width: 100%;
}

.status-aef7 {
  background-color: #fef3c7;
}

.modal_684d {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.box-right-4acb {
  margin: 3rem 0;
}

.up-8959 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.silver_b44b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.silver_b44b:hover {
  box-shadow: var(--shadow-lg);
}

.silver_b44b.disabled-dim-b77d {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.focus_cc0e {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.pattern_bf70 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.pattern_bf70 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.paragraph_complex_c45c {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.silver_b44b blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.box_warm_2b0d {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.sort_9acb {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.west-f6e2 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.dark_6d4e {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.backdrop-ed30 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.disabled_iron_fa13 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.down-05e4 {
  max-width: 900px;
  margin: 0 auto;
}

.hover_yellow_3372 {
  margin: 2rem 0;
}

.notice_09c8 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.notice_09c8 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.notice_09c8 summary::-webkit-details-marker {
  display: none;
}

.notice_09c8 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.plasma_13c1 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.notice_09c8[open] .plasma_13c1 {
  transform: rotate(45deg);
}

.north_174a {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.north_174a p:last-child {
  margin-bottom: 0;
}

.last-0093 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.easy-a7d9 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.up-1f64 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.up-1f64 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.up-1f64 .gold-0ee4 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.small-3c38 {
  max-width: 900px;
  margin: 0 auto;
}

.tag_09e4 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.info-e546 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.info-e546.fn-success-55ef {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.heading_iron_6433 {
  font-size: 3rem;
  line-height: 1;
}

.footer-stone-6330 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.container-left-70ec {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.fast-3723,
.easy-3800 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.fast-3723 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.easy-3800 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.row-282e,
.banner_upper_ab92 {
  margin: 1.5rem 0;
}

.row-282e li,
.banner_upper_ab92 li {
  margin-bottom: 1rem;
}

.table-edb2 {
  margin: 3rem 0;
}

.row-mini-f826 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.row-mini-f826 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.row-mini-f826 ol {
  margin: 1rem 0;
}

.row-mini-f826 li {
  margin-bottom: 0.75rem;
}

.complex-6918 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.iron-8110 {
  margin: 2rem 0;
}

.highlight-3a20 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.chip_lower_d3bc {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.tooltip-c954 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.input_dab2 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.feature-prev-ae5f {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.menu_2d5c {
  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;
}

.menu_2d5c img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.lower_aa29 {
  flex: 1;
}

.lower_aa29 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.fresh-9d7e {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.text-30df p {
  margin-bottom: 1rem;
}

.photo-bronze-7832 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.box_green_4d0f {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.table-stale-d96a {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.table-stale-d96a a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.simple_9d38 h3 {
  margin-bottom: 1.5rem;
}

.hero_dim_d6eb {
  display: grid;
  gap: 2rem;
}

.center-b994 {
  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;
}

.center-b994 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.center-b994 h4 {
  margin: 0 0 0.25rem;
}

.center-b994 p {
  margin: 0;
  font-size: 0.9375rem;
}

.component-832b {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.easy-dd2f {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.easy-dd2f h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.easy-dd2f ul {
  margin: 1.5rem 0;
}

.easy-dd2f li {
  margin-bottom: 0.75rem;
}

.out_0e63 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.pro_2e7d {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.under_522c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.banner-23b8 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.banner-23b8 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.block-basic-a356 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.block-basic-a356 a {
  color: rgba(255, 255, 255, 0.8);
}

.media-7c04 {
  list-style: none;
}

.media-7c04 li {
  margin-bottom: 0.75rem;
}

.media-7c04 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.media-7c04 a:hover {
  color: white;
}

.grid-44f6 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.chip_d2a7 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.element-8749 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.box-liquid-6e26 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.bronze-e83b {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .south_efbf {
    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;
  }

  .lite-a6a1 {
    font-size: 1.5rem !important;
  }

  .text-6a3c {
    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 */
  .pink_3db8,
  .fixed_5bf1,
  .block-east-0150,
  .tertiary_copper_3959,
  .focus_cc0e,
  .silver_b44b,
  .north_174a,
  .panel-7c4a,
  .heading-lower-8ae7,
  .tooltip-2228 {
    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 */
  .wood-c6fa {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .status-in-0744 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .blue_f204 {
    flex-shrink: 0;
  }

  .lower_aa29 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .pro-b87e,
  .copper-8166 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .copper-8166 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .iron_f5b9 {
    display: none;
  }

  /* Show mobile actions */
  .video_2daa {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .photo_white_0753 {
    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;
  }

  .photo_white_0753 svg {
    flex-shrink: 0;
  }

  .photo_white_0753 .article-upper-b52e {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .photo_white_0753 .frame_2de5 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .panel_45ea {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .table-1b5b {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .photo_white_0753:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .full_64ed {
    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;
  }

  .full_64ed.fn-active-55ef {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .full_64ed li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .full_64ed li:last-child {
    border-bottom: none;
  }

  .full_64ed a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .pressed-5e5f {
    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;
  }

  .pressed-5e5f li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .pressed-5e5f li:last-child {
    border-bottom: none;
  }

  .pressed-5e5f a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .shade-a762 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .overlay-ee48 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .brown_9df9,
  .badge-ce61 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .brown_9df9 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .badge-ce61 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .pressed-5e5f.fn-active-55ef {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hover_61c0 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .card_tiny_1726 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .silver-c304 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .paragraph_smooth_be1f {
    margin-top: 0;
  }

  /* Hero section */
  .paragraph_smooth_be1f {
    padding: 2rem 0 1.5rem;
  }

  .text-6a3c {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .heading-lower-8ae7 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .section-top-2c90 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .sort-52b5 {
    max-width: 100%;
    border-radius: 8px;
  }

  .dynamic_f882 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .static_5c36 {
    padding: 1rem;
  }

  .overlay-0590 {
    font-size: 1.5rem;
  }

  .main-b9ee {
    font-size: 0.75rem;
  }

  .panel-7c4a {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .tag-a106 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .tag-a106 .gold-0ee4 {
    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 */
  .caption-2aad {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .avatar-b40f {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .stale_fc22 {
    margin-bottom: 1rem;
  }

  /* Author */
  .last_ec30 {
    flex-direction: column;
  }

  .menu_2d5c {
    flex-direction: column;
  }

  /* Quotes */
  .focus_cc0e {
    flex-direction: column;
  }

  /* Pros/Cons */
  .container-left-70ec {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .input_dab2 {
    flex-direction: column;
  }

  .input_dab2 .gold-0ee4 {
    width: 100%;
  }

  /* Version comparison */
  .smooth-e5dd {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .slider-fb55 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .under_522c {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .element-8749 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .focus-32a2,
  .modal-9098,
  .badge_wood_1aad,
  .pagination-74b5,
  .status_south_11c0,
  .background_eea6 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .focus-32a2 table,
  .modal-9098 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .title-bright-540f {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .south_efbf {
    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;
  }

  .lite-a6a1 {
    font-size: 1.25rem !important;
  }

  .text-6a3c {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .card_tiny_1726 {
    position: fixed;
  }

  .silver-c304 {
    padding: 0.625rem 0;
  }

  .left_c8c3 img {
    height: 26px;
  }

  .pressed-5e5f {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .full_64ed {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .photo_white_0753 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .photo_white_0753 svg {
    width: 18px;
    height: 18px;
  }

  .photo_white_0753 .article-upper-b52e {
    font-size: 0.7rem;
  }

  .photo_white_0753 .frame_2de5 {
    font-size: 0.65rem;
  }

  .brown_9df9,
  .badge-ce61 {
    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, .south_efbf, .backdrop-wood-a999, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .section-top-2c90 {
    padding: 1rem;
  }

  .dynamic_f882 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .static_5c36 {
    padding: 0.875rem;
  }

  .overlay-0590 {
    font-size: 1.25rem;
  }

  .tag-a106 .gold-0ee4 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .text-6a3c {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .gold-0ee4 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .secondary_b6cc {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .avatar-b40f {
    padding: 1rem;
  }

  .stale_fc22 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .pink_3db8,
  .active-78e3,
  .highlight-small-5a35,
  .fixed_676a {
    padding: 1rem;
  }
}

@media print {
  .card_tiny_1726,
  .primary-bottom-0f02,
  .hover_61c0,
  .gold-0ee4,
  .pro_2e7d {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .south_efbf {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.steel-0de5 {
  margin-bottom: 3rem;
  text-align: center;
}

.lite-a6a1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.disabled_lite_a457 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.image-0714,
.sort_0a27 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.module-glass-7a65 {
  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;
}

.module-glass-7a65:hover {
  transform: translateY(-5px);
}

.module-glass-7a65 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.module-glass-7a65 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.old-3774 {
  margin: 3rem 0;
}

.last_845b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.focus-fresh-df5b {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.focus-fresh-df5b:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.up_e33a {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.input_fda6 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.shadow_pressed_b7a4 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.gradient_b4bf {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.carousel_da07 {
  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;
}

.carousel_da07:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.carousel_da07.pink-33f1 {
  border-left: 4px solid var(--primary-color);
}

.image_dd6c {
  flex-shrink: 0;
}

.image_dd6c svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.stone-d2ea {
  flex: 1;
}

.stone-d2ea h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.element-north-b248 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.image-small-59df,
.hover_8bcd,
.gold_f82a {
  margin-bottom: 1.5rem;
}

.image-small-59df h4,
.hover_8bcd h4,
.gold_f82a h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.image-small-59df ul,
.hover_8bcd ul,
.gold_f82a ul {
  list-style: none;
  padding: 0;
}

.image-small-59df li,
.hover_8bcd li,
.gold_f82a li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.image-small-59df li:before,
.hover_8bcd li:before,
.gold_f82a li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.medium-4c31 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.medium-4c31 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;
}

.medium-4c31 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.left_62d7 { margin: 2rem 0; }
.dirty_74a2 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.dirty_74a2 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.advanced_eea2 p { margin-bottom: 1rem; line-height: 1.7; }
.advanced_eea2 strong { color: var(--text-primary); }
.advanced_eea2 ul { list-style: none; padding-left: 0; }
.advanced_eea2 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.advanced_eea2 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.hard_d2b2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.footer-c91d { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.footer-c91d:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.filter-fresh-7a66 { font-size: 3rem; margin-bottom: 1rem; }
.footer-c91d h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.footer-c91d p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.fast_ff60 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.fast_ff60 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.text_stone_5a69 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.text-630e { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.gradient_in_e0df { text-align: center; }
.input-lite-f620 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.background_06d1 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.label_7553 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.warm_5b69 { margin: 2rem 0; }
.footer_lower_462a { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.footer_lower_462a h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.footer_lower_462a p, .footer_lower_462a ul { line-height: 1.7; }
.footer_lower_462a ul { list-style: none; padding-left: 0; }
.footer_lower_462a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.footer_lower_462a ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.slow_b438 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.table_cool_9e1f { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.feature-611a { text-align: center; }
.feature_left_91d9 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.module-hot-7a44 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.container_wide_1084 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.slider-87ea { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.notification-ace1 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.notification-ace1:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.notification-ace1 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.notification-ace1 p, .notification-ace1 ul { line-height: 1.7; }
.notification-ace1 ul { list-style: none; padding-left: 0; }
.notification-ace1 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.notification-ace1 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 1e56 */
.phantom-card-t5 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.2;
}
