/* ============================================
   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 */
.green_e802 p,
.stone_9180,
.up-a19b,
.modal_bdd9,
.sort_short_0711,
.card-east-4726,
.tiny-330a,
.modal-05e9 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.tertiary-dirty-12e5 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.tertiary-dirty-12e5 > *,
.selected-9784,
.green_e802,
.footer_out_9ff2 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .tertiary-dirty-12e5 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .tertiary-dirty-12e5 {
    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 === */
.caption-e8d9 {
  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 */
.caption-e8d9.component_dim_1df6 {
  box-shadow: var(--shadow-md);
}

.yellow_9523 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.link_301f img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.component-yellow-faa4 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.shade_9afc {
  display: none;
}

/* Hide mobile actions on desktop */
.silver-6134 {
  display: none;
}

.highlight_liquid_d5e7 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.highlight_liquid_d5e7 a:hover,
.highlight_liquid_d5e7 a.fn-active-aa9b {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.media-next-734d {
  margin-left: 1rem;
}

.fast_9d85 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.medium-ee3c,
.pressed-49b2 {
  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;
}

.medium-ee3c {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.medium-ee3c: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;
}

.pressed-49b2 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.pressed-49b2: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;
}

.medium-ee3c svg,
.pressed-49b2 svg {
  flex-shrink: 0;
}

.white-02cf {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.column-8bf8 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.column-8bf8::before,
.column-8bf8::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.column-8bf8::before {
  top: -7px;
}

.column-8bf8::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.surface_7215 {
  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 === */
.photo_fcbb {
  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);
}

.search-bc80 {
  margin: 0 0 2rem;
  text-align: center;
}

.tag_east_d55b {
  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;
}

.tag_east_d55b:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.outline-hovered-78b6 {
  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);
}

.outline-hovered-78b6 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.carousel-6512 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.paragraph-center-57c4 {
  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;
}

.paragraph-center-57c4:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.orange-c03b {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.mask-warm-fecf {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.tag_orange_cf0e {
  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);
}

.tag_orange_cf0e .hovered_6fc7 {
  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;
}

.tag_orange_cf0e .hovered_6fc7 svg {
  flex-shrink: 0;
}

.tag_orange_cf0e .pagination-motion-9f06 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.tag_orange_cf0e .pagination-motion-9f06: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);
}

.tag_orange_cf0e .gradient_be82 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.tag_orange_cf0e .gradient_be82: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) {
  .photo_fcbb {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .tag_east_d55b {
    max-width: 100%;
  }

  .carousel-6512 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .paragraph-center-57c4 {
    padding: 1rem;
  }

  .orange-c03b {
    font-size: 1.5rem;
  }

  .mask-warm-fecf {
    font-size: 0.75rem;
  }

  .outline-hovered-78b6 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .tag_orange_cf0e {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .tag_orange_cf0e .hovered_6fc7 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .carousel-6512 {
    grid-template-columns: 1fr;
  }
}

.status_inner_173e {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.lite-9912 {
  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 === */
.progress-ea14 {
  margin-bottom: 2.5rem;
}

.header_0341 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.status_inner_173e {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.widget-blue-57e3 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.button-middle-6660 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.small-1ddb {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.easy-77b5 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.rough_0872 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.accent-clean-072b {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.stone_3f24 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.stone_3f24 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.gradient-771b {
  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);
}

.layout-inner-0217 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.hero-simple-a900 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.outline_static_0f38 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.full-e2af {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.box_2e62 {
  display: grid;
  gap: 1rem;
}

.row-glass-1d0c {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.sidebar-8bb9 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.popup-9c58 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.button_5a22 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.paragraph-529e {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.row-1070 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.row-1070 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.stone_9180 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.nav-hot-834f {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.tooltip-over-56f3 {
  display: grid;
  gap: 2rem;
}

.center-32b0 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.button-middle-6660 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.widget-blue-57e3 {
  flex: 1;
}

.easy-77b5 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.easy-77b5 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.up_9464 {
  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;
}

.rough_0872 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.brown_f94c {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.brown_f94c span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.row-f0c5 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.row-f0c5 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.focus-b45d {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.focus-b45d strong {
  display: block;
  margin-bottom: 0.75rem;
}

.focus-b45d ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.focus-b45d li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.container_ca5c {
  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 === */
.description-pink-7449 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.component-9dd1 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.table-thick-4806 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.filter_large_f1c8 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.filter_large_f1c8 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.filter_large_f1c8 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.filter_large_f1c8 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;
}

.filter_large_f1c8 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.filter_large_f1c8 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.green_e802 {
  padding: 3rem 0 5rem;
}

.footer_out_9ff2 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.footer_out_9ff2.purple_b4aa {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.up-a19b {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.footer_tall_59b1 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.thumbnail_dd69 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.thumbnail_dd69 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.breadcrumb_7160 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.under_862b {
  text-align: center;
}

.primary_outer_b31d {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.detail_fast_b8cb {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.modal-inner-889c {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.card-east-4726 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.modal_bdd9 {
  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;
}

.modal_bdd9 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.modal_bdd9:hover {
  box-shadow: var(--shadow-lg);
}

.modal_bdd9.brown-2737 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.modal_bdd9 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.modal_bdd9 ul {
  margin: 1rem 0;
}

.modal_bdd9 li {
  margin-bottom: 0.75rem;
}

.clean-42fd {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.mini_7885 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.mini_7885 a {
  font-weight: 600;
}

/* === Data Tables === */
.advanced_61fe {
  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;
}

.advanced_61fe table {
  width: 100%;
  min-width: 600px;
}

.advanced_61fe thead {
  background-color: var(--primary-color);
  color: white;
}

.advanced_61fe th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.advanced_61fe td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.advanced_61fe tbody tr:hover {
  background-color: var(--bg-secondary);
}

.advanced_61fe tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.basic_3eac {
  list-style: none;
  margin: 1.5rem 0;
}

.basic_3eac li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.basic_3eac li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.paper-330a::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-aa9b::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 === */
.smooth-f725 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.container_1512 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.container_1512 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.container_1512 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.container_1512 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.smooth-f725 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.tiny-330a {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.tiny-330a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.focused-514d {
  position: relative;
  margin-bottom: 3rem;
}

.shadow_white_7393 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.shadow_white_7393 .simple_908f {
  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;
}

.active_6e39 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.active_6e39 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.active_6e39 ul {
  margin: 1rem 0;
}

.active_6e39 li {
  margin-bottom: 0.75rem;
}

.title_cold_b589 {
  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 === */
.message-a89e {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.message-a89e h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.left-3a2c {
  list-style: none;
  margin: 1.5rem 0;
}

.left-3a2c li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.left-3a2c a {
  font-weight: 600;
}

.tooltip-433f {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.modal-05e9 {
  margin: 2.5rem 0;
}

.paper-1991 {
  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;
}

.paper-1991:hover {
  box-shadow: var(--shadow-lg);
}

.paper-1991.south-2fd3 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.filter_under_a7b9 {
  flex-shrink: 0;
}

.filter_under_a7b9 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);
}

.logo_6f95 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.notice-bf54,
.banner_ed30,
.pro_5773 {
  width: 100%;
  margin: 1.5rem 0;
}

.static_ba61 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.static_ba61 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.gold-79de {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.gold-79de strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.over_e511 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.over_e511 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.progress_5c3a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.middle-8753 {
  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;
}

.middle-8753:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.middle-8753.primary-east-fdbe {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.middle-8753 .detail_b2c4 {
  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;
}

.middle-8753 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.popup-static-26db {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.pagination_mini_25c1 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.pagination_mini_25c1 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.layout_active_2f5a {
  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 === */
.hovered_6fc7 {
  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;
}

.pagination-motion-9f06 {
  background-color: var(--primary-color);
  color: white;
}

.pagination-motion-9f06:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.gradient_be82 {
  background-color: var(--text-secondary);
  color: white;
}

.gradient_be82:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.sidebar-hovered-b849 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.sidebar-hovered-b849:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.static_a72f {
  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;
}

.static_a72f:hover {
  background-color: var(--primary-dark);
}

.next_b297 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.background-lite-b783 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.gas_22f9 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.blue_c1af {
  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 === */
.tertiary-b261 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.cold_8ff3 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.cold_8ff3 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.notice-5b4b {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.fixed-3285 {
  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;
}

.feature_bb7c {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.accent-white-7ed3 {
  list-style: none;
  counter-reset: rank-counter;
}

.accent-white-7ed3 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.accent-white-7ed3 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;
}

.stale_08c8 {
  list-style: none;
}

.stale_08c8 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.caption_cold_f761 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.thumbnail-first-682a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.thumbnail-first-682a .outline-tiny-ae73 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.thumbnail-first-682a .huge-546b {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.section_9c83 {
  margin-top: 3rem;
}

.under_eb9e {
  width: 100%;
}

.heading_8359 {
  background-color: #fef3c7;
}

.action-2d4d {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.block_0c7b {
  margin: 3rem 0;
}

.brown-d442 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.hidden-446b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.hidden-446b:hover {
  box-shadow: var(--shadow-lg);
}

.hidden-446b.progress-8e9f {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.stone_959a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.element-981e strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.element-981e span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.logo-up-f7c8 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hidden-446b blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.main-2e40 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.table_action_717d {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.item-smooth-84b7 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.active_black_150c {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.upper_6a3f {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.slider-focused-1e78 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.copper-ae27 {
  max-width: 900px;
  margin: 0 auto;
}

.modal_fec6 {
  margin: 2rem 0;
}

.container-18bf {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.container-18bf summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.container-18bf summary::-webkit-details-marker {
  display: none;
}

.container-18bf summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.focused-c090 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.container-18bf[open] .focused-c090 {
  transform: rotate(45deg);
}

.video-bd9f {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.video-bd9f p:last-child {
  margin-bottom: 0;
}

.slow_9513 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.accent-motion-51e9 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.media_south_3a6a {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.media_south_3a6a p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.media_south_3a6a .hovered_6fc7 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.fresh-1489 {
  max-width: 900px;
  margin: 0 auto;
}

.hidden_action_d80f {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.info-4e5c {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.info-4e5c.fn-success-aa9b {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.search-lite-048f {
  font-size: 3rem;
  line-height: 1;
}

.hovered_ec00 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.video-683a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.lower_c869,
.chip-bb8f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.lower_c869 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.chip-bb8f h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.column-small-c3b3,
.dynamic-3f01 {
  margin: 1.5rem 0;
}

.column-small-c3b3 li,
.dynamic-3f01 li {
  margin-bottom: 1rem;
}

.box_b061 {
  margin: 3rem 0;
}

.hover-warm-48c2 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.hover-warm-48c2 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.hover-warm-48c2 ol {
  margin: 1rem 0;
}

.hover-warm-48c2 li {
  margin-bottom: 0.75rem;
}

.highlight-5f34 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.tag-be4f {
  margin: 2rem 0;
}

.heading_7026 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.article_58c9 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.selected-038f {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.liquid_1f1c {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.block-south-b7da {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.alert_small_8234 {
  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;
}

.alert_small_8234 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.small-1ddb {
  flex: 1;
}

.small-1ddb h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.focus-motion-8562 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.mask-9dd5 p {
  margin-bottom: 1rem;
}

.chip-center-2b0e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.fast_3caf {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.center_d4f6 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.center_d4f6 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.border-861d h3 {
  margin-bottom: 1.5rem;
}

.link-static-6db0 {
  display: grid;
  gap: 2rem;
}

.filter_selected_faeb {
  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;
}

.filter_selected_faeb img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.filter_selected_faeb h4 {
  margin: 0 0 0.25rem;
}

.filter_selected_faeb p {
  margin: 0;
  font-size: 0.9375rem;
}

.layout_d348 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.paragraph-0f1d {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.paragraph-0f1d h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.paragraph-0f1d ul {
  margin: 1.5rem 0;
}

.paragraph-0f1d li {
  margin-bottom: 0.75rem;
}

.notice-selected-ef5f {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.column_warm_58e2 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.short_a32f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.surface_brown_80b3 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.surface_brown_80b3 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.main-78da {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.main-78da a {
  color: rgba(255, 255, 255, 0.8);
}

.gold-765d {
  list-style: none;
}

.gold-765d li {
  margin-bottom: 0.75rem;
}

.gold-765d a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.gold-765d a:hover {
  color: white;
}

.icon-south-36f4 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.main-5ac6 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.stone_85d3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.box-pressed-41a9 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.focused-43f0 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .tertiary-dirty-12e5 {
    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;
  }

  .old-5c3c {
    font-size: 1.5rem !important;
  }

  .header_0341 {
    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 */
  .modal_bdd9,
  .sort_short_0711,
  .active_6e39,
  .logo_6f95,
  .stone_959a,
  .hidden-446b,
  .video-bd9f,
  .outline-hovered-78b6,
  .stone_9180,
  .up-a19b {
    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 */
  .status_inner_173e {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .widget-blue-57e3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .button-middle-6660 {
    flex-shrink: 0;
  }

  .small-1ddb {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .easy-77b5,
  .rough_0872 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .rough_0872 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .component-yellow-faa4 {
    display: none;
  }

  /* Show mobile actions */
  .silver-6134 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .stale-f1e6 {
    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;
  }

  .stale-f1e6 svg {
    flex-shrink: 0;
  }

  .stale-f1e6 .sort-2f42 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .stale-f1e6 .sidebar_stone_40f0 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .panel_next_e370 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .cold_1bce {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .stale-f1e6:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .shade_9afc {
    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;
  }

  .shade_9afc.fn-active-aa9b {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .shade_9afc li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .shade_9afc li:last-child {
    border-bottom: none;
  }

  .shade_9afc a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .highlight_liquid_d5e7 {
    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_liquid_d5e7 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .highlight_liquid_d5e7 li:last-child {
    border-bottom: none;
  }

  .highlight_liquid_d5e7 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .media-next-734d {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .fast_9d85 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .medium-ee3c,
  .pressed-49b2 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .medium-ee3c {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .pressed-49b2 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .highlight_liquid_d5e7.fn-active-aa9b {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .white-02cf {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .caption-e8d9 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .yellow_9523 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .surface_7215 {
    margin-top: 0;
  }

  /* Hero section */
  .surface_7215 {
    padding: 2rem 0 1.5rem;
  }

  .header_0341 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .stone_9180 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .photo_fcbb {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .tag_east_d55b {
    max-width: 100%;
    border-radius: 8px;
  }

  .carousel-6512 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .paragraph-center-57c4 {
    padding: 1rem;
  }

  .orange-c03b {
    font-size: 1.5rem;
  }

  .mask-warm-fecf {
    font-size: 0.75rem;
  }

  .outline-hovered-78b6 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .tag_orange_cf0e {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .tag_orange_cf0e .hovered_6fc7 {
    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 */
  .table-thick-4806 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .paper-1991 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .filter_under_a7b9 {
    margin-bottom: 1rem;
  }

  /* Author */
  .center-32b0 {
    flex-direction: column;
  }

  .alert_small_8234 {
    flex-direction: column;
  }

  /* Quotes */
  .stone_959a {
    flex-direction: column;
  }

  /* Pros/Cons */
  .video-683a {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .liquid_1f1c {
    flex-direction: column;
  }

  .liquid_1f1c .hovered_6fc7 {
    width: 100%;
  }

  /* Version comparison */
  .progress_5c3a {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .tertiary-b261 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .short_a32f {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stone_85d3 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .advanced_61fe,
  .banner_ed30,
  .content_dirty_f176,
  .under_eb9e,
  .notice-bf54,
  .pro_5773 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .advanced_61fe table,
  .banner_ed30 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .layout_active_2f5a {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .tertiary-dirty-12e5 {
    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;
  }

  .old-5c3c {
    font-size: 1.25rem !important;
  }

  .header_0341 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .caption-e8d9 {
    position: fixed;
  }

  .yellow_9523 {
    padding: 0.625rem 0;
  }

  .link_301f img {
    height: 26px;
  }

  .highlight_liquid_d5e7 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .shade_9afc {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .stale-f1e6 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .stale-f1e6 svg {
    width: 18px;
    height: 18px;
  }

  .stale-f1e6 .sort-2f42 {
    font-size: 0.7rem;
  }

  .stale-f1e6 .sidebar_stone_40f0 {
    font-size: 0.65rem;
  }

  .medium-ee3c,
  .pressed-49b2 {
    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, .tertiary-dirty-12e5, .selected-9784, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .photo_fcbb {
    padding: 1rem;
  }

  .carousel-6512 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .paragraph-center-57c4 {
    padding: 0.875rem;
  }

  .orange-c03b {
    font-size: 1.25rem;
  }

  .tag_orange_cf0e .hovered_6fc7 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .header_0341 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .hovered_6fc7 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .next_b297 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .paper-1991 {
    padding: 1rem;
  }

  .filter_under_a7b9 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .modal_bdd9,
  .filter-easy-737b,
  .menu_east_6f18,
  .hard_36b9 {
    padding: 1rem;
  }
}

@media print {
  .caption-e8d9,
  .description-pink-7449,
  .white-02cf,
  .hovered_6fc7,
  .column_warm_58e2 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .tertiary-dirty-12e5 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.slider_8104 {
  margin-bottom: 3rem;
  text-align: center;
}

.old-5c3c {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.up-9ad0 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.row_962b,
.alert-inner-372f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.menu-0aee {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.menu-0aee:hover {
  transform: translateY(-5px);
}

.menu-0aee strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.menu-0aee span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.fast_84ca {
  margin: 3rem 0;
}

.badge-paper-81eb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.column-3cf1 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.column-3cf1:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.brown-fe69 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tabs-dynamic-4691 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.modal-e6fb {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.clean-671a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.card_current_f334 {
  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;
}

.card_current_f334:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.card_current_f334.list_47cc {
  border-left: 4px solid var(--primary-color);
}

.active-a41b {
  flex-shrink: 0;
}

.active-a41b svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.left_709b {
  flex: 1;
}

.left_709b h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.aside_6a48 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.cold-d7d6,
.first-ab18,
.badge_gold_1bbf {
  margin-bottom: 1.5rem;
}

.cold-d7d6 h4,
.first-ab18 h4,
.badge_gold_1bbf h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cold-d7d6 ul,
.first-ab18 ul,
.badge_gold_1bbf ul {
  list-style: none;
  padding: 0;
}

.cold-d7d6 li,
.first-ab18 li,
.badge_gold_1bbf li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.cold-d7d6 li:before,
.first-ab18 li:before,
.badge_gold_1bbf li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.aside_middle_0cff {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.aside_middle_0cff 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;
}

.aside_middle_0cff a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.outline_eb80 { margin: 2rem 0; }
.secondary_680d { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.secondary_680d h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.right_21a1 p { margin-bottom: 1rem; line-height: 1.7; }
.right_21a1 strong { color: var(--text-primary); }
.right_21a1 ul { list-style: none; padding-left: 0; }
.right_21a1 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.right_21a1 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.chip-81f6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.caption-stone-7ada { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.caption-stone-7ada:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.accent-e701 { font-size: 3rem; margin-bottom: 1rem; }
.caption-stone-7ada h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.caption-stone-7ada p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.tag-fast-d6ee { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.tag-fast-d6ee span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.dropdown_pro_8c89 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.action_1308 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.media_gold_df16 { text-align: center; }
.full-e670 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.large-cb78 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.chip_d595 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.shadow-58ec { margin: 2rem 0; }
.box_0320 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.box_0320 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.box_0320 p, .box_0320 ul { line-height: 1.7; }
.box_0320 ul { list-style: none; padding-left: 0; }
.box_0320 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.box_0320 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.frame_4f50 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.smooth-5dbb { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.box-0d55 { text-align: center; }
.row_edb0 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.box-bb4f { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.tooltip-new-45e1 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.accent_green_f37e { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.card-silver-c901 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.card-silver-c901:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.card-silver-c901 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.card-silver-c901 p, .card-silver-c901 ul { line-height: 1.7; }
.card-silver-c901 ul { list-style: none; padding-left: 0; }
.card-silver-c901 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.card-silver-c901 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 645b */
.ghost-box-l2 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.1;
}
