/* ============================================
   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 */
.dropdown-2188 p,
.bottom-9d3d,
.west-e4d2,
.video_gas_8559,
.slider-old-1861,
.new-f042,
.thick-e664,
.hard_ce93 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.paper-98e8 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.paper-98e8 > *,
.notification_115a,
.dropdown-2188,
.hard_6c83 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .paper-98e8 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .paper-98e8 {
    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 === */
.summary_fd45 {
  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 */
.summary_fd45.block-4ba4 {
  box-shadow: var(--shadow-md);
}

.narrow_ea31 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.heading-lite-2afd img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.media_basic_2e05 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.content-bronze-33d5 {
  display: none;
}

/* Hide mobile actions on desktop */
.steel-2073 {
  display: none;
}

.fast_a7fe a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.fast_a7fe a:hover,
.fast_a7fe a.fn-active-0f1e {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.out-eeeb {
  margin-left: 1rem;
}

.container_bb4c {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.carousel_a35a,
.element-af94 {
  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;
}

.carousel_a35a {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.carousel_a35a: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;
}

.element-af94 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.element-af94: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;
}

.carousel_a35a svg,
.element-af94 svg {
  flex-shrink: 0;
}

.cold_650b {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.cool_51ba {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.cool_51ba::before,
.cool_51ba::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.cool_51ba::before {
  top: -7px;
}

.cool_51ba::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.out_cfc7 {
  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 === */
.primary-hot-69c9 {
  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);
}

.feature-fresh-d98e {
  margin: 0 0 2rem;
  text-align: center;
}

.new_0856 {
  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;
}

.new_0856:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.action-1f68 {
  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);
}

.action-1f68 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.picture-basic-4898 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.hovered-de62 {
  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;
}

.hovered-de62:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.first_d65a {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-left-cb79 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.photo_thick_3b0d {
  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);
}

.photo_thick_3b0d .paper_d31f {
  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;
}

.photo_thick_3b0d .paper_d31f svg {
  flex-shrink: 0;
}

.photo_thick_3b0d .link_red_a40f {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.photo_thick_3b0d .link_red_a40f: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);
}

.photo_thick_3b0d .gradient-liquid-2fad {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.photo_thick_3b0d .gradient-liquid-2fad: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) {
  .primary-hot-69c9 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .new_0856 {
    max-width: 100%;
  }

  .picture-basic-4898 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hovered-de62 {
    padding: 1rem;
  }

  .first_d65a {
    font-size: 1.5rem;
  }

  .hero-left-cb79 {
    font-size: 0.75rem;
  }

  .action-1f68 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .photo_thick_3b0d {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .photo_thick_3b0d .paper_d31f {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .picture-basic-4898 {
    grid-template-columns: 1fr;
  }
}

.icon-fixed-4cd2 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.main-slow-2e58 {
  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 === */
.filter-442f {
  margin-bottom: 2.5rem;
}

.aside_2f5a {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.icon-fixed-4cd2 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.element-07ac {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.south-145a {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.primary_a5d5 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.surface_smooth_9d63 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.description-dynamic-4fc8 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.caption_0e70 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tertiary_f379 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tertiary_f379 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.avatar-5455 {
  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);
}

.main-860c {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.clean_6ced {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.focused-b250 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.progress_south_24a2 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.badge-prev-b082 {
  display: grid;
  gap: 1rem;
}

.active-1780 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.aside-ce7d {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.gradient_black_4aa6 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.advanced_89f7 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.title-narrow-94f2 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.container_liquid_2abc {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.container_liquid_2abc p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.bottom-9d3d {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.hero-new-9594 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.button-f781 {
  display: grid;
  gap: 2rem;
}

.dynamic-689b {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.south-145a {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.element-07ac {
  flex: 1;
}

.surface_smooth_9d63 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.surface_smooth_9d63 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.thumbnail_iron_d9b2 {
  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;
}

.description-dynamic-4fc8 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.message-260c {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.message-260c span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.nav_141c {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.nav_141c a {
  font-size: 0.875rem;
  font-weight: 500;
}

.search_2a3d {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.search_2a3d strong {
  display: block;
  margin-bottom: 0.75rem;
}

.search_2a3d ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.search_2a3d li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.next-b15f {
  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 === */
.disabled-bronze-49c4 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.icon-ea69 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.tabs-action-ed7c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.article_5f0c h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.article_5f0c ol {
  list-style: none;
  counter-reset: toc-counter;
}

.article_5f0c ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.article_5f0c 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;
}

.article_5f0c ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.article_5f0c ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.dropdown-2188 {
  padding: 3rem 0 5rem;
}

.hard_6c83 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.hard_6c83.gradient_cool_e6fe {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.west-e4d2 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.chip_purple_fe83 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.feature_fluid_a4cc {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.feature_fluid_a4cc h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.tertiary-middle-1d6d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.container_in_0951 {
  text-align: center;
}

.main_stale_c80d {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.north_577d {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.texture-db07 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.new-f042 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.video_gas_8559 {
  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;
}

.video_gas_8559 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.video_gas_8559:hover {
  box-shadow: var(--shadow-lg);
}

.video_gas_8559.video_5511 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.video_gas_8559 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.video_gas_8559 ul {
  margin: 1rem 0;
}

.video_gas_8559 li {
  margin-bottom: 0.75rem;
}

.status_0011 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.article_fresh_c510 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.article_fresh_c510 a {
  font-weight: 600;
}

/* === Data Tables === */
.focused-ac02 {
  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;
}

.focused-ac02 table {
  width: 100%;
  min-width: 600px;
}

.focused-ac02 thead {
  background-color: var(--primary-color);
  color: white;
}

.focused-ac02 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.focused-ac02 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.focused-ac02 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.focused-ac02 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.message-5d7b {
  list-style: none;
  margin: 1.5rem 0;
}

.message-5d7b li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.message-5d7b li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.upper-5775::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-0f1e::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 === */
.mini-208b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.disabled-hard-d934 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.disabled-hard-d934 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.disabled-hard-d934 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.disabled-hard-d934 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.mini-208b blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.thick-e664 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.thick-e664::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.label-copper-145e {
  position: relative;
  margin-bottom: 3rem;
}

.modal-6c1d {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.modal-6c1d .tabs-4117 {
  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;
}

.button_a40e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.button_a40e h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.button_a40e ul {
  margin: 1rem 0;
}

.button_a40e li {
  margin-bottom: 0.75rem;
}

.column-narrow-25b0 {
  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 === */
.south-91d2 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.south-91d2 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.caption-hard-dd0b {
  list-style: none;
  margin: 1.5rem 0;
}

.caption-hard-dd0b li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.caption-hard-dd0b a {
  font-weight: 600;
}

.hover-bdd6 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.hard_ce93 {
  margin: 2.5rem 0;
}

.widget_9fa9 {
  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;
}

.widget_9fa9:hover {
  box-shadow: var(--shadow-lg);
}

.widget_9fa9.footer_dae2 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.block-tall-1139 {
  flex-shrink: 0;
}

.block-tall-1139 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);
}

.progress-9e65 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.orange_dbee,
.focus-3e83,
.avatar-up-a3c0 {
  width: 100%;
  margin: 1.5rem 0;
}

.thick_cdf0 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.thick_cdf0 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.frame-deab {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.frame-deab strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.primary_412f {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.primary_412f strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.message_0041 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.tooltip-5c77 {
  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-5c77:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.tooltip-5c77.label-07a2 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.tooltip-5c77 .east-3316 {
  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-5c77 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.light-eaec {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.left_bc52 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.left_bc52 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.modal_solid_f125 {
  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 === */
.paper_d31f {
  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;
}

.link_red_a40f {
  background-color: var(--primary-color);
  color: white;
}

.link_red_a40f:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.gradient-liquid-2fad {
  background-color: var(--text-secondary);
  color: white;
}

.gradient-liquid-2fad:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.basic_5e1a {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.basic_5e1a:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.liquid_5473 {
  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;
}

.liquid_5473:hover {
  background-color: var(--primary-dark);
}

.main-16f1 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.button_85b2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.heading_cb96 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.slider_cool_190d {
  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 === */
.block_warm_533f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.narrow_0226 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.narrow_0226 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.text-7d72 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.inner-dad2 {
  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;
}

.out-1281 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.notice_silver_30a9 {
  list-style: none;
  counter-reset: rank-counter;
}

.notice_silver_30a9 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.notice_silver_30a9 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;
}

.next-50dd {
  list-style: none;
}

.next-50dd li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.motion_9f69 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.yellow_9ec1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.yellow_9ec1 .picture_gas_0832 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.yellow_9ec1 .table-gold-a4b4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.list-dfa4 {
  margin-top: 3rem;
}

.brown_07bf {
  width: 100%;
}

.status_7d55 {
  background-color: #fef3c7;
}

.border_hard_20ec {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.info-8e8c {
  margin: 3rem 0;
}

.plasma_2bc4 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.hover_4fbc {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.hover_4fbc:hover {
  box-shadow: var(--shadow-lg);
}

.hover_4fbc.hover_pink_13cf {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.backdrop-bottom-4e4e {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.pink-7604 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.pink-7604 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.backdrop-stale-e29c {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hover_4fbc blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.layout-cool-ed43 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.secondary-clean-1d7a {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.sidebar-aebf {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.status_f023 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.dropdown_middle_a107 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.notice_orange_5f9c {
  margin-top: 1rem;
}

/* === FAQ Section === */
.primary-e071 {
  max-width: 900px;
  margin: 0 auto;
}

.active-ea01 {
  margin: 2rem 0;
}

.panel-8b84 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.panel-8b84 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.panel-8b84 summary::-webkit-details-marker {
  display: none;
}

.panel-8b84 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.mini-35ae {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.panel-8b84[open] .mini-35ae {
  transform: rotate(45deg);
}

.component-dynamic-299f {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.component-dynamic-299f p:last-child {
  margin-bottom: 0;
}

.widget_45d8 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.picture-purple-d817 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.tabs_glass_5c2b {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.tabs_glass_5c2b p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.tabs_glass_5c2b .paper_d31f {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.background_7e0b {
  max-width: 900px;
  margin: 0 auto;
}

.module_dirty_413a {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.medium-40e9 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.medium-40e9.fn-success-0f1e {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.accordion-6a1d {
  font-size: 3rem;
  line-height: 1;
}

.active_8efc h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.cold_0c4b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.modal-paper-4ab4,
.section-copper-26f1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.modal-paper-4ab4 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.section-copper-26f1 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.huge-4755,
.up-f5db {
  margin: 1.5rem 0;
}

.huge-4755 li,
.up-f5db li {
  margin-bottom: 1rem;
}

.accordion-south-75f3 {
  margin: 3rem 0;
}

.action-a806 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.action-a806 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.action-a806 ol {
  margin: 1rem 0;
}

.action-a806 li {
  margin-bottom: 0.75rem;
}

.logo_advanced_3f40 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.thumbnail-72de {
  margin: 2rem 0;
}

.heading_2811 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.label_lower_d7ee {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.secondary-c463 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.primary_new_af92 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.sort_83ff {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.fast-310e {
  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;
}

.fast-310e img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.primary_a5d5 {
  flex: 1;
}

.primary_a5d5 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.nav-c095 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.input_ad7d p {
  margin-bottom: 1rem;
}

.column_91e3 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.complex-fccb {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.banner-56ea {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.banner-56ea a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.caption-d8f4 h3 {
  margin-bottom: 1.5rem;
}

.short_2910 {
  display: grid;
  gap: 2rem;
}

.form-warm-5cd6 {
  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;
}

.form-warm-5cd6 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.form-warm-5cd6 h4 {
  margin: 0 0 0.25rem;
}

.form-warm-5cd6 p {
  margin: 0;
  font-size: 0.9375rem;
}

.container-large-4783 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.button-stale-6edf {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.button-stale-6edf h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.button-stale-6edf ul {
  margin: 1.5rem 0;
}

.button-stale-6edf li {
  margin-bottom: 0.75rem;
}

.slider-8389 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.middle-df26 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.tertiary-green-7eb9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.badge_84b1 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.badge_84b1 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.silver_7087 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.silver_7087 a {
  color: rgba(255, 255, 255, 0.8);
}

.fixed_68ab {
  list-style: none;
}

.fixed_68ab li {
  margin-bottom: 0.75rem;
}

.fixed_68ab a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.fixed_68ab a:hover {
  color: white;
}

.grid_c025 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.plasma_e931 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.basic-85f0 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.texture_f531 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.container_out_651d {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .paper-98e8 {
    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;
  }

  .center_458d {
    font-size: 1.5rem !important;
  }

  .aside_2f5a {
    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 */
  .video_gas_8559,
  .slider-old-1861,
  .button_a40e,
  .progress-9e65,
  .backdrop-bottom-4e4e,
  .hover_4fbc,
  .component-dynamic-299f,
  .action-1f68,
  .bottom-9d3d,
  .west-e4d2 {
    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 */
  .icon-fixed-4cd2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .element-07ac {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .south-145a {
    flex-shrink: 0;
  }

  .primary_a5d5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .surface_smooth_9d63,
  .description-dynamic-4fc8 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .description-dynamic-4fc8 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .media_basic_2e05 {
    display: none;
  }

  /* Show mobile actions */
  .steel-2073 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .fluid-e677 {
    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;
  }

  .fluid-e677 svg {
    flex-shrink: 0;
  }

  .fluid-e677 .slider_iron_22c2 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .fluid-e677 .text_fixed_cb72 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .right-d66a {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .link_middle_364b {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .fluid-e677:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .content-bronze-33d5 {
    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;
  }

  .content-bronze-33d5.fn-active-0f1e {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .content-bronze-33d5 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .content-bronze-33d5 li:last-child {
    border-bottom: none;
  }

  .content-bronze-33d5 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .fast_a7fe {
    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;
  }

  .fast_a7fe li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .fast_a7fe li:last-child {
    border-bottom: none;
  }

  .fast_a7fe a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .out-eeeb {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .container_bb4c {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .carousel_a35a,
  .element-af94 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .carousel_a35a {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .element-af94 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .fast_a7fe.fn-active-0f1e {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .cold_650b {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .summary_fd45 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .narrow_ea31 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .out_cfc7 {
    margin-top: 0;
  }

  /* Hero section */
  .out_cfc7 {
    padding: 2rem 0 1.5rem;
  }

  .aside_2f5a {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .bottom-9d3d {
    font-size: 1rem;
  }

  /* Hero brand image */
  .primary-hot-69c9 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .new_0856 {
    max-width: 100%;
    border-radius: 8px;
  }

  .picture-basic-4898 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hovered-de62 {
    padding: 1rem;
  }

  .first_d65a {
    font-size: 1.5rem;
  }

  .hero-left-cb79 {
    font-size: 0.75rem;
  }

  .action-1f68 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .photo_thick_3b0d {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .photo_thick_3b0d .paper_d31f {
    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 */
  .tabs-action-ed7c {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .widget_9fa9 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .block-tall-1139 {
    margin-bottom: 1rem;
  }

  /* Author */
  .dynamic-689b {
    flex-direction: column;
  }

  .fast-310e {
    flex-direction: column;
  }

  /* Quotes */
  .backdrop-bottom-4e4e {
    flex-direction: column;
  }

  /* Pros/Cons */
  .cold_0c4b {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .primary_new_af92 {
    flex-direction: column;
  }

  .primary_new_af92 .paper_d31f {
    width: 100%;
  }

  /* Version comparison */
  .message_0041 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .block_warm_533f {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .tertiary-green-7eb9 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .basic-85f0 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .focused-ac02,
  .focus-3e83,
  .surface_fluid_5909,
  .brown_07bf,
  .orange_dbee,
  .avatar-up-a3c0 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .focused-ac02 table,
  .focus-3e83 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .modal_solid_f125 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .paper-98e8 {
    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;
  }

  .center_458d {
    font-size: 1.25rem !important;
  }

  .aside_2f5a {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .summary_fd45 {
    position: fixed;
  }

  .narrow_ea31 {
    padding: 0.625rem 0;
  }

  .heading-lite-2afd img {
    height: 26px;
  }

  .fast_a7fe {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .content-bronze-33d5 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .fluid-e677 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .fluid-e677 svg {
    width: 18px;
    height: 18px;
  }

  .fluid-e677 .slider_iron_22c2 {
    font-size: 0.7rem;
  }

  .fluid-e677 .text_fixed_cb72 {
    font-size: 0.65rem;
  }

  .carousel_a35a,
  .element-af94 {
    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, .paper-98e8, .notification_115a, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .primary-hot-69c9 {
    padding: 1rem;
  }

  .picture-basic-4898 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hovered-de62 {
    padding: 0.875rem;
  }

  .first_d65a {
    font-size: 1.25rem;
  }

  .photo_thick_3b0d .paper_d31f {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .aside_2f5a {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .paper_d31f {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .main-16f1 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .widget_9fa9 {
    padding: 1rem;
  }

  .block-tall-1139 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .video_gas_8559,
  .item-clean-a66d,
  .steel_245d,
  .new_810e {
    padding: 1rem;
  }
}

@media print {
  .summary_fd45,
  .disabled-bronze-49c4,
  .cold_650b,
  .paper_d31f,
  .middle-df26 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .paper-98e8 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.border_yellow_cad7 {
  margin-bottom: 3rem;
  text-align: center;
}

.center_458d {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.logo-advanced-faa9 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.backdrop-east-38f1,
.breadcrumb-0fcb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.red_b467 {
  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;
}

.red_b467:hover {
  transform: translateY(-5px);
}

.red_b467 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.red_b467 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.link-narrow-f9c0 {
  margin: 3rem 0;
}

.static_2971 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.tag_66ff {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.tag_66ff:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.solid_0bd0 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pagination-hard-cfe9 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.paragraph_orange_85fe {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.focused-c26d {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.highlight-cool-9462 {
  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;
}

.highlight-cool-9462:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.highlight-cool-9462.nav-2229 {
  border-left: 4px solid var(--primary-color);
}

.hidden-fast-0a3a {
  flex-shrink: 0;
}

.hidden-fast-0a3a svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.progress-0032 {
  flex: 1;
}

.progress-0032 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pattern_glass_75f2 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.alert-bottom-a0a5,
.menu_2e54,
.surface-f960 {
  margin-bottom: 1.5rem;
}

.alert-bottom-a0a5 h4,
.menu_2e54 h4,
.surface-f960 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.alert-bottom-a0a5 ul,
.menu_2e54 ul,
.surface-f960 ul {
  list-style: none;
  padding: 0;
}

.alert-bottom-a0a5 li,
.menu_2e54 li,
.surface-f960 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.alert-bottom-a0a5 li:before,
.menu_2e54 li:before,
.surface-f960 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.yellow-b646 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.yellow-b646 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;
}

.yellow-b646 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.brown-02f6 { margin: 2rem 0; }
.summary-warm-4ad0 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.summary-warm-4ad0 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.panel_large_e7d3 p { margin-bottom: 1rem; line-height: 1.7; }
.panel_large_e7d3 strong { color: var(--text-primary); }
.panel_large_e7d3 ul { list-style: none; padding-left: 0; }
.panel_large_e7d3 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.panel_large_e7d3 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.pro_d0f7 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.gradient_650a { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.gradient_650a:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.popup-2f28 { font-size: 3rem; margin-bottom: 1rem; }
.gradient_650a h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.gradient_650a p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.bronze-2a67 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.bronze-2a67 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.pagination-7979 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.highlight-south-5e1f { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.module-large-76a3 { text-align: center; }
.caption_copper_7ec3 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.thumbnail-out-59f1 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.shadow-light-16cd { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.focused_2b3f { margin: 2rem 0; }
.slider-12d3 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.slider-12d3 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.slider-12d3 p, .slider-12d3 ul { line-height: 1.7; }
.slider-12d3 ul { list-style: none; padding-left: 0; }
.slider-12d3 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.slider-12d3 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.dropdown-center-ab75 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.accordion-946a { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.filter_fd63 { text-align: center; }
.new_b9cd { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.element_27f2 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.border-last-d820 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.stale_7b02 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.card_a9a4 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.card_a9a4:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.card_a9a4 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.card_a9a4 p, .card_a9a4 ul { line-height: 1.7; }
.card_a9a4 ul { list-style: none; padding-left: 0; }
.card_a9a4 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.card_a9a4 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 2003 */
.phantom-card-c4 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.1;
}
