/* ============================================
   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 */
.breadcrumb-4c50 p,
.block-large-9528,
.border-hovered-06b9,
.pagination-7c5b,
.avatar_hot_8ca2,
.hard-f374,
.full-cc3c,
.shadow_0736 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.feature_dynamic_c630 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.feature_dynamic_c630 > *,
.title-small-e2a8,
.breadcrumb-4c50,
.status_next_4996 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .feature_dynamic_c630 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .feature_dynamic_c630 {
    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 === */
.white-25a5 {
  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 */
.white-25a5.wood_ad9a {
  box-shadow: var(--shadow-md);
}

.steel_36aa {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.prev_79eb img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.summary_f15f {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.element-motion-f103 {
  display: none;
}

/* Hide mobile actions on desktop */
.photo_ef52 {
  display: none;
}

.mask-7ab3 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.mask-7ab3 a:hover,
.mask-7ab3 a.fn-active-0cee {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.purple_4a54 {
  margin-left: 1rem;
}

.message-new-107a {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.preview-middle-64a6,
.component_54c7 {
  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;
}

.preview-middle-64a6 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.preview-middle-64a6: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;
}

.component_54c7 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.component_54c7: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;
}

.preview-middle-64a6 svg,
.component_54c7 svg {
  flex-shrink: 0;
}

.hero_e282 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.filter-fresh-a6b3 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.filter-fresh-a6b3::before,
.filter-fresh-a6b3::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.filter-fresh-a6b3::before {
  top: -7px;
}

.filter-fresh-a6b3::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.red_d12b {
  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 === */
.up-7564 {
  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);
}

.tabs-742f {
  margin: 0 0 2rem;
  text-align: center;
}

.description-outer-ebbc {
  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;
}

.description-outer-ebbc:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.clean-a424 {
  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);
}

.clean-a424 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.hard_6378 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.aside_45df {
  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;
}

.aside_45df:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.container-pro-4265 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stale-ed73 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.upper_fb60 {
  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);
}

.upper_fb60 .thick_ab5b {
  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;
}

.upper_fb60 .thick_ab5b svg {
  flex-shrink: 0;
}

.upper_fb60 .video_plasma_a0c5 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.upper_fb60 .video_plasma_a0c5: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);
}

.upper_fb60 .hero-huge-236b {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.upper_fb60 .hero-huge-236b: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) {
  .up-7564 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .description-outer-ebbc {
    max-width: 100%;
  }

  .hard_6378 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .aside_45df {
    padding: 1rem;
  }

  .container-pro-4265 {
    font-size: 1.5rem;
  }

  .stale-ed73 {
    font-size: 0.75rem;
  }

  .clean-a424 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .upper_fb60 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .upper_fb60 .thick_ab5b {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hard_6378 {
    grid-template-columns: 1fr;
  }
}

.grid_313e {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.motion-df0c {
  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 === */
.link-south-7208 {
  margin-bottom: 2.5rem;
}

.banner-warm-817a {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.grid_313e {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.form-4c1e {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.selected-93b8 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.row-3032 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.glass_fad5 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.brown-5dc4 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.title_7c6e {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.button_d4e6 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.button_d4e6 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.narrow-52e5 {
  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);
}

.basic-f12b {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.container-ed41 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.left-e0c1 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.hard_58f5 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.fluid-31e4 {
  display: grid;
  gap: 1rem;
}

.accordion_a74a {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.stone-dc14 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.notice_9375 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.notification-wide-5f10 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.paragraph-light-2cc7 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.pattern_active_eaa5 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.pattern_active_eaa5 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.block-large-9528 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.motion-c40a {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.lite_2715 {
  display: grid;
  gap: 2rem;
}

.highlight-557f {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.selected-93b8 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.form-4c1e {
  flex: 1;
}

.glass_fad5 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.glass_fad5 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.banner-right-7d38 {
  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;
}

.brown-5dc4 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.thumbnail_center_4244 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.thumbnail_center_4244 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.wrapper-simple-5d2a {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.wrapper-simple-5d2a a {
  font-size: 0.875rem;
  font-weight: 500;
}

.soft-3582 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.soft-3582 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.soft-3582 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.soft-3582 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.menu_tiny_0089 {
  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 === */
.button-hovered-5266 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.module_1ce3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.secondary_91ed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.shadow_motion_8a47 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.shadow_motion_8a47 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.shadow_motion_8a47 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.shadow_motion_8a47 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;
}

.shadow_motion_8a47 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.shadow_motion_8a47 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.breadcrumb-4c50 {
  padding: 3rem 0 5rem;
}

.status_next_4996 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.status_next_4996.pink_85bb {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.border-hovered-06b9 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.green_f461 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.panel_blue_269e {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.panel_blue_269e h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.active-new-ece5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.sidebar_light_3aa2 {
  text-align: center;
}

.left-114a {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.active_stale_f1fe {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.focus-c103 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.hard-f374 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.pagination-7c5b {
  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;
}

.pagination-7c5b * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.pagination-7c5b:hover {
  box-shadow: var(--shadow-lg);
}

.pagination-7c5b.down_179d {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.pagination-7c5b h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.pagination-7c5b ul {
  margin: 1rem 0;
}

.pagination-7c5b li {
  margin-bottom: 0.75rem;
}

.disabled-7bf9 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.accordion-a6f8 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.accordion-a6f8 a {
  font-weight: 600;
}

/* === Data Tables === */
.right_0da9 {
  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;
}

.right_0da9 table {
  width: 100%;
  min-width: 600px;
}

.right_0da9 thead {
  background-color: var(--primary-color);
  color: white;
}

.right_0da9 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.right_0da9 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.right_0da9 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.right_0da9 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.pink-6c9f {
  list-style: none;
  margin: 1.5rem 0;
}

.pink-6c9f li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.pink-6c9f li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.lower-8547::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-0cee::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 === */
.element-74e8 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.border_upper_cf0f {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.border_upper_cf0f img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.border_upper_cf0f strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.border_upper_cf0f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.element-74e8 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.full-cc3c {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.full-cc3c::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.steel-6dc0 {
  position: relative;
  margin-bottom: 3rem;
}

.summary-b1ba {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.summary-b1ba .heading_advanced_84f6 {
  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;
}

.caption_liquid_a057 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.caption_liquid_a057 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.caption_liquid_a057 ul {
  margin: 1rem 0;
}

.caption_liquid_a057 li {
  margin-bottom: 0.75rem;
}

.layout_light_4a67 {
  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 === */
.short_b010 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.short_b010 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.tiny-e02e {
  list-style: none;
  margin: 1.5rem 0;
}

.tiny-e02e li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.tiny-e02e a {
  font-weight: 600;
}

.component_84cf {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.shadow_0736 {
  margin: 2.5rem 0;
}

.silver_8c0f {
  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;
}

.silver_8c0f:hover {
  box-shadow: var(--shadow-lg);
}

.silver_8c0f.selected_c016 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.chip_73c4 {
  flex-shrink: 0;
}

.chip_73c4 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);
}

.preview-fd3d h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.yellow_a747,
.section_953f,
.huge_351c {
  width: 100%;
  margin: 1.5rem 0;
}

.active-fcbb {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.active-fcbb strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.up_3ae6 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.up_3ae6 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.module_short_4087 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.module_short_4087 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.layout_c279 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.feature_iron_fa09 {
  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;
}

.feature_iron_fa09:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.feature_iron_fa09.active_6477 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.feature_iron_fa09 .gradient-middle-d749 {
  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;
}

.feature_iron_fa09 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.popup_9682 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.white_d0a5 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.white_d0a5 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.container_f26c {
  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 === */
.thick_ab5b {
  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;
}

.video_plasma_a0c5 {
  background-color: var(--primary-color);
  color: white;
}

.video_plasma_a0c5:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.hero-huge-236b {
  background-color: var(--text-secondary);
  color: white;
}

.hero-huge-236b:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.slider-6629 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.slider-6629:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.picture_liquid_219b {
  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;
}

.picture_liquid_219b:hover {
  background-color: var(--primary-dark);
}

.steel-69ec {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.border-8289 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.card_lower_f54c {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.table-c4a5 {
  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 === */
.full_7c24 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.detail-right-7637 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.detail-right-7637 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.hard_293f {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.tabs_b8f7 {
  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;
}

.dim-2b24 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.carousel-257f {
  list-style: none;
  counter-reset: rank-counter;
}

.carousel-257f li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.carousel-257f 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;
}

.yellow-b7f3 {
  list-style: none;
}

.yellow-b7f3 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.aside_tall_f8f2 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.nav-red-49ac {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.nav-red-49ac .north_09bc {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.nav-red-49ac .text_ca79 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.action-78e7 {
  margin-top: 3rem;
}

.summary-8a1d {
  width: 100%;
}

.backdrop_fe92 {
  background-color: #fef3c7;
}

.under_2b84 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.hidden_prev_0027 {
  margin: 3rem 0;
}

.media_83e5 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.backdrop-ad9e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.backdrop-ad9e:hover {
  box-shadow: var(--shadow-lg);
}

.backdrop-ad9e.tabs-028c {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.description_9093 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.module-motion-0933 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.module-motion-0933 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.row-5e50 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.backdrop-ad9e blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.input_pro_25ca {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.gallery-short-4182 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.active_665d {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.medium-a6d5 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.filter_4c72 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.accordion-d9d8 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.label-2abf {
  max-width: 900px;
  margin: 0 auto;
}

.in-7964 {
  margin: 2rem 0;
}

.hot_8571 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.hot_8571 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.hot_8571 summary::-webkit-details-marker {
  display: none;
}

.hot_8571 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.overlay_9e37 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.hot_8571[open] .overlay_9e37 {
  transform: rotate(45deg);
}

.logo_fluid_7679 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.logo_fluid_7679 p:last-child {
  margin-bottom: 0;
}

.sort-lower-e053 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.stale-a3b6 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.image-out-e456 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.image-out-e456 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.image-out-e456 .thick_ab5b {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.plasma-d0dc {
  max-width: 900px;
  margin: 0 auto;
}

.shadow_fast_6174 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.wrapper-top-6f80 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.wrapper-top-6f80.fn-success-0cee {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.notice-ec30 {
  font-size: 3rem;
  line-height: 1;
}

.wrapper-848a h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.list_fe14 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.picture_b93f,
.pattern-fluid-166a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.picture_b93f h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.pattern-fluid-166a h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.cool_e8c5,
.photo-ce7e {
  margin: 1.5rem 0;
}

.cool_e8c5 li,
.photo-ce7e li {
  margin-bottom: 1rem;
}

.tertiary-simple-48bb {
  margin: 3rem 0;
}

.grid-0059 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.grid-0059 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.grid-0059 ol {
  margin: 1rem 0;
}

.grid-0059 li {
  margin-bottom: 0.75rem;
}

.orange_a3c3 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.narrow-72c7 {
  margin: 2rem 0;
}

.item_9408 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.shadow-8b5c {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.focus_dark_2178 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.breadcrumb-soft-aa3b {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.green-5bff {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.breadcrumb_action_e5f8 {
  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;
}

.breadcrumb_action_e5f8 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.row-3032 {
  flex: 1;
}

.row-3032 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.yellow_e346 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.picture-a984 p {
  margin-bottom: 1rem;
}

.silver_6a34 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.summary_complex_585b {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.active_hot_9dbd {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.active_hot_9dbd a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.pink_46ef h3 {
  margin-bottom: 1.5rem;
}

.focus_1748 {
  display: grid;
  gap: 2rem;
}

.paragraph_white_9f66 {
  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;
}

.paragraph_white_9f66 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.paragraph_white_9f66 h4 {
  margin: 0 0 0.25rem;
}

.paragraph_white_9f66 p {
  margin: 0;
  font-size: 0.9375rem;
}

.accordion-east-71b0 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.card-fa77 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.card-fa77 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.card-fa77 ul {
  margin: 1.5rem 0;
}

.card-fa77 li {
  margin-bottom: 0.75rem;
}

.slider-db01 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.notice_fa3c {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.section_a4c9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.breadcrumb-7d02 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.breadcrumb-7d02 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.feature_f9c4 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.feature_f9c4 a {
  color: rgba(255, 255, 255, 0.8);
}

.next_5fb5 {
  list-style: none;
}

.next_5fb5 li {
  margin-bottom: 0.75rem;
}

.next_5fb5 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.next_5fb5 a:hover {
  color: white;
}

.carousel-active-6ee1 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.surface-1b91 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.down-4ec8 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.title-top-64d3 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.overlay-fe6e {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .feature_dynamic_c630 {
    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;
  }

  .notice_2771 {
    font-size: 1.5rem !important;
  }

  .banner-warm-817a {
    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 */
  .pagination-7c5b,
  .avatar_hot_8ca2,
  .caption_liquid_a057,
  .preview-fd3d,
  .description_9093,
  .backdrop-ad9e,
  .logo_fluid_7679,
  .clean-a424,
  .block-large-9528,
  .border-hovered-06b9 {
    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 */
  .grid_313e {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .form-4c1e {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .selected-93b8 {
    flex-shrink: 0;
  }

  .row-3032 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .glass_fad5,
  .brown-5dc4 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .brown-5dc4 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .summary_f15f {
    display: none;
  }

  /* Show mobile actions */
  .photo_ef52 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .heading-14d3 {
    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;
  }

  .heading-14d3 svg {
    flex-shrink: 0;
  }

  .heading-14d3 .brown_296a {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .heading-14d3 .image-left-466e {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .item-b761 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .last-5b10 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .heading-14d3:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .element-motion-f103 {
    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;
  }

  .element-motion-f103.fn-active-0cee {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .element-motion-f103 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .element-motion-f103 li:last-child {
    border-bottom: none;
  }

  .element-motion-f103 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .mask-7ab3 {
    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;
  }

  .mask-7ab3 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .mask-7ab3 li:last-child {
    border-bottom: none;
  }

  .mask-7ab3 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .purple_4a54 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .message-new-107a {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .preview-middle-64a6,
  .component_54c7 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .preview-middle-64a6 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .component_54c7 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .mask-7ab3.fn-active-0cee {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hero_e282 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .white-25a5 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .steel_36aa {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .red_d12b {
    margin-top: 0;
  }

  /* Hero section */
  .red_d12b {
    padding: 2rem 0 1.5rem;
  }

  .banner-warm-817a {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .block-large-9528 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .up-7564 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .description-outer-ebbc {
    max-width: 100%;
    border-radius: 8px;
  }

  .hard_6378 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .aside_45df {
    padding: 1rem;
  }

  .container-pro-4265 {
    font-size: 1.5rem;
  }

  .stale-ed73 {
    font-size: 0.75rem;
  }

  .clean-a424 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .upper_fb60 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .upper_fb60 .thick_ab5b {
    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 */
  .secondary_91ed {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .silver_8c0f {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .chip_73c4 {
    margin-bottom: 1rem;
  }

  /* Author */
  .highlight-557f {
    flex-direction: column;
  }

  .breadcrumb_action_e5f8 {
    flex-direction: column;
  }

  /* Quotes */
  .description_9093 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .list_fe14 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .breadcrumb-soft-aa3b {
    flex-direction: column;
  }

  .breadcrumb-soft-aa3b .thick_ab5b {
    width: 100%;
  }

  /* Version comparison */
  .layout_c279 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .full_7c24 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .section_a4c9 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .down-4ec8 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .right_0da9,
  .section_953f,
  .feature_d139,
  .summary-8a1d,
  .yellow_a747,
  .huge_351c {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .right_0da9 table,
  .section_953f table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .container_f26c {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .feature_dynamic_c630 {
    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;
  }

  .notice_2771 {
    font-size: 1.25rem !important;
  }

  .banner-warm-817a {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .white-25a5 {
    position: fixed;
  }

  .steel_36aa {
    padding: 0.625rem 0;
  }

  .prev_79eb img {
    height: 26px;
  }

  .mask-7ab3 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .element-motion-f103 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .heading-14d3 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .heading-14d3 svg {
    width: 18px;
    height: 18px;
  }

  .heading-14d3 .brown_296a {
    font-size: 0.7rem;
  }

  .heading-14d3 .image-left-466e {
    font-size: 0.65rem;
  }

  .preview-middle-64a6,
  .component_54c7 {
    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, .feature_dynamic_c630, .title-small-e2a8, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .up-7564 {
    padding: 1rem;
  }

  .hard_6378 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .aside_45df {
    padding: 0.875rem;
  }

  .container-pro-4265 {
    font-size: 1.25rem;
  }

  .upper_fb60 .thick_ab5b {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .banner-warm-817a {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .thick_ab5b {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .steel-69ec {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .silver_8c0f {
    padding: 1rem;
  }

  .chip_73c4 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .pagination-7c5b,
  .section_complex_83e6,
  .dim_1fc1,
  .summary-3060 {
    padding: 1rem;
  }
}

@media print {
  .white-25a5,
  .button-hovered-5266,
  .hero_e282,
  .thick_ab5b,
  .notice_fa3c {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .feature_dynamic_c630 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.message-3918 {
  margin-bottom: 3rem;
  text-align: center;
}

.notice_2771 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.media-black-d79b {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.main-top-a687,
.status_motion_b70f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.panel_8258 {
  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;
}

.panel_8258:hover {
  transform: translateY(-5px);
}

.panel_8258 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.panel_8258 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.slider_short_2f3a {
  margin: 3rem 0;
}

.paper-f875 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.surface_cool_5f97 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.surface_cool_5f97:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.footer-hovered-00c8 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.content_778f {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.small_6f1f {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.media_gold_a9c7 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.dropdown_copper_3d5b {
  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;
}

.dropdown_copper_3d5b:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.dropdown_copper_3d5b.black-003f {
  border-left: 4px solid var(--primary-color);
}

.focus-paper-bf79 {
  flex-shrink: 0;
}

.focus-paper-bf79 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.next-565e {
  flex: 1;
}

.next-565e h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.sidebar_mini_401b {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.border_ed79,
.slider_92a5,
.summary-rough-df9b {
  margin-bottom: 1.5rem;
}

.border_ed79 h4,
.slider_92a5 h4,
.summary-rough-df9b h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.border_ed79 ul,
.slider_92a5 ul,
.summary-rough-df9b ul {
  list-style: none;
  padding: 0;
}

.border_ed79 li,
.slider_92a5 li,
.summary-rough-df9b li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.border_ed79 li:before,
.slider_92a5 li:before,
.summary-rough-df9b li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.hidden_1b16 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hidden_1b16 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;
}

.hidden_1b16 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.dropdown-3692 { margin: 2rem 0; }
.accordion_left_55b1 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.accordion_left_55b1 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.border_narrow_8c42 p { margin-bottom: 1rem; line-height: 1.7; }
.border_narrow_8c42 strong { color: var(--text-primary); }
.border_narrow_8c42 ul { list-style: none; padding-left: 0; }
.border_narrow_8c42 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.border_narrow_8c42 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.slider_dim_fd1e { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.filter-south-1d5d { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.filter-south-1d5d:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.icon-d194 { font-size: 3rem; margin-bottom: 1rem; }
.filter-south-1d5d h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.filter-south-1d5d p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.background_hovered_a374 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.background_hovered_a374 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.huge-e34e { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.badge-220e { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.section_east_d78d { text-align: center; }
.thumbnail-stale-2c7d { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.east_be6a { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.panel-over-8920 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.gradient-601f { margin: 2rem 0; }
.small_8e63 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.small_8e63 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.small_8e63 p, .small_8e63 ul { line-height: 1.7; }
.small_8e63 ul { list-style: none; padding-left: 0; }
.small_8e63 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.small_8e63 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.short-631d { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.new-64f6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.primary_selected_6ada { text-align: center; }
.basic-5237 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.hover-9a20 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.lite-c430 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.header_prev_ea39 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.hot-1d21 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.hot-1d21:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.hot-1d21 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.hot-1d21 p, .hot-1d21 ul { line-height: 1.7; }
.hot-1d21 ul { list-style: none; padding-left: 0; }
.hot-1d21 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.hot-1d21 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: bd1d */
.shadow-element-z9 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.2;
}
