/* ============================================
   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 */
.container-0a9b p,
.nav-plasma-9fdf,
.box-e162,
.footer_orange_01f9,
.label_4496,
.gallery-right-c41a,
.pagination_a2ab,
.fixed-387e {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.yellow_d81e {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.yellow_d81e > *,
.element-f1e9,
.container-0a9b,
.soft_3df4 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .yellow_d81e {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .yellow_d81e {
    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 === */
.feature-e7c4 {
  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 */
.feature-e7c4.element-huge-f1e1 {
  box-shadow: var(--shadow-md);
}

.logo_f621 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.north-0315 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.hard_e4b8 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.item_8993 {
  display: none;
}

/* Hide mobile actions on desktop */
.under-baf5 {
  display: none;
}

.thick-34e4 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.thick-34e4 a:hover,
.thick-34e4 a.fn-active-f091 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.text_warm_a6d5 {
  margin-left: 1rem;
}

.north_b2b8 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.text_steel_cd50,
.menu-5a72 {
  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;
}

.text_steel_cd50 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.text_steel_cd50: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;
}

.menu-5a72 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.menu-5a72: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;
}

.text_steel_cd50 svg,
.menu-5a72 svg {
  flex-shrink: 0;
}

.feature-0b80 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hover-in-5438 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.hover-in-5438::before,
.hover-in-5438::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.hover-in-5438::before {
  top: -7px;
}

.hover-in-5438::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.detail_upper_f1a6 {
  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 === */
.hovered-ad3b {
  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);
}

.tag_basic_cfa5 {
  margin: 0 0 2rem;
  text-align: center;
}

.form_easy_6957 {
  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;
}

.form_easy_6957:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.table_6bbe {
  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);
}

.table_6bbe strong {
  color: var(--primary-color);
  font-weight: 700;
}

.status_003a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.tooltip_c364 {
  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;
}

.tooltip_c364:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.title_solid_bdc6 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.layout_4ee4 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.main_right_ed7e {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.main_right_ed7e .hero_first_3818 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.main_right_ed7e .hero_first_3818 svg {
  flex-shrink: 0;
}

.main_right_ed7e .breadcrumb-purple-016e {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.main_right_ed7e .breadcrumb-purple-016e:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a8a 100%);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

.main_right_ed7e .aside_upper_93c4 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.main_right_ed7e .aside_upper_93c4: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) {
  .hovered-ad3b {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .form_easy_6957 {
    max-width: 100%;
  }

  .status_003a {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .tooltip_c364 {
    padding: 1rem;
  }

  .title_solid_bdc6 {
    font-size: 1.5rem;
  }

  .layout_4ee4 {
    font-size: 0.75rem;
  }

  .table_6bbe {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .main_right_ed7e {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .main_right_ed7e .hero_first_3818 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .status_003a {
    grid-template-columns: 1fr;
  }
}

.summary-full-0a22 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hover_copper_1cc8 {
  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 === */
.image-center-5b18 {
  margin-bottom: 2.5rem;
}

.notification-213c {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.summary-full-0a22 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.popup_bd0c {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.outer_c940 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.popup_advanced_b4c0 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.bright-9bf2 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.stone-d3ca {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.shadow_blue_b75c {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.row_15c9 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.row_15c9 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.thick_9b4c {
  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);
}

.disabled_copper_b64c {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.panel-f04b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.label-f07f {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.panel_2b2c {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.media_9c34 {
  display: grid;
  gap: 1rem;
}

.element_basic_04ea {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.texture-down-4f19 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.rough-a971 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.item-a7e9 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.search-168f {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.outline-fluid-68f6 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.outline-fluid-68f6 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.nav-plasma-9fdf {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.picture_plasma_a6f9 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.carousel_fb67 {
  display: grid;
  gap: 2rem;
}

.caption_bronze_607e {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.outer_c940 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.popup_bd0c {
  flex: 1;
}

.bright-9bf2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.bright-9bf2 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.secondary-bronze-52c6 {
  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;
}

.stone-d3ca {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.bright_6c27 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.bright_6c27 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.box-short-fd68 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.box-short-fd68 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.section-black-68d8 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.section-black-68d8 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.section-black-68d8 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.section-black-68d8 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.icon_small_d993 {
  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 === */
.rough_d236 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.gold-fd33 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.stone_9154 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.fixed-9c4b h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.fixed-9c4b ol {
  list-style: none;
  counter-reset: toc-counter;
}

.fixed-9c4b ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.fixed-9c4b 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;
}

.fixed-9c4b ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.fixed-9c4b ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.container-0a9b {
  padding: 3rem 0 5rem;
}

.soft_3df4 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.soft_3df4.under-30cf {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.box-e162 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.layout-7a2d {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.focus_e9c7 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.focus_e9c7 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.wrapper-98a3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.overlay_c97a {
  text-align: center;
}

.hover-lite-835a {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.filter_9bf1 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.glass_ae85 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.gallery-right-c41a {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.footer_orange_01f9 {
  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;
}

.footer_orange_01f9 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer_orange_01f9:hover {
  box-shadow: var(--shadow-lg);
}

.footer_orange_01f9.progress_dynamic_142c {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.footer_orange_01f9 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.footer_orange_01f9 ul {
  margin: 1rem 0;
}

.footer_orange_01f9 li {
  margin-bottom: 0.75rem;
}

.hover_wood_74ed {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.gold-7bb7 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.gold-7bb7 a {
  font-weight: 600;
}

/* === Data Tables === */
.tag_f266 {
  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;
}

.tag_f266 table {
  width: 100%;
  min-width: 600px;
}

.tag_f266 thead {
  background-color: var(--primary-color);
  color: white;
}

.tag_f266 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.tag_f266 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.tag_f266 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.tag_f266 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.primary-bright-ce52 {
  list-style: none;
  margin: 1.5rem 0;
}

.primary-bright-ce52 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.primary-bright-ce52 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.center_272b::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-f091::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 === */
.paragraph-4cfb {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.carousel_yellow_3af4 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.carousel_yellow_3af4 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.carousel_yellow_3af4 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.carousel_yellow_3af4 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.paragraph-4cfb blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.pagination_a2ab {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.pagination_a2ab::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.card-95e1 {
  position: relative;
  margin-bottom: 3rem;
}

.huge_e519 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.huge_e519 .outer-543a {
  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;
}

.orange-7e29 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.orange-7e29 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.orange-7e29 ul {
  margin: 1rem 0;
}

.orange-7e29 li {
  margin-bottom: 0.75rem;
}

.video-east-3f92 {
  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 === */
.caption_50c4 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.caption_50c4 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.aside-934c {
  list-style: none;
  margin: 1.5rem 0;
}

.aside-934c li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.aside-934c a {
  font-weight: 600;
}

.active_fb74 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.fixed-387e {
  margin: 2.5rem 0;
}

.layout-3e5f {
  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;
}

.layout-3e5f:hover {
  box-shadow: var(--shadow-lg);
}

.layout-3e5f.row_lite_e954 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.alert-d5b2 {
  flex-shrink: 0;
}

.alert-d5b2 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);
}

.under_ab8b h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.feature-7440,
.info-21dd,
.notification-dynamic-03c7 {
  width: 100%;
  margin: 1.5rem 0;
}

.detail_28b0 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.detail_28b0 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.modal-easy-a1ef {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.modal-easy-a1ef strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.sidebar_dfd4 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.sidebar_dfd4 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.text-white-406e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.cool_ea81 {
  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;
}

.cool_ea81:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.cool_ea81.liquid-47e1 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.cool_ea81 .active_small_d543 {
  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;
}

.cool_ea81 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.search-ef61 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.brown-3166 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.brown-3166 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.red-aa41 {
  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 === */
.hero_first_3818 {
  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;
}

.breadcrumb-purple-016e {
  background-color: var(--primary-color);
  color: white;
}

.breadcrumb-purple-016e:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.aside_upper_93c4 {
  background-color: var(--text-secondary);
  color: white;
}

.aside_upper_93c4:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.badge_57f5 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.badge_57f5:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.focused-6b31 {
  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;
}

.focused-6b31:hover {
  background-color: var(--primary-dark);
}

.table_4a1f {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.outer_93d5 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.container_984d {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.filter_0c82 {
  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 === */
.disabled_dim_132c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.background-brown-8d76 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.background-brown-8d76 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.component-4469 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.sort-dim-fa85 {
  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;
}

.stone_b21b {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.pattern-smooth-33d5 {
  list-style: none;
  counter-reset: rank-counter;
}

.pattern-smooth-33d5 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.pattern-smooth-33d5 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;
}

.input_center_ac4a {
  list-style: none;
}

.input_center_ac4a li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.button-91e5 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.disabled-a050 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.disabled-a050 .over_52fa {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.disabled-a050 .last_1a95 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.grid-bb79 {
  margin-top: 3rem;
}

.warm_e4b9 {
  width: 100%;
}

.texture-e268 {
  background-color: #fef3c7;
}

.column_447a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.thumbnail_d5ba {
  margin: 3rem 0;
}

.surface-d50e {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.red-c359 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.red-c359:hover {
  box-shadow: var(--shadow-lg);
}

.red-c359.tag_mini_0226 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.background-static-33c2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.gas-7253 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.gas-7253 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer_left_461b {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.red-c359 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.banner-last-639d {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.chip-warm-f67d {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.small-4ebc {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.active_a9bf {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.right_1fb5 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.static_aea1 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.texture-action-af76 {
  max-width: 900px;
  margin: 0 auto;
}

.notification_hovered_5acf {
  margin: 2rem 0;
}

.secondary-copper-dc53 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.secondary-copper-dc53 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.secondary-copper-dc53 summary::-webkit-details-marker {
  display: none;
}

.secondary-copper-dc53 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.pressed_32e6 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.secondary-copper-dc53[open] .pressed_32e6 {
  transform: rotate(45deg);
}

.filter-lower-7662 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.filter-lower-7662 p:last-child {
  margin-bottom: 0;
}

.tall-1706 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.basic-0728 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.top-91ee {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.top-91ee p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.top-91ee .hero_first_3818 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.slider-in-9836 {
  max-width: 900px;
  margin: 0 auto;
}

.active_2929 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.brown_bc02 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.brown_bc02.fn-success-f091 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.accent_orange_5ee2 {
  font-size: 3rem;
  line-height: 1;
}

.block_stale_3fd4 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.short-2cdf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.alert_fdd8,
.detail_3556 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.alert_fdd8 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.detail_3556 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.accent-795a,
.clean_10c5 {
  margin: 1.5rem 0;
}

.accent-795a li,
.clean_10c5 li {
  margin-bottom: 1rem;
}

.alert-pink-8dff {
  margin: 3rem 0;
}

.border-dirty-30a6 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.border-dirty-30a6 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.border-dirty-30a6 ol {
  margin: 1rem 0;
}

.border-dirty-30a6 li {
  margin-bottom: 0.75rem;
}

.hidden-fluid-85d3 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.secondary-motion-06ee {
  margin: 2rem 0;
}

.avatar_cold_7774 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.pattern-ddec {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.out_eb7b {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.shadow-bright-3715 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.left-c6c0 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.badge-easy-e8b8 {
  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;
}

.badge-easy-e8b8 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.popup_advanced_b4c0 {
  flex: 1;
}

.popup_advanced_b4c0 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.layout_a89d {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.middle-96df p {
  margin-bottom: 1rem;
}

.dropdown_3dd0 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.tag_d8ec {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.wrapper-north-c8e6 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.wrapper-north-c8e6 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.right_9136 h3 {
  margin-bottom: 1.5rem;
}

.search_complex_cadf {
  display: grid;
  gap: 2rem;
}

.blue-1c84 {
  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;
}

.blue-1c84 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.blue-1c84 h4 {
  margin: 0 0 0.25rem;
}

.blue-1c84 p {
  margin: 0;
  font-size: 0.9375rem;
}

.prev_6408 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.sort_44d6 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.sort_44d6 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.sort_44d6 ul {
  margin: 1.5rem 0;
}

.sort_44d6 li {
  margin-bottom: 0.75rem;
}

.basic_b52a {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.fluid_18a8 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.fresh_797a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.secondary-bright-03ff h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.secondary-bright-03ff p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.mask-paper-b0cb {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.mask-paper-b0cb a {
  color: rgba(255, 255, 255, 0.8);
}

.white_eb2e {
  list-style: none;
}

.white_eb2e li {
  margin-bottom: 0.75rem;
}

.white_eb2e a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.white_eb2e a:hover {
  color: white;
}

.pressed_3330 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.notice_down_1d3a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.east_bbf8 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.link_tiny_49f2 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.smooth-6887 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .yellow_d81e {
    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;
  }

  .aside-e441 {
    font-size: 1.5rem !important;
  }

  .notification-213c {
    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 */
  .footer_orange_01f9,
  .label_4496,
  .orange-7e29,
  .under_ab8b,
  .background-static-33c2,
  .red-c359,
  .filter-lower-7662,
  .table_6bbe,
  .nav-plasma-9fdf,
  .box-e162 {
    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 */
  .summary-full-0a22 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .popup_bd0c {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .outer_c940 {
    flex-shrink: 0;
  }

  .popup_advanced_b4c0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .bright-9bf2,
  .stone-d3ca {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .stone-d3ca {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .hard_e4b8 {
    display: none;
  }

  /* Show mobile actions */
  .under-baf5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .outer_67a3 {
    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;
  }

  .outer_67a3 svg {
    flex-shrink: 0;
  }

  .outer_67a3 .slow-c918 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .outer_67a3 .pattern-dirty-e67b {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .wrapper_4091 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .cold_1010 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .outer_67a3:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .item_8993 {
    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;
  }

  .item_8993.fn-active-f091 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .item_8993 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .item_8993 li:last-child {
    border-bottom: none;
  }

  .item_8993 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .thick-34e4 {
    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;
  }

  .thick-34e4 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .thick-34e4 li:last-child {
    border-bottom: none;
  }

  .thick-34e4 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .text_warm_a6d5 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .north_b2b8 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .text_steel_cd50,
  .menu-5a72 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .text_steel_cd50 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .menu-5a72 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .thick-34e4.fn-active-f091 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .feature-0b80 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .feature-e7c4 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .logo_f621 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .detail_upper_f1a6 {
    margin-top: 0;
  }

  /* Hero section */
  .detail_upper_f1a6 {
    padding: 2rem 0 1.5rem;
  }

  .notification-213c {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .nav-plasma-9fdf {
    font-size: 1rem;
  }

  /* Hero brand image */
  .hovered-ad3b {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .form_easy_6957 {
    max-width: 100%;
    border-radius: 8px;
  }

  .status_003a {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .tooltip_c364 {
    padding: 1rem;
  }

  .title_solid_bdc6 {
    font-size: 1.5rem;
  }

  .layout_4ee4 {
    font-size: 0.75rem;
  }

  .table_6bbe {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .main_right_ed7e {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .main_right_ed7e .hero_first_3818 {
    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 */
  .stone_9154 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .layout-3e5f {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .alert-d5b2 {
    margin-bottom: 1rem;
  }

  /* Author */
  .caption_bronze_607e {
    flex-direction: column;
  }

  .badge-easy-e8b8 {
    flex-direction: column;
  }

  /* Quotes */
  .background-static-33c2 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .short-2cdf {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .shadow-bright-3715 {
    flex-direction: column;
  }

  .shadow-bright-3715 .hero_first_3818 {
    width: 100%;
  }

  /* Version comparison */
  .text-white-406e {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .disabled_dim_132c {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .fresh_797a {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .east_bbf8 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .tag_f266,
  .info-21dd,
  .dropdown_fixed_4861,
  .warm_e4b9,
  .feature-7440,
  .notification-dynamic-03c7 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tag_f266 table,
  .info-21dd table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .red-aa41 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .yellow_d81e {
    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;
  }

  .aside-e441 {
    font-size: 1.25rem !important;
  }

  .notification-213c {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .feature-e7c4 {
    position: fixed;
  }

  .logo_f621 {
    padding: 0.625rem 0;
  }

  .north-0315 img {
    height: 26px;
  }

  .thick-34e4 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .item_8993 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .outer_67a3 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .outer_67a3 svg {
    width: 18px;
    height: 18px;
  }

  .outer_67a3 .slow-c918 {
    font-size: 0.7rem;
  }

  .outer_67a3 .pattern-dirty-e67b {
    font-size: 0.65rem;
  }

  .text_steel_cd50,
  .menu-5a72 {
    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, .yellow_d81e, .element-f1e9, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .hovered-ad3b {
    padding: 1rem;
  }

  .status_003a {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .tooltip_c364 {
    padding: 0.875rem;
  }

  .title_solid_bdc6 {
    font-size: 1.25rem;
  }

  .main_right_ed7e .hero_first_3818 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .notification-213c {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .hero_first_3818 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .table_4a1f {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .layout-3e5f {
    padding: 1rem;
  }

  .alert-d5b2 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .footer_orange_01f9,
  .input-gold-1c6e,
  .iron_f7c6,
  .pattern_6c70 {
    padding: 1rem;
  }
}

@media print {
  .feature-e7c4,
  .rough_d236,
  .feature-0b80,
  .hero_first_3818,
  .fluid_18a8 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .yellow_d81e {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.shade-yellow-7853 {
  margin-bottom: 3rem;
  text-align: center;
}

.aside-e441 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.light_4ea3 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.motion_3884,
.hot-e3c4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.smooth-6431 {
  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;
}

.smooth-6431:hover {
  transform: translateY(-5px);
}

.smooth-6431 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.smooth-6431 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.notice_391f {
  margin: 3rem 0;
}

.main_black_a86f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.widget_0cd8 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.widget_0cd8:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.item_cold_0489 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.notice_cb44 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.border_selected_f3c8 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.wrapper_14d9 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.label_938d {
  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;
}

.label_938d:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.label_938d.action_b553 {
  border-left: 4px solid var(--primary-color);
}

.footer-pink-89e4 {
  flex-shrink: 0;
}

.footer-pink-89e4 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.feature-stone-8eba {
  flex: 1;
}

.feature-stone-8eba h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.shade-stale-9e56 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.outer-7605,
.hidden-soft-e742,
.dirty_a0ef {
  margin-bottom: 1.5rem;
}

.outer-7605 h4,
.hidden-soft-e742 h4,
.dirty_a0ef h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.outer-7605 ul,
.hidden-soft-e742 ul,
.dirty_a0ef ul {
  list-style: none;
  padding: 0;
}

.outer-7605 li,
.hidden-soft-e742 li,
.dirty_a0ef li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.outer-7605 li:before,
.hidden-soft-e742 li:before,
.dirty_a0ef li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.rough-4c57 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.rough-4c57 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;
}

.rough-4c57 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.slow_0524 { margin: 2rem 0; }
.button-ba71 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.button-ba71 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.title-3be0 p { margin-bottom: 1rem; line-height: 1.7; }
.title-3be0 strong { color: var(--text-primary); }
.title-3be0 ul { list-style: none; padding-left: 0; }
.title-3be0 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.title-3be0 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.slider-b8b4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.stale_f91d { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.stale_f91d:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.thumbnail-in-ba5c { font-size: 3rem; margin-bottom: 1rem; }
.stale_f91d h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.stale_f91d p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.hidden-1baf { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.hidden-1baf span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.hard_6996 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.purple-9a90 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.left-b624 { text-align: center; }
.badge-58d5 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.hard-0ee5 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.rough-fa00 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.pattern_blue_5976 { margin: 2rem 0; }
.highlight-7e47 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.highlight-7e47 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.highlight-7e47 p, .highlight-7e47 ul { line-height: 1.7; }
.highlight-7e47 ul { list-style: none; padding-left: 0; }
.highlight-7e47 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.highlight-7e47 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.media_e923 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.hover-a860 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.footer_1b5b { text-align: center; }
.focus_dim_d513 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.section-gold-ca9b { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.fresh_6149 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.static_1589 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.aside-bf3e { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.aside-bf3e:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.aside-bf3e h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.aside-bf3e p, .aside-bf3e ul { line-height: 1.7; }
.aside-bf3e ul { list-style: none; padding-left: 0; }
.aside-bf3e ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.aside-bf3e ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 9c3e */
.promo-block-g0 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.0;
}
