/* ============================================
   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 */
.main-motion-53be p,
.sidebar_last_8dea,
.under_5fa4,
.background_856c,
.popup_1acd,
.menu_c668,
.gallery_47e2,
.hero-complex-e154 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.aside-2057 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.aside-2057 > *,
.blue-be26,
.main-motion-53be,
.panel-silver-6b7c {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .aside-2057 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .aside-2057 {
    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 === */
.gas-39a0 {
  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 */
.gas-39a0.outer-4157 {
  box-shadow: var(--shadow-md);
}

.south-bf79 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.hovered_74d6 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.mini-afc7 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.sort_orange_25de {
  display: none;
}

/* Hide mobile actions on desktop */
.status-13a3 {
  display: none;
}

.chip-purple-46c0 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.chip-purple-46c0 a:hover,
.chip-purple-46c0 a.fn-active-624a {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.feature-dec0 {
  margin-left: 1rem;
}

.detail_8dc9 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.shade_gold_2f41,
.current-1880 {
  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;
}

.shade_gold_2f41 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.shade_gold_2f41: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;
}

.current-1880 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.current-1880: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;
}

.shade_gold_2f41 svg,
.current-1880 svg {
  flex-shrink: 0;
}

.summary_up_6db2 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.rough-cfc2 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.rough-cfc2::before,
.rough-cfc2::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.rough-cfc2::before {
  top: -7px;
}

.rough-cfc2::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.active-6375 {
  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 === */
.dirty_505a {
  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);
}

.focus-075a {
  margin: 0 0 2rem;
  text-align: center;
}

.background_bright_51a5 {
  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;
}

.background_bright_51a5:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.label_b8ef {
  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);
}

.label_b8ef strong {
  color: var(--primary-color);
  font-weight: 700;
}

.fast-99c4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.tabs_yellow_d586 {
  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;
}

.tabs_yellow_d586:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.plasma-dc21 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.layout_fast_47f2 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.shade_silver_7d83 {
  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);
}

.shade_silver_7d83 .glass_a065 {
  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;
}

.shade_silver_7d83 .glass_a065 svg {
  flex-shrink: 0;
}

.shade_silver_7d83 .large_c9d1 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.shade_silver_7d83 .large_c9d1: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);
}

.shade_silver_7d83 .summary_dark_f177 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.shade_silver_7d83 .summary_dark_f177: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) {
  .dirty_505a {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .background_bright_51a5 {
    max-width: 100%;
  }

  .fast-99c4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .tabs_yellow_d586 {
    padding: 1rem;
  }

  .plasma-dc21 {
    font-size: 1.5rem;
  }

  .layout_fast_47f2 {
    font-size: 0.75rem;
  }

  .label_b8ef {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .shade_silver_7d83 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .shade_silver_7d83 .glass_a065 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .fast-99c4 {
    grid-template-columns: 1fr;
  }
}

.sort_lower_657f {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.next_be3f {
  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 === */
.sidebar-right-5c76 {
  margin-bottom: 2.5rem;
}

.under_e3e0 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.sort_lower_657f {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.mini_f948 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tiny_c0c2 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.column_inner_cfca {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.content_under_9a6d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.progress-9f3c {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.badge_pro_0fb8 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.photo_purple_d971 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.photo_purple_d971 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.breadcrumb_7499 {
  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);
}

.list_thick_0116 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.card-static-fdd9 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hidden_a265 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.texture-984e {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.menu_huge_f0a5 {
  display: grid;
  gap: 1rem;
}

.frame-738f {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.fixed-c5d0 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.nav-plasma-5d7b {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.east_dd45 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.gallery_5a55 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.fast-a278 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.fast-a278 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.sidebar_last_8dea {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.new_23e0 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.container_east_98b1 {
  display: grid;
  gap: 2rem;
}

.stone_8852 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.tiny_c0c2 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.mini_f948 {
  flex: 1;
}

.content_under_9a6d {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.content_under_9a6d a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.accent_6333 {
  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;
}

.progress-9f3c {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.mask_d584 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.mask_d584 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.backdrop-f7ad {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.backdrop-f7ad a {
  font-size: 0.875rem;
  font-weight: 500;
}

.input_south_3026 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.input_south_3026 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.input_south_3026 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input_south_3026 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.summary-10f4 {
  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 === */
.modal-purple-d52a {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.wrapper-tall-eed7 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.avatar_dynamic_5311 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.hot-e27a h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.hot-e27a ol {
  list-style: none;
  counter-reset: toc-counter;
}

.hot-e27a ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.hot-e27a 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;
}

.hot-e27a ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.hot-e27a ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.main-motion-53be {
  padding: 3rem 0 5rem;
}

.panel-silver-6b7c {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.panel-silver-6b7c.medium-b6a8 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.under_5fa4 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.search-rough-f7e9 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.right_67a4 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.right_67a4 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.logo_mini_fe82 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.banner-2189 {
  text-align: center;
}

.glass-b84c {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.widget_5bc6 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.tertiary_87e6 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.menu_c668 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.background_856c {
  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;
}

.background_856c * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.background_856c:hover {
  box-shadow: var(--shadow-lg);
}

.background_856c.narrow_8e53 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.background_856c h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.background_856c ul {
  margin: 1rem 0;
}

.background_856c li {
  margin-bottom: 0.75rem;
}

.under_ec4e {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.wide-d157 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.wide-d157 a {
  font-weight: 600;
}

/* === Data Tables === */
.medium-8c74 {
  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;
}

.medium-8c74 table {
  width: 100%;
  min-width: 600px;
}

.medium-8c74 thead {
  background-color: var(--primary-color);
  color: white;
}

.medium-8c74 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.medium-8c74 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.medium-8c74 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.medium-8c74 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.thumbnail_c7a4 {
  list-style: none;
  margin: 1.5rem 0;
}

.thumbnail_c7a4 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.thumbnail_c7a4 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.fixed-d924::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-624a::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 === */
.surface_current_1027 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.stale_9403 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.stale_9403 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.stale_9403 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.stale_9403 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.surface_current_1027 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.gallery_47e2 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.gallery_47e2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.rough_bc5e {
  position: relative;
  margin-bottom: 3rem;
}

.caption-bright-c202 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.caption-bright-c202 .caption_large_5806 {
  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;
}

.image-fd51 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.image-fd51 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.image-fd51 ul {
  margin: 1rem 0;
}

.image-fd51 li {
  margin-bottom: 0.75rem;
}

.section_86e9 {
  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 === */
.west_9c85 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.west_9c85 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.content_center_a271 {
  list-style: none;
  margin: 1.5rem 0;
}

.content_center_a271 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.content_center_a271 a {
  font-weight: 600;
}

.fluid-7109 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.hero-complex-e154 {
  margin: 2.5rem 0;
}

.bright_5a90 {
  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;
}

.bright_5a90:hover {
  box-shadow: var(--shadow-lg);
}

.bright_5a90.picture_plasma_04da {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.gradient-old-2d6c {
  flex-shrink: 0;
}

.gradient-old-2d6c 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);
}

.backdrop-south-dd2d h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.list_fdab,
.full-bf16,
.grid_top_4578 {
  width: 100%;
  margin: 1.5rem 0;
}

.slider-41d3 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.slider-41d3 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.module_hard_c264 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.module_hard_c264 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.slider_tall_768a {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.slider_tall_768a strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.west_bdd5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.upper-b155 {
  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;
}

.upper-b155:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.upper-b155.main_smooth_84bf {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.upper-b155 .pink-8d93 {
  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;
}

.upper-b155 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.summary-2d00 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.easy-16d8 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.easy-16d8 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.thumbnail_0924 {
  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 === */
.glass_a065 {
  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;
}

.large_c9d1 {
  background-color: var(--primary-color);
  color: white;
}

.large_c9d1:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.summary_dark_f177 {
  background-color: var(--text-secondary);
  color: white;
}

.summary_dark_f177:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.tertiary_easy_dc78 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.tertiary_easy_dc78:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.sidebar-first-8e92 {
  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;
}

.sidebar-first-8e92:hover {
  background-color: var(--primary-dark);
}

.tabs-prev-8b87 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.panel-36ed {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.avatar_e483 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.main-pro-f057 {
  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 === */
.outline_focused_864c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.dynamic-63cd {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.dynamic-63cd h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.bright_31bd {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.disabled_4c21 {
  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;
}

.label-9008 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.slow_13d9 {
  list-style: none;
  counter-reset: rank-counter;
}

.slow_13d9 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.slow_13d9 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;
}

.aside_831d {
  list-style: none;
}

.aside_831d li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.bottom-627e {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.paragraph_last_c65f {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.paragraph_last_c65f .card_7b70 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.paragraph_last_c65f .box_d641 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.lite_043f {
  margin-top: 3rem;
}

.disabled_d563 {
  width: 100%;
}

.background_green_ce5b {
  background-color: #fef3c7;
}

.fixed_8cb2 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.input-a236 {
  margin: 3rem 0;
}

.button-38b7 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.layout_fb30 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.layout_fb30:hover {
  box-shadow: var(--shadow-lg);
}

.layout_fb30.message-lower-7f74 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.icon_pro_c2e7 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.tag_huge_fef8 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.tag_huge_fef8 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.column_last_b530 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.layout_fb30 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.hard-6bc7 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.table_plasma_a93f {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.primary_hot_65a4 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.breadcrumb-clean-b832 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.label_3fa2 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.down-0799 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.tertiary-72b4 {
  max-width: 900px;
  margin: 0 auto;
}

.secondary-0148 {
  margin: 2rem 0;
}

.notification-stale-31f7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.notification-stale-31f7 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.notification-stale-31f7 summary::-webkit-details-marker {
  display: none;
}

.notification-stale-31f7 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.button_fast_a98c {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.notification-stale-31f7[open] .button_fast_a98c {
  transform: rotate(45deg);
}

.shadow_04b4 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.shadow_04b4 p:last-child {
  margin-bottom: 0;
}

.carousel-dca3 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.chip_new_a38b {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.shade-next-662d {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.shade-next-662d p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.shade-next-662d .glass_a065 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.hover_solid_7212 {
  max-width: 900px;
  margin: 0 auto;
}

.sort_f5e7 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.simple-5c8d {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.simple-5c8d.fn-success-624a {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.picture_0de4 {
  font-size: 3rem;
  line-height: 1;
}

.paragraph_58a2 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.alert-dark-4bcc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.paragraph_paper_722d,
.icon-b848 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.paragraph_paper_722d h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.icon-b848 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.video-4c32,
.card_steel_8f6f {
  margin: 1.5rem 0;
}

.video-4c32 li,
.card_steel_8f6f li {
  margin-bottom: 1rem;
}

.disabled_dirty_236f {
  margin: 3rem 0;
}

.tag_glass_a994 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.tag_glass_a994 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.tag_glass_a994 ol {
  margin: 1rem 0;
}

.tag_glass_a994 li {
  margin-bottom: 0.75rem;
}

.sidebar_5bbb {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.grid-liquid-563a {
  margin: 2rem 0;
}

.aside-1789 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.video_21e0 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.background_9ce5 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.logo-white-03ba {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.south_054e {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.content_old_8e3f {
  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;
}

.content_old_8e3f img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.column_inner_cfca {
  flex: 1;
}

.column_inner_cfca h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.secondary-8a21 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.item-blue-e1af p {
  margin-bottom: 1rem;
}

.preview-orange-a8a9 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.title-east-8a94 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.row-hard-8a5b {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.row-hard-8a5b a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.link_thick_22d7 h3 {
  margin-bottom: 1.5rem;
}

.basic-bc64 {
  display: grid;
  gap: 2rem;
}

.panel_first_57e5 {
  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;
}

.panel_first_57e5 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.panel_first_57e5 h4 {
  margin: 0 0 0.25rem;
}

.panel_first_57e5 p {
  margin: 0;
  font-size: 0.9375rem;
}

.slow_0449 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.mini_9d03 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.mini_9d03 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.mini_9d03 ul {
  margin: 1.5rem 0;
}

.mini_9d03 li {
  margin-bottom: 0.75rem;
}

.video_8393 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.texture-thick-323e {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.disabled_d7d2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.pattern_1044 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.pattern_1044 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.cool-4dbb {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.cool-4dbb a {
  color: rgba(255, 255, 255, 0.8);
}

.thumbnail_5adf {
  list-style: none;
}

.thumbnail_5adf li {
  margin-bottom: 0.75rem;
}

.thumbnail_5adf a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.thumbnail_5adf a:hover {
  color: white;
}

.shade-f4a5 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.east-5fe0 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.hovered-437b {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.notification_0103 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.warm_dc56 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .aside-2057 {
    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;
  }

  .filter-df34 {
    font-size: 1.5rem !important;
  }

  .under_e3e0 {
    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 */
  .background_856c,
  .popup_1acd,
  .image-fd51,
  .backdrop-south-dd2d,
  .icon_pro_c2e7,
  .layout_fb30,
  .shadow_04b4,
  .label_b8ef,
  .sidebar_last_8dea,
  .under_5fa4 {
    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 */
  .sort_lower_657f {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .mini_f948 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .tiny_c0c2 {
    flex-shrink: 0;
  }

  .column_inner_cfca {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .content_under_9a6d,
  .progress-9f3c {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .progress-9f3c {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .mini-afc7 {
    display: none;
  }

  /* Show mobile actions */
  .status-13a3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .north_2700 {
    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;
  }

  .north_2700 svg {
    flex-shrink: 0;
  }

  .north_2700 .link_5a8b {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .north_2700 .detail-hovered-a64c {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .progress_slow_76fd {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .feature_296a {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .north_2700:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .sort_orange_25de {
    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;
  }

  .sort_orange_25de.fn-active-624a {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .sort_orange_25de li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .sort_orange_25de li:last-child {
    border-bottom: none;
  }

  .sort_orange_25de a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .chip-purple-46c0 {
    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;
  }

  .chip-purple-46c0 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .chip-purple-46c0 li:last-child {
    border-bottom: none;
  }

  .chip-purple-46c0 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .feature-dec0 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .detail_8dc9 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .shade_gold_2f41,
  .current-1880 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .shade_gold_2f41 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .current-1880 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .chip-purple-46c0.fn-active-624a {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .summary_up_6db2 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .gas-39a0 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .south-bf79 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .active-6375 {
    margin-top: 0;
  }

  /* Hero section */
  .active-6375 {
    padding: 2rem 0 1.5rem;
  }

  .under_e3e0 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .sidebar_last_8dea {
    font-size: 1rem;
  }

  /* Hero brand image */
  .dirty_505a {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .background_bright_51a5 {
    max-width: 100%;
    border-radius: 8px;
  }

  .fast-99c4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .tabs_yellow_d586 {
    padding: 1rem;
  }

  .plasma-dc21 {
    font-size: 1.5rem;
  }

  .layout_fast_47f2 {
    font-size: 0.75rem;
  }

  .label_b8ef {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .shade_silver_7d83 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .shade_silver_7d83 .glass_a065 {
    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 */
  .avatar_dynamic_5311 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .bright_5a90 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .gradient-old-2d6c {
    margin-bottom: 1rem;
  }

  /* Author */
  .stone_8852 {
    flex-direction: column;
  }

  .content_old_8e3f {
    flex-direction: column;
  }

  /* Quotes */
  .icon_pro_c2e7 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .alert-dark-4bcc {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .logo-white-03ba {
    flex-direction: column;
  }

  .logo-white-03ba .glass_a065 {
    width: 100%;
  }

  /* Version comparison */
  .west_bdd5 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .outline_focused_864c {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .disabled_d7d2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hovered-437b {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .medium-8c74,
  .full-bf16,
  .aside_33ec,
  .disabled_d563,
  .list_fdab,
  .grid_top_4578 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .medium-8c74 table,
  .full-bf16 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .thumbnail_0924 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .aside-2057 {
    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;
  }

  .filter-df34 {
    font-size: 1.25rem !important;
  }

  .under_e3e0 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .gas-39a0 {
    position: fixed;
  }

  .south-bf79 {
    padding: 0.625rem 0;
  }

  .hovered_74d6 img {
    height: 26px;
  }

  .chip-purple-46c0 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .sort_orange_25de {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .north_2700 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .north_2700 svg {
    width: 18px;
    height: 18px;
  }

  .north_2700 .link_5a8b {
    font-size: 0.7rem;
  }

  .north_2700 .detail-hovered-a64c {
    font-size: 0.65rem;
  }

  .shade_gold_2f41,
  .current-1880 {
    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, .aside-2057, .blue-be26, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .dirty_505a {
    padding: 1rem;
  }

  .fast-99c4 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .tabs_yellow_d586 {
    padding: 0.875rem;
  }

  .plasma-dc21 {
    font-size: 1.25rem;
  }

  .shade_silver_7d83 .glass_a065 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .under_e3e0 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .glass_a065 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .tabs-prev-8b87 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .bright_5a90 {
    padding: 1rem;
  }

  .gradient-old-2d6c span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .background_856c,
  .gas_8f5b,
  .active-6741,
  .tertiary-dcd5 {
    padding: 1rem;
  }
}

@media print {
  .gas-39a0,
  .modal-purple-d52a,
  .summary_up_6db2,
  .glass_a065,
  .texture-thick-323e {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .aside-2057 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.hovered_6b18 {
  margin-bottom: 3rem;
  text-align: center;
}

.filter-df34 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.tertiary-00ec {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.text-c9de,
.selected_c1ae {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.menu-bottom-7206 {
  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;
}

.menu-bottom-7206:hover {
  transform: translateY(-5px);
}

.menu-bottom-7206 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.menu-bottom-7206 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.dropdown_silver_0555 {
  margin: 3rem 0;
}

.border_2b2a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.sort_simple_d731 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.sort_simple_d731:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.image-wide-c930 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.under_f719 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.prev_398e {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.pagination_lower_1265 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.text-6447 {
  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;
}

.text-6447:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.text-6447.search-0b8c {
  border-left: 4px solid var(--primary-color);
}

.fast_21b6 {
  flex-shrink: 0;
}

.fast_21b6 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.label_df45 {
  flex: 1;
}

.label_df45 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.header_static_ea8f {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.small_ec0c,
.section-paper-e510,
.fixed-3ddd {
  margin-bottom: 1.5rem;
}

.small_ec0c h4,
.section-paper-e510 h4,
.fixed-3ddd h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.small_ec0c ul,
.section-paper-e510 ul,
.fixed-3ddd ul {
  list-style: none;
  padding: 0;
}

.small_ec0c li,
.section-paper-e510 li,
.fixed-3ddd li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.small_ec0c li:before,
.section-paper-e510 li:before,
.fixed-3ddd li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.shadow-efa3 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.shadow-efa3 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;
}

.shadow-efa3 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.menu_in_8482 { margin: 2rem 0; }
.east_ccdb { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.east_ccdb h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.slider_under_1856 p { margin-bottom: 1rem; line-height: 1.7; }
.slider_under_1856 strong { color: var(--text-primary); }
.slider_under_1856 ul { list-style: none; padding-left: 0; }
.slider_under_1856 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.slider_under_1856 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.footer_aad9 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.notice_clean_1d2a { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.notice_clean_1d2a:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.paper-8f4d { font-size: 3rem; margin-bottom: 1rem; }
.notice_clean_1d2a h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.notice_clean_1d2a p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.popup_lite_1307 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.popup_lite_1307 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.plasma_fd52 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.focused-1486 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.dynamic-85e4 { text-align: center; }
.status-52dc { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.focused-31f2 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.title-3d5a { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.hard_f025 { margin: 2rem 0; }
.complex-662c { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.complex-662c h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.complex-662c p, .complex-662c ul { line-height: 1.7; }
.complex-662c ul { list-style: none; padding-left: 0; }
.complex-662c ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.complex-662c ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.motion-1d1d { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.progress_42d9 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.search_48d5 { text-align: center; }
.focused-d986 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.image_upper_494b { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.panel_light_d76c { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.notification_49ff { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.advanced_1016 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.advanced_1016:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.advanced_1016 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.advanced_1016 p, .advanced_1016 ul { line-height: 1.7; }
.advanced_1016 ul { list-style: none; padding-left: 0; }
.advanced_1016 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.advanced_1016 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: fe27 */
.shadow-element-c2 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.0;
}
