/* ============================================
   Modern SEO-Optimized Style for Research Article
   ============================================ */

/* === CSS Reset & Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette - Professional Research Theme */
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --secondary-color: #059669;
  --accent-color: #dc2626;
  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-tertiary: #f3f4f6;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  
  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Merriweather', Georgia, serif;
  
  /* Spacing */
  --container-width: 1200px;
  --section-padding: 5rem;
  --card-padding: 2rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Prevent horizontal overflow - Force word breaking */
img, video, iframe {
  max-width: 100%;
  height: auto;
}

pre, code {
  max-width: 100%;
  overflow-x: auto;
  word-wrap: break-word;
}

/* Force all text elements to break long words */
p, h1, h2, h3, h4, h5, h6, li, td, th, span, div, a, strong, em {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

/* Specific fix for long Indonesian compound words */
.row_6c04 p,
.left-083f,
.image-top-bb50,
.block-f9d0,
.copper-77ea,
.label-glass-4602,
.mask_last_f1c8,
.dirty-2327 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.message-133f {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.message-133f > *,
.active_94e1,
.row_6c04,
.picture-south-dcc8 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .message-133f {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .message-133f {
    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 === */
.backdrop-orange-896a {
  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 */
.backdrop-orange-896a.grid_medium_82d6 {
  box-shadow: var(--shadow-md);
}

.secondary_hard_49f8 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.section-ae01 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.slider_f155 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.media-14fd {
  display: none;
}

/* Hide mobile actions on desktop */
.column-active-3efc {
  display: none;
}

.sort_last_9ea5 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.sort_last_9ea5 a:hover,
.sort_last_9ea5 a.fn-active-3c7f {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.backdrop_red_af30 {
  margin-left: 1rem;
}

.down-cce5 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.frame-huge-c14c,
.tabs-bright-c762 {
  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;
}

.frame-huge-c14c {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.frame-huge-c14c: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;
}

.tabs-bright-c762 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.tabs-bright-c762: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;
}

.frame-huge-c14c svg,
.tabs-bright-c762 svg {
  flex-shrink: 0;
}

.input_clean_6321 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hidden-west-13b0 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.hidden-west-13b0::before,
.hidden-west-13b0::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.hidden-west-13b0::before {
  top: -7px;
}

.hidden-west-13b0::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.form_purple_c7f6 {
  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 === */
.menu_1f78 {
  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);
}

.small_ecd5 {
  margin: 0 0 2rem;
  text-align: center;
}

.banner-warm-473f {
  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;
}

.banner-warm-473f:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.backdrop_dirty_9d14 {
  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);
}

.backdrop_dirty_9d14 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.warm_776c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.old_700e {
  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;
}

.old_700e:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.popup_21af {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.overlay-b916 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.caption_copper_eb86 {
  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);
}

.caption_copper_eb86 .modal_new_f939 {
  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;
}

.caption_copper_eb86 .modal_new_f939 svg {
  flex-shrink: 0;
}

.caption_copper_eb86 .table_current_524d {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.caption_copper_eb86 .table_current_524d: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);
}

.caption_copper_eb86 .dim-3373 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.caption_copper_eb86 .dim-3373: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) {
  .menu_1f78 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .banner-warm-473f {
    max-width: 100%;
  }

  .warm_776c {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .old_700e {
    padding: 1rem;
  }

  .popup_21af {
    font-size: 1.5rem;
  }

  .overlay-b916 {
    font-size: 0.75rem;
  }

  .backdrop_dirty_9d14 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .caption_copper_eb86 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .caption_copper_eb86 .modal_new_f939 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .warm_776c {
    grid-template-columns: 1fr;
  }
}

.iron-67f4 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.soft-df16 {
  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-fast-6a2d {
  margin-bottom: 2.5rem;
}

.background_cf32 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.iron-67f4 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.copper_4f1f {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.banner_4e92 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.new_030e {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.outer_6db8 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.tooltip-basic-f9d5 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.in-d013 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.active-iron-f2c7 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.active-iron-f2c7 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.outline-dirty-9de6 {
  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);
}

.shade_plasma_fabd {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.tooltip_glass_cb0c {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.solid-64d4 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.light_9e5d {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.status-2620 {
  display: grid;
  gap: 1rem;
}

.dim_a76b {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.element-next-3d4d {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.component-thick-61ba {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.dropdown-10c7 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.aside_4956 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.backdrop-2193 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.backdrop-2193 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.left-083f {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.hovered-9981 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.link-b94d {
  display: grid;
  gap: 2rem;
}

.media_outer_67ea {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.banner_4e92 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.copper_4f1f {
  flex: 1;
}

.outer_6db8 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.outer_6db8 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.button_0a33 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
}

.tooltip-basic-f9d5 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.aside-4863 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.aside-4863 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.info_f563 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.info_f563 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.search-silver-79f0 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.search-silver-79f0 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.search-silver-79f0 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.search-silver-79f0 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.tooltip-3484 {
  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 === */
.sort_06e5 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.nav_6568 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.sidebar-dark-b596 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.highlight-full-b88a h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.highlight-full-b88a ol {
  list-style: none;
  counter-reset: toc-counter;
}

.highlight-full-b88a ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.highlight-full-b88a 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;
}

.highlight-full-b88a ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.highlight-full-b88a ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.row_6c04 {
  padding: 3rem 0 5rem;
}

.picture-south-dcc8 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.picture-south-dcc8.cool_4474 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.image-top-bb50 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.text-tiny-5a5c {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.center_9ced {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.center_9ced h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.prev-207d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.logo_dark_6753 {
  text-align: center;
}

.image_c7b3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.easy_7d84 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.short_85cf {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.label-glass-4602 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.block-f9d0 {
  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;
}

.block-f9d0 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.block-f9d0:hover {
  box-shadow: var(--shadow-lg);
}

.block-f9d0.secondary-e1d5 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.block-f9d0 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.block-f9d0 ul {
  margin: 1rem 0;
}

.block-f9d0 li {
  margin-bottom: 0.75rem;
}

.section-2893 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.module-fa01 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.module-fa01 a {
  font-weight: 600;
}

/* === Data Tables === */
.icon-tiny-eb50 {
  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;
}

.icon-tiny-eb50 table {
  width: 100%;
  min-width: 600px;
}

.icon-tiny-eb50 thead {
  background-color: var(--primary-color);
  color: white;
}

.icon-tiny-eb50 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.icon-tiny-eb50 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.icon-tiny-eb50 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.icon-tiny-eb50 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.layout_f19f {
  list-style: none;
  margin: 1.5rem 0;
}

.layout_f19f li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.layout_f19f li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.menu_smooth_3b18::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-3c7f::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 === */
.sidebar_new_baaa {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.main-3fbf {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.main-3fbf img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.main-3fbf strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.main-3fbf span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.sidebar_new_baaa blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.mask_last_f1c8 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.mask_last_f1c8::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.text_e960 {
  position: relative;
  margin-bottom: 3rem;
}

.surface_9ab9 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.surface_9ab9 .badge-clean-b9bc {
  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;
}

.section-7a4d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.section-7a4d h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.section-7a4d ul {
  margin: 1rem 0;
}

.section-7a4d li {
  margin-bottom: 0.75rem;
}

.out-6462 {
  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 === */
.carousel-169e {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.carousel-169e h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.component-clean-dccf {
  list-style: none;
  margin: 1.5rem 0;
}

.component-clean-dccf li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.component-clean-dccf a {
  font-weight: 600;
}

.filter_0b82 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.dirty-2327 {
  margin: 2.5rem 0;
}

.image_warm_39f6 {
  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;
}

.image_warm_39f6:hover {
  box-shadow: var(--shadow-lg);
}

.image_warm_39f6.progress-8f9b {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.border-active-f46b {
  flex-shrink: 0;
}

.border-active-f46b 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);
}

.preview_hard_e27c h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.fixed_d7e3,
.hero-fast-7b19,
.rough_b5fa {
  width: 100%;
  margin: 1.5rem 0;
}

.item_gas_9cfe {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.item_gas_9cfe strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.modal-6067 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.modal-6067 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.modal_dim_b547 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.modal_dim_b547 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.tertiary-complex-7cda {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.pattern-e76d {
  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;
}

.pattern-e76d:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pattern-e76d.in_c1f1 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.pattern-e76d .modal_orange_4410 {
  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;
}

.pattern-e76d h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.footer_8535 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.new_4ea8 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.new_4ea8 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.liquid-9178 {
  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 === */
.modal_new_f939 {
  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;
}

.table_current_524d {
  background-color: var(--primary-color);
  color: white;
}

.table_current_524d:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.dim-3373 {
  background-color: var(--text-secondary);
  color: white;
}

.dim-3373:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.video-fa40 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.video-fa40:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.shade-7c6e {
  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;
}

.shade-7c6e:hover {
  background-color: var(--primary-dark);
}

.menu_ed8b {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.middle_b7d5 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.block_1f99 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.first_af9f {
  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 === */
.out_4be0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.brown-9207 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.brown-9207 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.pink_0a09 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.column_15e0 {
  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;
}

.up-1c00 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.last_56d6 {
  list-style: none;
  counter-reset: rank-counter;
}

.last_56d6 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.last_56d6 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;
}

.small-5ba9 {
  list-style: none;
}

.small-5ba9 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.shadow-e799 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.article-d394 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.article-d394 .label-e509 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.article-d394 .info_current_2005 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.active-1a0a {
  margin-top: 3rem;
}

.blue_5738 {
  width: 100%;
}

.black-ce76 {
  background-color: #fef3c7;
}

.bronze_6481 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.overlay-e74f {
  margin: 3rem 0;
}

.red_fd09 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.thumbnail_e5b1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.thumbnail_e5b1:hover {
  box-shadow: var(--shadow-lg);
}

.thumbnail_e5b1.button_0f6c {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.menu_d7e2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.full-aa2e strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.full-aa2e span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.alert_dim_00b2 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.thumbnail_e5b1 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.icon-dynamic-847d {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.video-dim-4ccd {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.glass_bb29 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.hot-acda {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.shade-red-eced {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.pagination_motion_9480 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.summary-8230 {
  max-width: 900px;
  margin: 0 auto;
}

.tertiary_2336 {
  margin: 2rem 0;
}

.copper_1e7c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.copper_1e7c summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.copper_1e7c summary::-webkit-details-marker {
  display: none;
}

.copper_1e7c summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.focus-fresh-78fb {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.copper_1e7c[open] .focus-fresh-78fb {
  transform: rotate(45deg);
}

.green-48f0 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.green-48f0 p:last-child {
  margin-bottom: 0;
}

.alert_f4cb {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.text_454c {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.feature-in-1a57 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.feature-in-1a57 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.feature-in-1a57 .modal_new_f939 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.aside-easy-a477 {
  max-width: 900px;
  margin: 0 auto;
}

.status_bc35 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.form_2fa4 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.form_2fa4.fn-success-3c7f {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.notice-2740 {
  font-size: 3rem;
  line-height: 1;
}

.pagination-brown-80ba h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.input_93b2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.blue-662b,
.east-4782 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.blue-662b h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.east-4782 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.input_full_fb9f,
.footer_over_9c86 {
  margin: 1.5rem 0;
}

.input_full_fb9f li,
.footer_over_9c86 li {
  margin-bottom: 1rem;
}

.media_cold_222e {
  margin: 3rem 0;
}

.column-f4e4 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.column-f4e4 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.column-f4e4 ol {
  margin: 1rem 0;
}

.column-f4e4 li {
  margin-bottom: 0.75rem;
}

.border_purple_fa33 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.tag-outer-c203 {
  margin: 2rem 0;
}

.tall-a564 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.header-e331 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.module_glass_4e41 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.description_8050 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.form_e62a {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.tall_5009 {
  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;
}

.tall_5009 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.new_030e {
  flex: 1;
}

.new_030e h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.banner_narrow_c746 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.motion-1a7b p {
  margin-bottom: 1rem;
}

.notification_hovered_80fd {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.gradient_71ea {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.medium_8bd7 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.medium_8bd7 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.box_tiny_52c8 h3 {
  margin-bottom: 1.5rem;
}

.banner_d715 {
  display: grid;
  gap: 2rem;
}

.tag_huge_5796 {
  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;
}

.tag_huge_5796 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.tag_huge_5796 h4 {
  margin: 0 0 0.25rem;
}

.tag_huge_5796 p {
  margin: 0;
  font-size: 0.9375rem;
}

.hard-67b0 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.tooltip-1173 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.tooltip-1173 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.tooltip-1173 ul {
  margin: 1.5rem 0;
}

.tooltip-1173 li {
  margin-bottom: 0.75rem;
}

.message-baed {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.search_ed39 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.title_816d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.alert_a8cf h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.alert_a8cf p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.widget-old-678d {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.widget-old-678d a {
  color: rgba(255, 255, 255, 0.8);
}

.rough_48cf {
  list-style: none;
}

.rough_48cf li {
  margin-bottom: 0.75rem;
}

.rough_48cf a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.rough_48cf a:hover {
  color: white;
}

.surface_95d5 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.input_138a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.wood-1255 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.basic-9349 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.module_bronze_ecd5 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .message-133f {
    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;
  }

  .footer-f511 {
    font-size: 1.5rem !important;
  }

  .background_cf32 {
    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 */
  .block-f9d0,
  .copper-77ea,
  .section-7a4d,
  .preview_hard_e27c,
  .menu_d7e2,
  .thumbnail_e5b1,
  .green-48f0,
  .backdrop_dirty_9d14,
  .left-083f,
  .image-top-bb50 {
    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 */
  .iron-67f4 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .copper_4f1f {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .banner_4e92 {
    flex-shrink: 0;
  }

  .new_030e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .outer_6db8,
  .tooltip-basic-f9d5 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .tooltip-basic-f9d5 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .slider_f155 {
    display: none;
  }

  /* Show mobile actions */
  .column-active-3efc {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .fresh_c23e {
    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;
  }

  .fresh_c23e svg {
    flex-shrink: 0;
  }

  .fresh_c23e .green_7572 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .fresh_c23e .search-bright-3c68 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .hero_motion_f863 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .frame_3182 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .fresh_c23e:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .media-14fd {
    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;
  }

  .media-14fd.fn-active-3c7f {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .media-14fd li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .media-14fd li:last-child {
    border-bottom: none;
  }

  .media-14fd a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .sort_last_9ea5 {
    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;
  }

  .sort_last_9ea5 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .sort_last_9ea5 li:last-child {
    border-bottom: none;
  }

  .sort_last_9ea5 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .backdrop_red_af30 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .down-cce5 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .frame-huge-c14c,
  .tabs-bright-c762 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .frame-huge-c14c {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .tabs-bright-c762 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .sort_last_9ea5.fn-active-3c7f {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .input_clean_6321 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .backdrop-orange-896a {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .secondary_hard_49f8 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .form_purple_c7f6 {
    margin-top: 0;
  }

  /* Hero section */
  .form_purple_c7f6 {
    padding: 2rem 0 1.5rem;
  }

  .background_cf32 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .left-083f {
    font-size: 1rem;
  }

  /* Hero brand image */
  .menu_1f78 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .banner-warm-473f {
    max-width: 100%;
    border-radius: 8px;
  }

  .warm_776c {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .old_700e {
    padding: 1rem;
  }

  .popup_21af {
    font-size: 1.5rem;
  }

  .overlay-b916 {
    font-size: 0.75rem;
  }

  .backdrop_dirty_9d14 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .caption_copper_eb86 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .caption_copper_eb86 .modal_new_f939 {
    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 */
  .sidebar-dark-b596 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .image_warm_39f6 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .border-active-f46b {
    margin-bottom: 1rem;
  }

  /* Author */
  .media_outer_67ea {
    flex-direction: column;
  }

  .tall_5009 {
    flex-direction: column;
  }

  /* Quotes */
  .menu_d7e2 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .input_93b2 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .description_8050 {
    flex-direction: column;
  }

  .description_8050 .modal_new_f939 {
    width: 100%;
  }

  /* Version comparison */
  .tertiary-complex-7cda {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .out_4be0 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .title_816d {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .wood-1255 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .icon-tiny-eb50,
  .hero-fast-7b19,
  .steel-ef65,
  .blue_5738,
  .fixed_d7e3,
  .rough_b5fa {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .icon-tiny-eb50 table,
  .hero-fast-7b19 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .liquid-9178 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .message-133f {
    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;
  }

  .footer-f511 {
    font-size: 1.25rem !important;
  }

  .background_cf32 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .backdrop-orange-896a {
    position: fixed;
  }

  .secondary_hard_49f8 {
    padding: 0.625rem 0;
  }

  .section-ae01 img {
    height: 26px;
  }

  .sort_last_9ea5 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .media-14fd {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .fresh_c23e {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .fresh_c23e svg {
    width: 18px;
    height: 18px;
  }

  .fresh_c23e .green_7572 {
    font-size: 0.7rem;
  }

  .fresh_c23e .search-bright-3c68 {
    font-size: 0.65rem;
  }

  .frame-huge-c14c,
  .tabs-bright-c762 {
    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, .message-133f, .active_94e1, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .menu_1f78 {
    padding: 1rem;
  }

  .warm_776c {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .old_700e {
    padding: 0.875rem;
  }

  .popup_21af {
    font-size: 1.25rem;
  }

  .caption_copper_eb86 .modal_new_f939 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .background_cf32 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .modal_new_f939 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .menu_ed8b {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .image_warm_39f6 {
    padding: 1rem;
  }

  .border-active-f46b span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .block-f9d0,
  .simple_ca87,
  .gradient-ab64,
  .huge-788c {
    padding: 1rem;
  }
}

@media print {
  .backdrop-orange-896a,
  .sort_06e5,
  .input_clean_6321,
  .modal_new_f939,
  .search_ed39 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .message-133f {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.pagination_black_8d59 {
  margin-bottom: 3rem;
  text-align: center;
}

.footer-f511 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.section-dynamic-5d2f {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.basic-8b6b,
.wrapper-8a1a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-green-dc16 {
  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;
}

.feature-green-dc16:hover {
  transform: translateY(-5px);
}

.feature-green-dc16 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.feature-green-dc16 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.liquid_01c6 {
  margin: 3rem 0;
}

.section_eadc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.fresh_a6cf {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.fresh_a6cf:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.image-plasma-7462 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.shade-mini-8516 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.last_2004 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.iron_9f10 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.wood_0c51 {
  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;
}

.wood_0c51:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.wood_0c51.label_blue_55b1 {
  border-left: 4px solid var(--primary-color);
}

.easy-9e21 {
  flex-shrink: 0;
}

.easy-9e21 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.carousel-wide-498c {
  flex: 1;
}

.carousel-wide-498c h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.hovered_2c32 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.huge-2438,
.liquid-710b,
.hover-new-b846 {
  margin-bottom: 1.5rem;
}

.huge-2438 h4,
.liquid-710b h4,
.hover-new-b846 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.huge-2438 ul,
.liquid-710b ul,
.hover-new-b846 ul {
  list-style: none;
  padding: 0;
}

.huge-2438 li,
.liquid-710b li,
.hover-new-b846 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.huge-2438 li:before,
.liquid-710b li:before,
.hover-new-b846 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.current-cef5 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.current-cef5 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;
}

.current-cef5 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.gallery_solid_fdf2 { margin: 2rem 0; }
.over_5691 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.over_5691 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.brown_e5bf p { margin-bottom: 1rem; line-height: 1.7; }
.brown_e5bf strong { color: var(--text-primary); }
.brown_e5bf ul { list-style: none; padding-left: 0; }
.brown_e5bf ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.brown_e5bf ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.black_4d31 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.caption-selected-c6ad { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.caption-selected-c6ad:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.chip-46fe { font-size: 3rem; margin-bottom: 1rem; }
.caption-selected-c6ad h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.caption-selected-c6ad p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.last_7234 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.last_7234 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.thick-ece7 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.gallery-c10a { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.feature-4291 { text-align: center; }
.steel-66f5 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.fluid_2118 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.message-lower-956b { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.middle_5d31 { margin: 2rem 0; }
.label_advanced_68dc { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.label_advanced_68dc h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.label_advanced_68dc p, .label_advanced_68dc ul { line-height: 1.7; }
.label_advanced_68dc ul { list-style: none; padding-left: 0; }
.label_advanced_68dc ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.label_advanced_68dc ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.background_middle_f63f { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.title-old-a575 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.sidebar_f728 { text-align: center; }
.fluid-4b03 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.pink_7c5c { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.heading_ed9c { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.message_bronze_26fe { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.link-white-b7d2 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.link-white-b7d2:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.link-white-b7d2 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.link-white-b7d2 p, .link-white-b7d2 ul { line-height: 1.7; }
.link-white-b7d2 ul { list-style: none; padding-left: 0; }
.link-white-b7d2 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.link-white-b7d2 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: e158 */
.ghost-box-d8 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.2;
}
