/* ============================================
   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 */
.bronze-a36c p,
.widget_up_f3f5,
.description_35da,
.tabs_ca9d,
.hover-under-cc7b,
.alert_static_a1d4,
.frame-c2ce,
.sort-motion-2498 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.border-50f4 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.border-50f4 > *,
.filter_d5de,
.bronze-a36c,
.advanced-563c {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .border-50f4 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .border-50f4 {
    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 === */
.focus-large-ba71 {
  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 */
.focus-large-ba71.focus-1ebb {
  box-shadow: var(--shadow-md);
}

.preview-22bb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.old_2321 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.header_light_16b6 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.modal-596a {
  display: none;
}

/* Hide mobile actions on desktop */
.tag_glass_f269 {
  display: none;
}

.tag_huge_1bc0 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.tag_huge_1bc0 a:hover,
.tag_huge_1bc0 a.fn-active-6ed4 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.out_8400 {
  margin-left: 1rem;
}

.tabs_11d3 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.grid-action-93cb,
.alert-fe6b {
  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;
}

.grid-action-93cb {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.grid-action-93cb: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;
}

.alert-fe6b {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.alert-fe6b: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;
}

.grid-action-93cb svg,
.alert-fe6b svg {
  flex-shrink: 0;
}

.box-bac8 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.card_443a {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.card_443a::before,
.card_443a::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.card_443a::before {
  top: -7px;
}

.card_443a::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.focus-paper-6091 {
  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 === */
.static_0a72 {
  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);
}

.secondary_soft_61c7 {
  margin: 0 0 2rem;
  text-align: center;
}

.accent-6db4 {
  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;
}

.accent-6db4:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.easy_95ad {
  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);
}

.easy_95ad strong {
  color: var(--primary-color);
  font-weight: 700;
}

.tooltip-gas-56cb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.light_a87c {
  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;
}

.light_a87c:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.preview_steel_04fa {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.logo-2143 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.avatar_4d0b {
  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);
}

.avatar_4d0b .heading_tall_9904 {
  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;
}

.avatar_4d0b .heading_tall_9904 svg {
  flex-shrink: 0;
}

.avatar_4d0b .pro_9d1c {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.avatar_4d0b .pro_9d1c: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);
}

.avatar_4d0b .frame_f8ea {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.avatar_4d0b .frame_f8ea: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) {
  .static_0a72 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .accent-6db4 {
    max-width: 100%;
  }

  .tooltip-gas-56cb {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .light_a87c {
    padding: 1rem;
  }

  .preview_steel_04fa {
    font-size: 1.5rem;
  }

  .logo-2143 {
    font-size: 0.75rem;
  }

  .easy_95ad {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .avatar_4d0b {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .avatar_4d0b .heading_tall_9904 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .tooltip-gas-56cb {
    grid-template-columns: 1fr;
  }
}

.tertiary_glass_2615 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.liquid-f7a3 {
  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 === */
.gallery-narrow-325e {
  margin-bottom: 2.5rem;
}

.picture_9abb {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.tertiary_glass_2615 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.sidebar_smooth_7681 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.aside-copper-8d2c {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.pro_4fb6 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.surface_hot_97fd {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.focus_down_d283 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.bronze-41d4 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.filter-e387 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.filter-e387 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.input-114e {
  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);
}

.paragraph-4af9 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.paragraph_4153 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.wide-07ef {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.blue_a402 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.banner_purple_c923 {
  display: grid;
  gap: 1rem;
}

.simple_50d0 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.widget_e386 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.next-d621 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.list-db2c {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.popup-steel-8a75 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.prev_c742 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.prev_c742 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.widget_up_f3f5 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.progress-over-8dcd {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.message-2907 {
  display: grid;
  gap: 2rem;
}

.rough_c743 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.aside-copper-8d2c {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.sidebar_smooth_7681 {
  flex: 1;
}

.surface_hot_97fd {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.surface_hot_97fd a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.pattern-tall-f5ef {
  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;
}

.focus_down_d283 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.gallery_da6f {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.gallery_da6f span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.breadcrumb_advanced_4585 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.breadcrumb_advanced_4585 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.preview_out_3dfe {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.preview_out_3dfe strong {
  display: block;
  margin-bottom: 0.75rem;
}

.preview_out_3dfe ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.preview_out_3dfe li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.bright_92c0 {
  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 === */
.nav_f050 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.column_d51e {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.alert-fresh-98c2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.container-up-ef87 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.container-up-ef87 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.container-up-ef87 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.container-up-ef87 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;
}

.container-up-ef87 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.container-up-ef87 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.bronze-a36c {
  padding: 3rem 0 5rem;
}

.advanced-563c {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.advanced-563c.card-1e08 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.description_35da {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.tooltip-slow-a769 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.plasma_9d05 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.plasma_9d05 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.layout_bf52 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.filter-c57d {
  text-align: center;
}

.picture_a23a {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.button-8632 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.tabs_0afa {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.alert_static_a1d4 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.tabs_ca9d {
  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;
}

.tabs_ca9d * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tabs_ca9d:hover {
  box-shadow: var(--shadow-lg);
}

.tabs_ca9d.paper_8c75 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.tabs_ca9d h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.tabs_ca9d ul {
  margin: 1rem 0;
}

.tabs_ca9d li {
  margin-bottom: 0.75rem;
}

.picture_brown_358f {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.full_fb6a {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.full_fb6a a {
  font-weight: 600;
}

/* === Data Tables === */
.chip_171c {
  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;
}

.chip_171c table {
  width: 100%;
  min-width: 600px;
}

.chip_171c thead {
  background-color: var(--primary-color);
  color: white;
}

.chip_171c th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.chip_171c td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.chip_171c tbody tr:hover {
  background-color: var(--bg-secondary);
}

.chip_171c tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.pattern_a3a3 {
  list-style: none;
  margin: 1.5rem 0;
}

.pattern_a3a3 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.pattern_a3a3 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.input-bright-4355::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-6ed4::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 === */
.yellow_cac3 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.picture-9c80 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.picture-9c80 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.picture-9c80 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.picture-9c80 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.yellow_cac3 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.frame-c2ce {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.frame-c2ce::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.lower-1be6 {
  position: relative;
  margin-bottom: 3rem;
}

.badge_0634 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.badge_0634 .under_54ff {
  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;
}

.simple-06de {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.simple-06de h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.simple-06de ul {
  margin: 1rem 0;
}

.simple-06de li {
  margin-bottom: 0.75rem;
}

.container_2c1e {
  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 === */
.progress-cold-6de6 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.progress-cold-6de6 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.brown-873f {
  list-style: none;
  margin: 1.5rem 0;
}

.brown-873f li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.brown-873f a {
  font-weight: 600;
}

.tooltip_a2d4 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.sort-motion-2498 {
  margin: 2.5rem 0;
}

.layout-2f77 {
  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-2f77:hover {
  box-shadow: var(--shadow-lg);
}

.layout-2f77.outer_b1ae {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.hidden_3e14 {
  flex-shrink: 0;
}

.hidden_3e14 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);
}

.gas-75f3 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.frame_c56c,
.notification_middle_3282,
.smooth-47aa {
  width: 100%;
  margin: 1.5rem 0;
}

.middle_a53c {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.middle_a53c strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.motion_8ffc {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.motion_8ffc strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.green-17ff {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.green-17ff strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.photo-1246 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.video_5828 {
  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;
}

.video_5828:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.video_5828.silver_82fa {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.video_5828 .basic-f9b8 {
  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;
}

.video_5828 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.popup_3a0e {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.card_wide_1fcd {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.card_wide_1fcd label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.heading_27db {
  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 === */
.heading_tall_9904 {
  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;
}

.pro_9d1c {
  background-color: var(--primary-color);
  color: white;
}

.pro_9d1c:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.frame_f8ea {
  background-color: var(--text-secondary);
  color: white;
}

.frame_f8ea:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.hovered_b5b0 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.hovered_b5b0:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.wrapper-3ed0 {
  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;
}

.wrapper-3ed0:hover {
  background-color: var(--primary-dark);
}

.overlay_dbeb {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.east_d0f1 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.over-93ba {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.message_iron_9590 {
  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 === */
.module_b1d5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.tag_d711 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.tag_d711 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.text_1999 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.pink-24b3 {
  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;
}

.sort-plasma-02ed {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.pagination_silver_9450 {
  list-style: none;
  counter-reset: rank-counter;
}

.pagination_silver_9450 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.pagination_silver_9450 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;
}

.new-2252 {
  list-style: none;
}

.new-2252 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.hidden_e845 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.iron_6e1a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.iron_6e1a .active-right-401a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.iron_6e1a .background_0f39 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.surface-2785 {
  margin-top: 3rem;
}

.out-f52d {
  width: 100%;
}

.fluid-c5dd {
  background-color: #fef3c7;
}

.section_last_3dc4 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.progress-4d76 {
  margin: 3rem 0;
}

.tag-6f4f {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.breadcrumb_325f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.breadcrumb_325f:hover {
  box-shadow: var(--shadow-lg);
}

.breadcrumb_325f.tooltip-warm-91ee {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.static_9570 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.gas_3327 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.gas_3327 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.message-148e {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.breadcrumb_325f blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.preview-stale-3606 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.container_east_24c1 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.bottom_0e29 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.north-760b {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.content_left_a850 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.description_8b4e {
  margin-top: 1rem;
}

/* === FAQ Section === */
.border-45e1 {
  max-width: 900px;
  margin: 0 auto;
}

.border-west-7ad7 {
  margin: 2rem 0;
}

.blue_7fa5 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.blue_7fa5 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.blue_7fa5 summary::-webkit-details-marker {
  display: none;
}

.blue_7fa5 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.title_4c6a {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.blue_7fa5[open] .title_4c6a {
  transform: rotate(45deg);
}

.complex-16b3 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.complex-16b3 p:last-child {
  margin-bottom: 0;
}

.module-8bfe {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.lite_deec {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.button_51e0 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.button_51e0 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.button_51e0 .heading_tall_9904 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.gas_8b82 {
  max-width: 900px;
  margin: 0 auto;
}

.panel-mini-3040 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.thick-4e39 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.thick-4e39.fn-success-6ed4 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.image_59b8 {
  font-size: 3rem;
  line-height: 1;
}

.nav_2cc3 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.carousel_4c38 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.plasma_1847,
.notice-79e1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.plasma_1847 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.notice-79e1 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.hover-cfd8,
.bottom_4e1a {
  margin: 1.5rem 0;
}

.hover-cfd8 li,
.bottom_4e1a li {
  margin-bottom: 1rem;
}

.label-08b0 {
  margin: 3rem 0;
}

.summary-full-84b4 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.summary-full-84b4 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.summary-full-84b4 ol {
  margin: 1rem 0;
}

.summary-full-84b4 li {
  margin-bottom: 0.75rem;
}

.logo-8201 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.disabled_f490 {
  margin: 2rem 0;
}

.menu-dim-3c45 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.nav_a41a {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.heading_84df {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.smooth-0c41 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.footer-e58a {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.fast-5670 {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.fast-5670 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.pro_4fb6 {
  flex: 1;
}

.pro_4fb6 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.preview-9ad8 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.backdrop-easy-757b p {
  margin-bottom: 1rem;
}

.element-glass-9fe2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.carousel_c56d {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.last_e401 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.last_e401 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.icon-hard-69fd h3 {
  margin-bottom: 1.5rem;
}

.upper_a3d2 {
  display: grid;
  gap: 2rem;
}

.tertiary_3024 {
  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;
}

.tertiary_3024 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.tertiary_3024 h4 {
  margin: 0 0 0.25rem;
}

.tertiary_3024 p {
  margin: 0;
  font-size: 0.9375rem;
}

.media-upper-6c08 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.highlight_7b74 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.highlight_7b74 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.highlight_7b74 ul {
  margin: 1.5rem 0;
}

.highlight_7b74 li {
  margin-bottom: 0.75rem;
}

.filter_fbbd {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.notification_40cf {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.small-5179 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.heading_b73d h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.heading_b73d p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.text-stale-2c16 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.text-stale-2c16 a {
  color: rgba(255, 255, 255, 0.8);
}

.sort-action-0705 {
  list-style: none;
}

.sort-action-0705 li {
  margin-bottom: 0.75rem;
}

.sort-action-0705 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.sort-action-0705 a:hover {
  color: white;
}

.iron-4ad6 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.accent-tiny-c9f2 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.border-light-f5e2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.basic-915f {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.fluid_6778 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .border-50f4 {
    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;
  }

  .red_49c2 {
    font-size: 1.5rem !important;
  }

  .picture_9abb {
    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 */
  .tabs_ca9d,
  .hover-under-cc7b,
  .simple-06de,
  .gas-75f3,
  .static_9570,
  .breadcrumb_325f,
  .complex-16b3,
  .easy_95ad,
  .widget_up_f3f5,
  .description_35da {
    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 */
  .tertiary_glass_2615 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .sidebar_smooth_7681 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .aside-copper-8d2c {
    flex-shrink: 0;
  }

  .pro_4fb6 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .surface_hot_97fd,
  .focus_down_d283 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .focus_down_d283 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .header_light_16b6 {
    display: none;
  }

  /* Show mobile actions */
  .tag_glass_f269 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .outer_384d {
    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_384d svg {
    flex-shrink: 0;
  }

  .outer_384d .hard_9ca5 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .outer_384d .sort_5392 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .caption_47cb {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .prev_21e4 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .outer_384d:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .modal-596a {
    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;
  }

  .modal-596a.fn-active-6ed4 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .modal-596a li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .modal-596a li:last-child {
    border-bottom: none;
  }

  .modal-596a a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .tag_huge_1bc0 {
    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;
  }

  .tag_huge_1bc0 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .tag_huge_1bc0 li:last-child {
    border-bottom: none;
  }

  .tag_huge_1bc0 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .out_8400 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .tabs_11d3 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .grid-action-93cb,
  .alert-fe6b {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .grid-action-93cb {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .alert-fe6b {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .tag_huge_1bc0.fn-active-6ed4 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .box-bac8 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .focus-large-ba71 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .preview-22bb {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .focus-paper-6091 {
    margin-top: 0;
  }

  /* Hero section */
  .focus-paper-6091 {
    padding: 2rem 0 1.5rem;
  }

  .picture_9abb {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .widget_up_f3f5 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .static_0a72 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .accent-6db4 {
    max-width: 100%;
    border-radius: 8px;
  }

  .tooltip-gas-56cb {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .light_a87c {
    padding: 1rem;
  }

  .preview_steel_04fa {
    font-size: 1.5rem;
  }

  .logo-2143 {
    font-size: 0.75rem;
  }

  .easy_95ad {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .avatar_4d0b {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .avatar_4d0b .heading_tall_9904 {
    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 */
  .alert-fresh-98c2 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .layout-2f77 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .hidden_3e14 {
    margin-bottom: 1rem;
  }

  /* Author */
  .rough_c743 {
    flex-direction: column;
  }

  .fast-5670 {
    flex-direction: column;
  }

  /* Quotes */
  .static_9570 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .carousel_4c38 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .smooth-0c41 {
    flex-direction: column;
  }

  .smooth-0c41 .heading_tall_9904 {
    width: 100%;
  }

  /* Version comparison */
  .photo-1246 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .module_b1d5 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .small-5179 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .border-light-f5e2 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .chip_171c,
  .notification_middle_3282,
  .frame_top_b876,
  .out-f52d,
  .frame_c56c,
  .smooth-47aa {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .chip_171c table,
  .notification_middle_3282 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .heading_27db {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .border-50f4 {
    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;
  }

  .red_49c2 {
    font-size: 1.25rem !important;
  }

  .picture_9abb {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .focus-large-ba71 {
    position: fixed;
  }

  .preview-22bb {
    padding: 0.625rem 0;
  }

  .old_2321 img {
    height: 26px;
  }

  .tag_huge_1bc0 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .modal-596a {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .outer_384d {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .outer_384d svg {
    width: 18px;
    height: 18px;
  }

  .outer_384d .hard_9ca5 {
    font-size: 0.7rem;
  }

  .outer_384d .sort_5392 {
    font-size: 0.65rem;
  }

  .grid-action-93cb,
  .alert-fe6b {
    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, .border-50f4, .filter_d5de, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .static_0a72 {
    padding: 1rem;
  }

  .tooltip-gas-56cb {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .light_a87c {
    padding: 0.875rem;
  }

  .preview_steel_04fa {
    font-size: 1.25rem;
  }

  .avatar_4d0b .heading_tall_9904 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .picture_9abb {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .heading_tall_9904 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .overlay_dbeb {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .layout-2f77 {
    padding: 1rem;
  }

  .hidden_3e14 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .tabs_ca9d,
  .clean_eb92,
  .badge_current_c1df,
  .block_upper_e522 {
    padding: 1rem;
  }
}

@media print {
  .focus-large-ba71,
  .nav_f050,
  .box-bac8,
  .heading_tall_9904,
  .notification_40cf {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .border-50f4 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.media_active_dc32 {
  margin-bottom: 3rem;
  text-align: center;
}

.red_49c2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.paper-f952 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.menu-steel-4a19,
.overlay-c38d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.banner-selected-3e19 {
  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;
}

.banner-selected-3e19:hover {
  transform: translateY(-5px);
}

.banner-selected-3e19 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.banner-selected-3e19 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.article-narrow-8147 {
  margin: 3rem 0;
}

.smooth_59fd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.small-03da {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.small-03da:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.logo_up_e6c6 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.detail-60ba {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.north-3a69 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.background_5aff {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.stale-8acc {
  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;
}

.stale-8acc:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.stale-8acc.picture-db6a {
  border-left: 4px solid var(--primary-color);
}

.form_north_0022 {
  flex-shrink: 0;
}

.form_north_0022 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.pagination_388e {
  flex: 1;
}

.pagination_388e h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.highlight_basic_26c2 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.fast_92c3,
.easy_7aa7,
.info_purple_8235 {
  margin-bottom: 1.5rem;
}

.fast_92c3 h4,
.easy_7aa7 h4,
.info_purple_8235 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fast_92c3 ul,
.easy_7aa7 ul,
.info_purple_8235 ul {
  list-style: none;
  padding: 0;
}

.fast_92c3 li,
.easy_7aa7 li,
.info_purple_8235 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.fast_92c3 li:before,
.easy_7aa7 li:before,
.info_purple_8235 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.status_dark_3097 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.status_dark_3097 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;
}

.status_dark_3097 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.title-8402 { margin: 2rem 0; }
.inner_cfbd { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.inner_cfbd h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.label-next-fe7c p { margin-bottom: 1rem; line-height: 1.7; }
.label-next-fe7c strong { color: var(--text-primary); }
.label-next-fe7c ul { list-style: none; padding-left: 0; }
.label-next-fe7c ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.label-next-fe7c ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.pagination_d3bb { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.mask_fe4a { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.mask_fe4a:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.huge_be0f { font-size: 3rem; margin-bottom: 1rem; }
.mask_fe4a h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.mask_fe4a p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.bronze_22e1 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.bronze_22e1 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.sidebar_last_e7dc { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.shadow-thick-0b94 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.over-cffc { text-align: center; }
.thick_1dca { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.stale-4ea2 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.small_e732 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.middle-2ac3 { margin: 2rem 0; }
.frame-white-cae5 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.frame-white-cae5 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.frame-white-cae5 p, .frame-white-cae5 ul { line-height: 1.7; }
.frame-white-cae5 ul { list-style: none; padding-left: 0; }
.frame-white-cae5 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.frame-white-cae5 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.shadow-e9ac { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.upper_3df6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.medium-c3d5 { text-align: center; }
.next_f635 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.static-1a04 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.feature_e885 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.avatar_a991 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.bronze-ed54 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.bronze-ed54:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.bronze-ed54 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.bronze-ed54 p, .bronze-ed54 ul { line-height: 1.7; }
.bronze-ed54 ul { list-style: none; padding-left: 0; }
.bronze-ed54 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.bronze-ed54 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 6129 */
.shadow-element-z3 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.3;
}
