/* ============================================
   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 */
.row_static_7f01 p,
.badge_f5e2,
.widget_easy_2241,
.fluid_cd36,
.hover_paper_020b,
.shade-mini-a512,
.image_e6f9,
.slider-7eae {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.simple_701a {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.simple_701a > *,
.sort_thick_fdf6,
.row_static_7f01,
.element-e81a {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .simple_701a {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .simple_701a {
    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 === */
.in_2dd1 {
  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 */
.in_2dd1.form-3f71 {
  box-shadow: var(--shadow-md);
}

.detail-da46 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.pattern_over_4ad0 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.glass_9137 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.container_456d {
  display: none;
}

/* Hide mobile actions on desktop */
.focus-52c5 {
  display: none;
}

.full_a752 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.full_a752 a:hover,
.full_a752 a.fn-active-cf53 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.component_current_6c43 {
  margin-left: 1rem;
}

.accent-2494 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.clean_ce24,
.title_tiny_3429 {
  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;
}

.clean_ce24 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.clean_ce24: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;
}

.title_tiny_3429 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.title_tiny_3429: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;
}

.clean_ce24 svg,
.title_tiny_3429 svg {
  flex-shrink: 0;
}

.stale-e848 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.purple-69ea {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.purple-69ea::before,
.purple-69ea::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.purple-69ea::before {
  top: -7px;
}

.purple-69ea::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.sort_rough_037f {
  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 === */
.pattern-e548 {
  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);
}

.mask_thick_a4fd {
  margin: 0 0 2rem;
  text-align: center;
}

.heading_easy_be98 {
  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;
}

.heading_easy_be98:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.hero-small-6c47 {
  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);
}

.hero-small-6c47 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.media_black_37b2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.south-93c0 {
  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;
}

.south-93c0:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.liquid_b37b {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.thumbnail-soft-8390 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.main-4bb0 {
  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);
}

.main-4bb0 .sort_5dc1 {
  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;
}

.main-4bb0 .sort_5dc1 svg {
  flex-shrink: 0;
}

.main-4bb0 .border_fc83 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.main-4bb0 .border_fc83: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);
}

.main-4bb0 .title-16fd {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.main-4bb0 .title-16fd: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) {
  .pattern-e548 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .heading_easy_be98 {
    max-width: 100%;
  }

  .media_black_37b2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .south-93c0 {
    padding: 1rem;
  }

  .liquid_b37b {
    font-size: 1.5rem;
  }

  .thumbnail-soft-8390 {
    font-size: 0.75rem;
  }

  .hero-small-6c47 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .main-4bb0 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .main-4bb0 .sort_5dc1 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .media_black_37b2 {
    grid-template-columns: 1fr;
  }
}

.notification-blue-a1f1 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.gallery_885b {
  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 === */
.hero-b218 {
  margin-bottom: 2.5rem;
}

.tag-1d1e {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.notification-blue-a1f1 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.block-west-7a50 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.active-9c43 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.bottom-fa62 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.status_eb98 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.tooltip-up-901f {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.progress_inner_3a9e {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.breadcrumb_e631 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.breadcrumb_e631 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.hot_2989 {
  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);
}

.dynamic-6122 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.middle_503c {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.sort-f819 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.active-d098 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.dim-f170 {
  display: grid;
  gap: 1rem;
}

.title_a3c4 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.slider-7e69 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.tabs-thick-f9b2 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.focus_b603 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.full_6560 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.disabled-last-9cdb {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.disabled-last-9cdb p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.badge_f5e2 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.mask-860f {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.notice-new-b436 {
  display: grid;
  gap: 2rem;
}

.media_312f {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.active-9c43 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.block-west-7a50 {
  flex: 1;
}

.status_eb98 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.status_eb98 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.rough_825d {
  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;
}

.tooltip-up-901f {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.tertiary-dark-183a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.tertiary-dark-183a span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.icon_c48a {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.icon_c48a a {
  font-size: 0.875rem;
  font-weight: 500;
}

.breadcrumb-right-7ea1 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.breadcrumb-right-7ea1 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.breadcrumb-right-7ea1 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.breadcrumb-right-7ea1 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.container_8e88 {
  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 === */
.blue-13bd {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.south-a078 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.summary-down-d9ac {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.backdrop-8fb8 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.backdrop-8fb8 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.backdrop-8fb8 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.backdrop-8fb8 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;
}

.backdrop-8fb8 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.backdrop-8fb8 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.row_static_7f01 {
  padding: 3rem 0 5rem;
}

.element-e81a {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.element-e81a.pro_7855 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.widget_easy_2241 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.motion_2c47 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.icon-hard-e83e {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.icon-hard-e83e h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.tiny_8b10 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.top_d3d4 {
  text-align: center;
}

.logo_slow_c989 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.background-huge-1e1e {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.summary_fixed_92df {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.shade-mini-a512 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.fluid_cd36 {
  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;
}

.fluid_cd36 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.fluid_cd36:hover {
  box-shadow: var(--shadow-lg);
}

.fluid_cd36.lite_84a4 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.fluid_cd36 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.fluid_cd36 ul {
  margin: 1rem 0;
}

.fluid_cd36 li {
  margin-bottom: 0.75rem;
}

.menu-fresh-4476 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.copper-46e2 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.copper-46e2 a {
  font-weight: 600;
}

/* === Data Tables === */
.hover-3d9b {
  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;
}

.hover-3d9b table {
  width: 100%;
  min-width: 600px;
}

.hover-3d9b thead {
  background-color: var(--primary-color);
  color: white;
}

.hover-3d9b th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.hover-3d9b td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.hover-3d9b tbody tr:hover {
  background-color: var(--bg-secondary);
}

.hover-3d9b tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.pagination-top-48a6 {
  list-style: none;
  margin: 1.5rem 0;
}

.pagination-top-48a6 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.pagination-top-48a6 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.pink_d026::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-cf53::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 === */
.layout_6759 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.image-upper-f473 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.image-upper-f473 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.image-upper-f473 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.image-upper-f473 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.layout_6759 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.image_e6f9 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.image_e6f9::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.text_east_c4ab {
  position: relative;
  margin-bottom: 3rem;
}

.top_3178 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.top_3178 .notification_58bb {
  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;
}

.progress-plasma-7e71 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.progress-plasma-7e71 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.progress-plasma-7e71 ul {
  margin: 1rem 0;
}

.progress-plasma-7e71 li {
  margin-bottom: 0.75rem;
}

.smooth_3c6e {
  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 === */
.under-9b5f {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.under-9b5f h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.stale_f589 {
  list-style: none;
  margin: 1.5rem 0;
}

.stale_f589 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.stale_f589 a {
  font-weight: 600;
}

.info-up-8b80 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.slider-7eae {
  margin: 2.5rem 0;
}

.surface_full_2d93 {
  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;
}

.surface_full_2d93:hover {
  box-shadow: var(--shadow-lg);
}

.surface_full_2d93.title-rough-f40f {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.small_a2dc {
  flex-shrink: 0;
}

.small_a2dc 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);
}

.frame_wood_a23f h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.sort_afd3,
.brown_20cf,
.menu-easy-3c14 {
  width: 100%;
  margin: 1.5rem 0;
}

.hero_pink_1482 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.hero_pink_1482 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.bronze-c7c4 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.bronze-c7c4 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.center-c01d {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.center-c01d strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.table-0b57 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.tooltip_bright_d6e9 {
  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;
}

.tooltip_bright_d6e9:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.tooltip_bright_d6e9.video_a6a4 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.tooltip_bright_d6e9 .inner_1e1e {
  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;
}

.tooltip_bright_d6e9 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.info_liquid_8f61 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.breadcrumb_west_5862 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.breadcrumb_west_5862 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.shade-slow-895d {
  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 === */
.sort_5dc1 {
  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;
}

.border_fc83 {
  background-color: var(--primary-color);
  color: white;
}

.border_fc83:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.title-16fd {
  background-color: var(--text-secondary);
  color: white;
}

.title-16fd:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.glass-b3e3 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.glass-b3e3:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.modal_large_bf75 {
  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;
}

.modal_large_bf75:hover {
  background-color: var(--primary-dark);
}

.hero_4181 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.content-13ac {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.photo_focused_7058 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.iron-accf {
  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 === */
.primary_north_9dd8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.frame_efb3 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.frame_efb3 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.clean_a340 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.title_dark_b7e4 {
  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;
}

.backdrop_upper_1360 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.medium-2705 {
  list-style: none;
  counter-reset: rank-counter;
}

.medium-2705 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.medium-2705 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;
}

.footer-0f8f {
  list-style: none;
}

.footer-0f8f li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.layout-easy-e07a {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.article-smooth-8096 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.article-smooth-8096 .popup-7019 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.article-smooth-8096 .badge-548f {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mini-c68b {
  margin-top: 3rem;
}

.hard-ecfc {
  width: 100%;
}

.pattern-158e {
  background-color: #fef3c7;
}

.down-1ca5 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.dirty-1b1c {
  margin: 3rem 0;
}

.wide-74cd {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.full_fdec {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.full_fdec:hover {
  box-shadow: var(--shadow-lg);
}

.full_fdec.wood_6264 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.pattern-black-b1b3 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.focus_2aec strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.focus_2aec span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.alert_4e1e {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.full_fdec blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.yellow_4798 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.badge_9e71 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.first-a1b5 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.current_47d1 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.pressed_bf4a {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.summary_inner_2fda {
  margin-top: 1rem;
}

/* === FAQ Section === */
.fast-0f5d {
  max-width: 900px;
  margin: 0 auto;
}

.small-c65b {
  margin: 2rem 0;
}

.smooth_c3d2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.smooth_c3d2 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.smooth_c3d2 summary::-webkit-details-marker {
  display: none;
}

.smooth_c3d2 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.basic-89ca {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.smooth_c3d2[open] .basic-89ca {
  transform: rotate(45deg);
}

.label_white_dba6 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.label_white_dba6 p:last-child {
  margin-bottom: 0;
}

.widget_515c {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.stale_656d {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.sort_medium_2b1a {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.sort_medium_2b1a p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.sort_medium_2b1a .sort_5dc1 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.tag-c660 {
  max-width: 900px;
  margin: 0 auto;
}

.item-dc4c {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.search_blue_7ebe {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.search_blue_7ebe.fn-success-cf53 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.content-d542 {
  font-size: 3rem;
  line-height: 1;
}

.static_fcf0 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.summary_pro_99a8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.slow-b478,
.form-dark-b688 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.slow-b478 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.form-dark-b688 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.background_action_8ab4,
.main_copper_0fca {
  margin: 1.5rem 0;
}

.background_action_8ab4 li,
.main_copper_0fca li {
  margin-bottom: 1rem;
}

.sort-soft-3948 {
  margin: 3rem 0;
}

.border-basic-f235 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.border-basic-f235 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.border-basic-f235 ol {
  margin: 1rem 0;
}

.border-basic-f235 li {
  margin-bottom: 0.75rem;
}

.highlight-selected-68b3 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.table-3884 {
  margin: 2rem 0;
}

.item-2e1e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.shadow-23e2 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.photo_bottom_db11 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.accent-in-3c34 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.border-d7ab {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.lite-c9c3 {
  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;
}

.lite-c9c3 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.bottom-fa62 {
  flex: 1;
}

.bottom-fa62 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.menu-cool-bc46 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.logo-ddd2 p {
  margin-bottom: 1rem;
}

.content_48ec {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.hover-5744 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.table-easy-53da {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.table-easy-53da a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.thumbnail-fb6a h3 {
  margin-bottom: 1.5rem;
}

.pagination_red_bccb {
  display: grid;
  gap: 2rem;
}

.block_067f {
  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;
}

.block_067f img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.block_067f h4 {
  margin: 0 0 0.25rem;
}

.block_067f p {
  margin: 0;
  font-size: 0.9375rem;
}

.complex-d9a3 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.surface-west-047f {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.surface-west-047f h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.surface-west-047f ul {
  margin: 1.5rem 0;
}

.surface-west-047f li {
  margin-bottom: 0.75rem;
}

.light_950d {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.container-7083 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.badge-2a3b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.row_east_bed0 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.row_east_bed0 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.disabled-61d3 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.disabled-61d3 a {
  color: rgba(255, 255, 255, 0.8);
}

.content_glass_d9ec {
  list-style: none;
}

.content_glass_d9ec li {
  margin-bottom: 0.75rem;
}

.content_glass_d9ec a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.content_glass_d9ec a:hover {
  color: white;
}

.card-76ca {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.gas_888c {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.popup_warm_3c0e {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.modal_572a {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.surface-lower-bb26 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .simple_701a {
    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;
  }

  .mask_3ee1 {
    font-size: 1.5rem !important;
  }

  .tag-1d1e {
    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 */
  .fluid_cd36,
  .hover_paper_020b,
  .progress-plasma-7e71,
  .frame_wood_a23f,
  .pattern-black-b1b3,
  .full_fdec,
  .label_white_dba6,
  .hero-small-6c47,
  .badge_f5e2,
  .widget_easy_2241 {
    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 */
  .notification-blue-a1f1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .block-west-7a50 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .active-9c43 {
    flex-shrink: 0;
  }

  .bottom-fa62 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .status_eb98,
  .tooltip-up-901f {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .tooltip-up-901f {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .glass_9137 {
    display: none;
  }

  /* Show mobile actions */
  .focus-52c5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .logo-center-ae9f {
    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;
  }

  .logo-center-ae9f svg {
    flex-shrink: 0;
  }

  .logo-center-ae9f .thick_f0bb {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .logo-center-ae9f .video-green-af4e {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .tabs_557e {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .active_18bd {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .logo-center-ae9f:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .container_456d {
    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;
  }

  .container_456d.fn-active-cf53 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .container_456d li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .container_456d li:last-child {
    border-bottom: none;
  }

  .container_456d a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .full_a752 {
    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;
  }

  .full_a752 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .full_a752 li:last-child {
    border-bottom: none;
  }

  .full_a752 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .component_current_6c43 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .accent-2494 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .clean_ce24,
  .title_tiny_3429 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .clean_ce24 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .title_tiny_3429 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .full_a752.fn-active-cf53 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .stale-e848 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .in_2dd1 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .detail-da46 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .sort_rough_037f {
    margin-top: 0;
  }

  /* Hero section */
  .sort_rough_037f {
    padding: 2rem 0 1.5rem;
  }

  .tag-1d1e {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .badge_f5e2 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .pattern-e548 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .heading_easy_be98 {
    max-width: 100%;
    border-radius: 8px;
  }

  .media_black_37b2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .south-93c0 {
    padding: 1rem;
  }

  .liquid_b37b {
    font-size: 1.5rem;
  }

  .thumbnail-soft-8390 {
    font-size: 0.75rem;
  }

  .hero-small-6c47 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .main-4bb0 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .main-4bb0 .sort_5dc1 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }

  /* Typography */
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  /* TOC */
  .summary-down-d9ac {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .surface_full_2d93 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .small_a2dc {
    margin-bottom: 1rem;
  }

  /* Author */
  .media_312f {
    flex-direction: column;
  }

  .lite-c9c3 {
    flex-direction: column;
  }

  /* Quotes */
  .pattern-black-b1b3 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .summary_pro_99a8 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .accent-in-3c34 {
    flex-direction: column;
  }

  .accent-in-3c34 .sort_5dc1 {
    width: 100%;
  }

  /* Version comparison */
  .table-0b57 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .primary_north_9dd8 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .badge-2a3b {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .popup_warm_3c0e {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .hover-3d9b,
  .brown_20cf,
  .stone_e4c7,
  .hard-ecfc,
  .sort_afd3,
  .menu-easy-3c14 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hover-3d9b table,
  .brown_20cf table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .shade-slow-895d {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .simple_701a {
    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;
  }

  .mask_3ee1 {
    font-size: 1.25rem !important;
  }

  .tag-1d1e {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .in_2dd1 {
    position: fixed;
  }

  .detail-da46 {
    padding: 0.625rem 0;
  }

  .pattern_over_4ad0 img {
    height: 26px;
  }

  .full_a752 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .container_456d {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .logo-center-ae9f {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .logo-center-ae9f svg {
    width: 18px;
    height: 18px;
  }

  .logo-center-ae9f .thick_f0bb {
    font-size: 0.7rem;
  }

  .logo-center-ae9f .video-green-af4e {
    font-size: 0.65rem;
  }

  .clean_ce24,
  .title_tiny_3429 {
    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, .simple_701a, .sort_thick_fdf6, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .pattern-e548 {
    padding: 1rem;
  }

  .media_black_37b2 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .south-93c0 {
    padding: 0.875rem;
  }

  .liquid_b37b {
    font-size: 1.25rem;
  }

  .main-4bb0 .sort_5dc1 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .tag-1d1e {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .sort_5dc1 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .hero_4181 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .surface_full_2d93 {
    padding: 1rem;
  }

  .small_a2dc span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .fluid_cd36,
  .menu_hovered_3f89,
  .pressed-4855,
  .active_6170 {
    padding: 1rem;
  }
}

@media print {
  .in_2dd1,
  .blue-13bd,
  .stale-e848,
  .sort_5dc1,
  .container-7083 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .simple_701a {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.fluid-2029 {
  margin-bottom: 3rem;
  text-align: center;
}

.mask_3ee1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.huge_6489 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.next_f6e0,
.iron-b11e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.hard-ed03 {
  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;
}

.hard-ed03:hover {
  transform: translateY(-5px);
}

.hard-ed03 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.hard-ed03 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.orange-2ee2 {
  margin: 3rem 0;
}

.soft_c1b1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.notification_36b5 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.notification_36b5:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.liquid_d016 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.list_fluid_424a {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.alert_full_879e {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.card_285e {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.notice_fded {
  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;
}

.notice_fded:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.notice_fded.breadcrumb_94a9 {
  border-left: 4px solid var(--primary-color);
}

.pagination_e04c {
  flex-shrink: 0;
}

.pagination_e04c svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.bottom_15a5 {
  flex: 1;
}

.bottom_15a5 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.mask_3778 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.stale_2a28,
.clean-a3f2,
.header-69b0 {
  margin-bottom: 1.5rem;
}

.stale_2a28 h4,
.clean-a3f2 h4,
.header-69b0 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stale_2a28 ul,
.clean-a3f2 ul,
.header-69b0 ul {
  list-style: none;
  padding: 0;
}

.stale_2a28 li,
.clean-a3f2 li,
.header-69b0 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.stale_2a28 li:before,
.clean-a3f2 li:before,
.header-69b0 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.secondary_f2c5 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.secondary_f2c5 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;
}

.secondary_f2c5 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.focus_589f { margin: 2rem 0; }
.soft-4d44 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.soft-4d44 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.mask_first_c914 p { margin-bottom: 1rem; line-height: 1.7; }
.mask_first_c914 strong { color: var(--text-primary); }
.mask_first_c914 ul { list-style: none; padding-left: 0; }
.mask_first_c914 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.mask_first_c914 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.layout_01e3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.nav_lite_df2c { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.nav_lite_df2c:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.icon-iron-0648 { font-size: 3rem; margin-bottom: 1rem; }
.nav_lite_df2c h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.nav_lite_df2c p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.modal_9bed { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.modal_9bed span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.photo_over_698e { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.element-298b { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.accent-28a4 { text-align: center; }
.module-bright-a4e1 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.message_6e7f { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.fluid_a835 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.disabled-da9f { margin: 2rem 0; }
.text_fast_99a3 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.text_fast_99a3 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.text_fast_99a3 p, .text_fast_99a3 ul { line-height: 1.7; }
.text_fast_99a3 ul { list-style: none; padding-left: 0; }
.text_fast_99a3 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.text_fast_99a3 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.content_b6a0 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.section-557f { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.black_116f { text-align: center; }
.modal-27ec { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.caption-slow-f999 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.bottom_5e9d { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.header-blue-aa00 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.wrapper_tall_c07d { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.wrapper_tall_c07d:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.wrapper_tall_c07d h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.wrapper_tall_c07d p, .wrapper_tall_c07d ul { line-height: 1.7; }
.wrapper_tall_c07d ul { list-style: none; padding-left: 0; }
.wrapper_tall_c07d ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.wrapper_tall_c07d ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 181a */
.widget-item-f4 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.0;
}
