/* ============================================
   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 */
.narrow_fcd2 p,
.gas_1d19,
.bottom_a776,
.avatar_e779,
.notification_dynamic_9823,
.medium_cc5e,
.primary_ce90,
.layout_stale_46cd {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.chip_hovered_81ce {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.chip_hovered_81ce > *,
.thumbnail-mini-6ff3,
.narrow_fcd2,
.aside_motion_30cc {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .chip_hovered_81ce {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .chip_hovered_81ce {
    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 === */
.video_ef1f {
  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 */
.video_ef1f.notification_wood_a118 {
  box-shadow: var(--shadow-md);
}

.pro_f4ad {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.hovered_d389 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.secondary-dbd0 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.cold-be1d {
  display: none;
}

/* Hide mobile actions on desktop */
.sidebar-a24d {
  display: none;
}

.highlight_large_79f6 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.highlight_large_79f6 a:hover,
.highlight_large_79f6 a.fn-active-a813 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.list_bottom_cae5 {
  margin-left: 1rem;
}

.item-pressed-36ed {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.bright_20f3,
.popup_liquid_8857 {
  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;
}

.bright_20f3 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.bright_20f3: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;
}

.popup_liquid_8857 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.popup_liquid_8857: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;
}

.bright_20f3 svg,
.popup_liquid_8857 svg {
  flex-shrink: 0;
}

.column_31b6 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.logo_70a8 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.logo_70a8::before,
.logo_70a8::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.logo_70a8::before {
  top: -7px;
}

.logo_70a8::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.paper-db4c {
  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 === */
.wrapper_orange_4487 {
  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);
}

.out_000d {
  margin: 0 0 2rem;
  text-align: center;
}

.input-static-baad {
  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;
}

.input-static-baad:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.title-huge-a264 {
  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);
}

.title-huge-a264 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.section-971a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.image-fluid-d1de {
  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;
}

.image-fluid-d1de:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.hard_d83b {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.up-1913 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.dirty-9d6e {
  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);
}

.dirty-9d6e .prev-1831 {
  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;
}

.dirty-9d6e .prev-1831 svg {
  flex-shrink: 0;
}

.dirty-9d6e .card-1780 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.dirty-9d6e .card-1780: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);
}

.dirty-9d6e .secondary-d32e {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.dirty-9d6e .secondary-d32e: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) {
  .wrapper_orange_4487 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .input-static-baad {
    max-width: 100%;
  }

  .section-971a {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .image-fluid-d1de {
    padding: 1rem;
  }

  .hard_d83b {
    font-size: 1.5rem;
  }

  .up-1913 {
    font-size: 0.75rem;
  }

  .title-huge-a264 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .dirty-9d6e {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .dirty-9d6e .prev-1831 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-971a {
    grid-template-columns: 1fr;
  }
}

.yellow_42ba {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.banner_710a {
  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 === */
.title_mini_d3f6 {
  margin-bottom: 2.5rem;
}

.rough_3280 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.yellow_42ba {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.picture_left_cb45 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-5b1e {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.fixed-266f {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fluid_2278 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.item-e7fd {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.black_59cc {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.breadcrumb-ecda {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.breadcrumb-ecda svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.image_0f8b {
  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);
}

.article-tiny-550c {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.media_100f {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.purple-b3ab {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.hero_south_bc63 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.iron-f1e9 {
  display: grid;
  gap: 1rem;
}

.grid_ee2d {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.aside-0b55 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.tag-outer-331b {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.paper-e69f {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.grid-short-05fa {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.table-cold-c489 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.table-cold-c489 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.gas_1d19 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.video-b87d {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.label-1eef {
  display: grid;
  gap: 2rem;
}

.new-1ae5 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.main-5b1e {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.picture_left_cb45 {
  flex: 1;
}

.fluid_2278 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.fluid_2278 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.background-76e8 {
  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;
}

.item-e7fd {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.secondary-wide-8f76 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.secondary-wide-8f76 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.solid_6cd5 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.solid_6cd5 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.large_79e0 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.large_79e0 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.large_79e0 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.large_79e0 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.widget-wide-0012 {
  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 === */
.row-stale-9cb9 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.thumbnail_b916 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.text_04d4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.item_dark_3c0a h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.item_dark_3c0a ol {
  list-style: none;
  counter-reset: toc-counter;
}

.item_dark_3c0a ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.item_dark_3c0a 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;
}

.item_dark_3c0a ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.item_dark_3c0a ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.narrow_fcd2 {
  padding: 3rem 0 5rem;
}

.aside_motion_30cc {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.aside_motion_30cc.pagination-10bb {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.bottom_a776 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.cold_64a3 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.widget-6a5f {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.widget-6a5f h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.old_c2f8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.item-c679 {
  text-align: center;
}

.primary-46c4 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.small-84fa {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.content_6153 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.medium_cc5e {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.avatar_e779 {
  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;
}

.avatar_e779 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.avatar_e779:hover {
  box-shadow: var(--shadow-lg);
}

.avatar_e779.tooltip-e275 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.avatar_e779 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.avatar_e779 ul {
  margin: 1rem 0;
}

.avatar_e779 li {
  margin-bottom: 0.75rem;
}

.center-fa90 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.wrapper_1d49 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.wrapper_1d49 a {
  font-weight: 600;
}

/* === Data Tables === */
.grid-1e43 {
  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;
}

.grid-1e43 table {
  width: 100%;
  min-width: 600px;
}

.grid-1e43 thead {
  background-color: var(--primary-color);
  color: white;
}

.grid-1e43 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.grid-1e43 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.grid-1e43 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.grid-1e43 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.focused-4369 {
  list-style: none;
  margin: 1.5rem 0;
}

.focused-4369 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.focused-4369 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.item_0f7f::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-a813::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 === */
.bottom-b16f {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.row-narrow-156a {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.row-narrow-156a img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.row-narrow-156a strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.row-narrow-156a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.bottom-b16f blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.primary_ce90 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.primary_ce90::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.feature-1618 {
  position: relative;
  margin-bottom: 3rem;
}

.hover-9403 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.hover-9403 .current_b23e {
  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;
}

.info-liquid-003b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.info-liquid-003b h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.info-liquid-003b ul {
  margin: 1rem 0;
}

.info-liquid-003b li {
  margin-bottom: 0.75rem;
}

.gold_1410 {
  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 === */
.form-dark-bc71 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.form-dark-bc71 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.old_9c7d {
  list-style: none;
  margin: 1.5rem 0;
}

.old_9c7d li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.old_9c7d a {
  font-weight: 600;
}

.filter_101f {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.layout_stale_46cd {
  margin: 2.5rem 0;
}

.pro_7b74 {
  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;
}

.pro_7b74:hover {
  box-shadow: var(--shadow-lg);
}

.pro_7b74.dark-5e11 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.pagination_a7b6 {
  flex-shrink: 0;
}

.pagination_a7b6 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);
}

.basic-2f7a h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.gold-3f22,
.logo_complex_721f,
.tooltip-simple-ead0 {
  width: 100%;
  margin: 1.5rem 0;
}

.hot_2142 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.hot_2142 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.popup-7f1b {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.popup-7f1b strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.fresh-15e4 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.fresh-15e4 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.summary_stale_51d0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.image-steel-fef3 {
  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;
}

.image-steel-fef3:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.image-steel-fef3.background_fixed_c514 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.image-steel-fef3 .sidebar_6c9d {
  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;
}

.image-steel-fef3 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.avatar-20c3 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.medium_f625 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.medium_f625 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.dark-e331 {
  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 === */
.prev-1831 {
  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;
}

.card-1780 {
  background-color: var(--primary-color);
  color: white;
}

.card-1780:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.secondary-d32e {
  background-color: var(--text-secondary);
  color: white;
}

.secondary-d32e:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.main_bright_b6a6 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.main_bright_b6a6:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.full_d144 {
  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;
}

.full_d144:hover {
  background-color: var(--primary-dark);
}

.avatar-purple-9452 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.nav-0773 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.dropdown_cool_d287 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.form_5858 {
  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 === */
.green-9fa0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.notice-large-82ee {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.notice-large-82ee h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.active-red-3f36 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.description_prev_7036 {
  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;
}

.modal-944c {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.summary_fluid_f72c {
  list-style: none;
  counter-reset: rank-counter;
}

.summary_fluid_f72c li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.summary_fluid_f72c 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;
}

.highlight_37bb {
  list-style: none;
}

.highlight_37bb li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.notice-over-f41e {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.full-454e {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.full-454e .pagination_middle_47ce {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.full-454e .popup-top-b510 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.gradient_43d1 {
  margin-top: 3rem;
}

.background_690c {
  width: 100%;
}

.slider_stone_a67d {
  background-color: #fef3c7;
}

.border-1299 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.accent-401d {
  margin: 3rem 0;
}

.panel-last-6207 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.shadow-05f9 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.shadow-05f9:hover {
  box-shadow: var(--shadow-lg);
}

.shadow-05f9.active_gas_6595 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.inner_9195 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.avatar-917b strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.avatar-917b span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.current-cd51 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.shadow-05f9 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.slow_2984 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.column_lower_9597 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.center_daa0 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.solid-f2ef {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.stone-8103 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.list_6198 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.menu-7572 {
  max-width: 900px;
  margin: 0 auto;
}

.label_a14d {
  margin: 2rem 0;
}

.east_fbd2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.east_fbd2 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.east_fbd2 summary::-webkit-details-marker {
  display: none;
}

.east_fbd2 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.short-23bc {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.east_fbd2[open] .short-23bc {
  transform: rotate(45deg);
}

.detail_top_200a {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.detail_top_200a p:last-child {
  margin-bottom: 0;
}

.form-7fcb {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.photo-3c92 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.primary-2e3b {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.primary-2e3b p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.primary-2e3b .prev-1831 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.complex_ff58 {
  max-width: 900px;
  margin: 0 auto;
}

.backdrop_motion_ecd4 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.focus-tall-e3ea {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.focus-tall-e3ea.fn-success-a813 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.box_6c58 {
  font-size: 3rem;
  line-height: 1;
}

.gas_9bf4 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.narrow_d679 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.silver_fede,
.image-054f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.silver_fede h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.image-054f h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.container-0888,
.header-c85e {
  margin: 1.5rem 0;
}

.container-0888 li,
.header-c85e li {
  margin-bottom: 1rem;
}

.up-9172 {
  margin: 3rem 0;
}

.row_static_8e41 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.row_static_8e41 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.row_static_8e41 ol {
  margin: 1rem 0;
}

.row_static_8e41 li {
  margin-bottom: 0.75rem;
}

.background_45de {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.panel-a198 {
  margin: 2rem 0;
}

.message_out_2747 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.tag_4a6c {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.hidden_4a3d {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.hot-36c4 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.grid-6b92 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.cool-cd19 {
  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;
}

.cool-cd19 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.fixed-266f {
  flex: 1;
}

.fixed-266f h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.blue_1d87 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.widget_down_99c5 p {
  margin-bottom: 1rem;
}

.row_plasma_27f4 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.chip_purple_b759 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.static-975d {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.static-975d a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.surface_78d7 h3 {
  margin-bottom: 1.5rem;
}

.notice_clean_6d12 {
  display: grid;
  gap: 2rem;
}

.photo_2e67 {
  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;
}

.photo_2e67 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.photo_2e67 h4 {
  margin: 0 0 0.25rem;
}

.photo_2e67 p {
  margin: 0;
  font-size: 0.9375rem;
}

.brown-fd57 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.hero_6f12 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.hero_6f12 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.hero_6f12 ul {
  margin: 1.5rem 0;
}

.hero_6f12 li {
  margin-bottom: 0.75rem;
}

.picture-simple-e432 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.nav-dark-b68c {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.thumbnail_0e36 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.disabled_solid_6378 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.disabled_solid_6378 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.pattern_liquid_780e {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.pattern_liquid_780e a {
  color: rgba(255, 255, 255, 0.8);
}

.bronze-34e6 {
  list-style: none;
}

.bronze-34e6 li {
  margin-bottom: 0.75rem;
}

.bronze-34e6 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.bronze-34e6 a:hover {
  color: white;
}

.middle_abe9 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.secondary-0855 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.north-45c5 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.glass-4552 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.tabs-450a {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .chip_hovered_81ce {
    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;
  }

  .first-ab40 {
    font-size: 1.5rem !important;
  }

  .rough_3280 {
    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 */
  .avatar_e779,
  .notification_dynamic_9823,
  .info-liquid-003b,
  .basic-2f7a,
  .inner_9195,
  .shadow-05f9,
  .detail_top_200a,
  .title-huge-a264,
  .gas_1d19,
  .bottom_a776 {
    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 */
  .yellow_42ba {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .picture_left_cb45 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .main-5b1e {
    flex-shrink: 0;
  }

  .fixed-266f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .fluid_2278,
  .item-e7fd {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .item-e7fd {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .secondary-dbd0 {
    display: none;
  }

  /* Show mobile actions */
  .sidebar-a24d {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .fixed-0dc2 {
    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;
  }

  .fixed-0dc2 svg {
    flex-shrink: 0;
  }

  .fixed-0dc2 .tooltip-7827 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .fixed-0dc2 .chip_2820 {
    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-dark-1c8d {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .slow-013d {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .fixed-0dc2:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .cold-be1d {
    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;
  }

  .cold-be1d.fn-active-a813 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .cold-be1d li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .cold-be1d li:last-child {
    border-bottom: none;
  }

  .cold-be1d a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .highlight_large_79f6 {
    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;
  }

  .highlight_large_79f6 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .highlight_large_79f6 li:last-child {
    border-bottom: none;
  }

  .highlight_large_79f6 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .list_bottom_cae5 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .item-pressed-36ed {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .bright_20f3,
  .popup_liquid_8857 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .bright_20f3 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .popup_liquid_8857 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .highlight_large_79f6.fn-active-a813 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .column_31b6 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .video_ef1f {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .pro_f4ad {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .paper-db4c {
    margin-top: 0;
  }

  /* Hero section */
  .paper-db4c {
    padding: 2rem 0 1.5rem;
  }

  .rough_3280 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .gas_1d19 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .wrapper_orange_4487 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .input-static-baad {
    max-width: 100%;
    border-radius: 8px;
  }

  .section-971a {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .image-fluid-d1de {
    padding: 1rem;
  }

  .hard_d83b {
    font-size: 1.5rem;
  }

  .up-1913 {
    font-size: 0.75rem;
  }

  .title-huge-a264 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .dirty-9d6e {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .dirty-9d6e .prev-1831 {
    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 */
  .text_04d4 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .pro_7b74 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .pagination_a7b6 {
    margin-bottom: 1rem;
  }

  /* Author */
  .new-1ae5 {
    flex-direction: column;
  }

  .cool-cd19 {
    flex-direction: column;
  }

  /* Quotes */
  .inner_9195 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .narrow_d679 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .hot-36c4 {
    flex-direction: column;
  }

  .hot-36c4 .prev-1831 {
    width: 100%;
  }

  /* Version comparison */
  .summary_stale_51d0 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .green-9fa0 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .thumbnail_0e36 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .north-45c5 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .grid-1e43,
  .logo_complex_721f,
  .shadow_hard_20c8,
  .background_690c,
  .gold-3f22,
  .tooltip-simple-ead0 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .grid-1e43 table,
  .logo_complex_721f table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .dark-e331 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .chip_hovered_81ce {
    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;
  }

  .first-ab40 {
    font-size: 1.25rem !important;
  }

  .rough_3280 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .video_ef1f {
    position: fixed;
  }

  .pro_f4ad {
    padding: 0.625rem 0;
  }

  .hovered_d389 img {
    height: 26px;
  }

  .highlight_large_79f6 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .cold-be1d {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .fixed-0dc2 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .fixed-0dc2 svg {
    width: 18px;
    height: 18px;
  }

  .fixed-0dc2 .tooltip-7827 {
    font-size: 0.7rem;
  }

  .fixed-0dc2 .chip_2820 {
    font-size: 0.65rem;
  }

  .bright_20f3,
  .popup_liquid_8857 {
    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, .chip_hovered_81ce, .thumbnail-mini-6ff3, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .wrapper_orange_4487 {
    padding: 1rem;
  }

  .section-971a {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .image-fluid-d1de {
    padding: 0.875rem;
  }

  .hard_d83b {
    font-size: 1.25rem;
  }

  .dirty-9d6e .prev-1831 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .rough_3280 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .prev-1831 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .avatar-purple-9452 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .pro_7b74 {
    padding: 1rem;
  }

  .pagination_a7b6 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .avatar_e779,
  .section_bright_4662,
  .text-wide-c99c,
  .disabled_wide_faff {
    padding: 1rem;
  }
}

@media print {
  .video_ef1f,
  .row-stale-9cb9,
  .column_31b6,
  .prev-1831,
  .nav-dark-b68c {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .chip_hovered_81ce {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.form-04bf {
  margin-bottom: 3rem;
  text-align: center;
}

.first-ab40 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.thumbnail_glass_c069 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.glass_10cc,
.picture_blue_5463 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.list-liquid-512f {
  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;
}

.list-liquid-512f:hover {
  transform: translateY(-5px);
}

.list-liquid-512f strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.list-liquid-512f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.background-clean-6a15 {
  margin: 3rem 0;
}

.gradient-13d3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.rough-8cf1 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.rough-8cf1:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.motion_ab41 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.banner_dynamic_bf3c {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.input-selected-ea7b {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.nav_easy_2d0a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.texture-white-5cdb {
  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;
}

.texture-white-5cdb:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.texture-white-5cdb.message-thick-fdf9 {
  border-left: 4px solid var(--primary-color);
}

.avatar_orange_6b28 {
  flex-shrink: 0;
}

.avatar_orange_6b28 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.mask-50e4 {
  flex: 1;
}

.mask-50e4 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-e664 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.grid-a751,
.logo_north_94c9,
.background-dim-6dc3 {
  margin-bottom: 1.5rem;
}

.grid-a751 h4,
.logo_north_94c9 h4,
.background-dim-6dc3 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.grid-a751 ul,
.logo_north_94c9 ul,
.background-dim-6dc3 ul {
  list-style: none;
  padding: 0;
}

.grid-a751 li,
.logo_north_94c9 li,
.background-dim-6dc3 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.grid-a751 li:before,
.logo_north_94c9 li:before,
.background-dim-6dc3 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.column-6b2b {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.column-6b2b 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;
}

.column-6b2b a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.small-444b { margin: 2rem 0; }
.dropdown-upper-5e3b { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.dropdown-upper-5e3b h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.background-north-47bb p { margin-bottom: 1rem; line-height: 1.7; }
.background-north-47bb strong { color: var(--text-primary); }
.background-north-47bb ul { list-style: none; padding-left: 0; }
.background-north-47bb ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.background-north-47bb ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.video_c887 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.secondary-4e0d { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.secondary-4e0d:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.purple-1c5d { font-size: 3rem; margin-bottom: 1rem; }
.secondary-4e0d h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.secondary-4e0d p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.detail-stale-55cb { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.detail-stale-55cb span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.pink-538e { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.panel-ffe0 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.chip-e31c { text-align: center; }
.module-narrow-4e47 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.south_a0f2 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.box_complex_8fc9 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.gallery-left-05ac { margin: 2rem 0; }
.clean-f53a { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.clean-f53a h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.clean-f53a p, .clean-f53a ul { line-height: 1.7; }
.clean-f53a ul { list-style: none; padding-left: 0; }
.clean-f53a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.clean-f53a ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.small-d1b4 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.pattern-3801 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.aside-1bf1 { text-align: center; }
.button_gas_b79a { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.last-49ce { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.modal_soft_5a57 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.column-dark-2221 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.slow_f218 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.slow_f218:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.slow_f218 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.slow_f218 p, .slow_f218 ul { line-height: 1.7; }
.slow_f218 ul { list-style: none; padding-left: 0; }
.slow_f218 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.slow_f218 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: b971 */
.ghost-box-c3 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.3;
}
