/* ============================================
   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 */
.photo-hard-ea12 p,
.paper-4cb8,
.hot-d6b3,
.search_down_79b5,
.main-short-d2f0,
.preview_copper_8576,
.alert_de93,
.basic_fca4 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.popup-advanced-e33b {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.popup-advanced-e33b > *,
.primary-c745,
.photo-hard-ea12,
.frame-medium-d7b5 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .popup-advanced-e33b {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .popup-advanced-e33b {
    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 === */
.button_mini_6d3f {
  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 */
.button_mini_6d3f.feature-paper-88b0 {
  box-shadow: var(--shadow-md);
}

.breadcrumb-hard-f304 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.pro-3c9d img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.aside_d4f0 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.block-f992 {
  display: none;
}

/* Hide mobile actions on desktop */
.avatar_hard_c696 {
  display: none;
}

.progress-brown-bae4 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.progress-brown-bae4 a:hover,
.progress-brown-bae4 a.fn-active-2a87 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.badge_d9e1 {
  margin-left: 1rem;
}

.title-f1d1 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.right-85a0,
.backdrop_36c1 {
  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;
}

.right-85a0 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.right-85a0: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;
}

.backdrop_36c1 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.backdrop_36c1: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;
}

.right-85a0 svg,
.backdrop_36c1 svg {
  flex-shrink: 0;
}

.silver_cc9b {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.status_white_a86b {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.status_white_a86b::before,
.status_white_a86b::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.status_white_a86b::before {
  top: -7px;
}

.status_white_a86b::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.right_2675 {
  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 === */
.section_dirty_a85d {
  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);
}

.photo-383b {
  margin: 0 0 2rem;
  text-align: center;
}

.icon_dark_cc58 {
  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;
}

.icon_dark_cc58:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.narrow-57d2 {
  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);
}

.narrow-57d2 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.card-old-5de4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.list_hard_c2f2 {
  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;
}

.list_hard_c2f2:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.notification_cec9 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.card_north_0056 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.label-bright-1ab6 {
  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);
}

.label-bright-1ab6 .last-4a03 {
  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;
}

.label-bright-1ab6 .last-4a03 svg {
  flex-shrink: 0;
}

.label-bright-1ab6 .image_c231 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.label-bright-1ab6 .image_c231: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);
}

.label-bright-1ab6 .cool-5a53 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.label-bright-1ab6 .cool-5a53: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) {
  .section_dirty_a85d {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .icon_dark_cc58 {
    max-width: 100%;
  }

  .card-old-5de4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .list_hard_c2f2 {
    padding: 1rem;
  }

  .notification_cec9 {
    font-size: 1.5rem;
  }

  .card_north_0056 {
    font-size: 0.75rem;
  }

  .narrow-57d2 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .label-bright-1ab6 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .label-bright-1ab6 .last-4a03 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .card-old-5de4 {
    grid-template-columns: 1fr;
  }
}

.status-tall-3448 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.content-231f {
  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 === */
.gas_431d {
  margin-bottom: 2.5rem;
}

.backdrop_4eea {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.status-tall-3448 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.texture-large-368e {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.backdrop-large-0f20 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.notification-under-9381 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tabs-hard-c85f {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.small-10cf {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.dim-0422 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.short-6bf7 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.short-6bf7 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.title-fixed-d4f4 {
  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);
}

.in_1402 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.upper_e96f {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.main_rough_1488 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.row-steel-b7c3 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.outline_prev_0e15 {
  display: grid;
  gap: 1rem;
}

.new_b42d {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.summary_cold_ec6c {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.element-78b4 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.brown_ae56 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.menu-7a4b {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.button_stone_98e0 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.button_stone_98e0 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.paper-4cb8 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.white-d6c4 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.accordion_b17c {
  display: grid;
  gap: 2rem;
}

.lower-8313 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.backdrop-large-0f20 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.texture-large-368e {
  flex: 1;
}

.tabs-hard-c85f {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.tabs-hard-c85f a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.box_out_3b31 {
  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;
}

.small-10cf {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.overlay-yellow-a380 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.overlay-yellow-a380 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.disabled-complex-0f28 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.disabled-complex-0f28 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.top-5550 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.top-5550 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.top-5550 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.top-5550 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.accent_e011 {
  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 === */
.shadow-dynamic-5f4a {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.label_iron_52e2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.box_west_29ac {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card-copper-99f1 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.card-copper-99f1 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.card-copper-99f1 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.card-copper-99f1 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;
}

.card-copper-99f1 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.card-copper-99f1 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.photo-hard-ea12 {
  padding: 3rem 0 5rem;
}

.frame-medium-d7b5 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.frame-medium-d7b5.header-focused-5fdb {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.hot-d6b3 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.liquid-25e2 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.grid-warm-48d1 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.grid-warm-48d1 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.pattern_fa31 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.detail_upper_529d {
  text-align: center;
}

.title_narrow_9cc1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.main-8887 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.search-8024 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.preview_copper_8576 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.search_down_79b5 {
  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;
}

.search_down_79b5 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.search_down_79b5:hover {
  box-shadow: var(--shadow-lg);
}

.search_down_79b5.media-hot-1482 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.search_down_79b5 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.search_down_79b5 ul {
  margin: 1rem 0;
}

.search_down_79b5 li {
  margin-bottom: 0.75rem;
}

.filter-fixed-d50a {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.bottom_c8e8 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.bottom_c8e8 a {
  font-weight: 600;
}

/* === Data Tables === */
.image_617e {
  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;
}

.image_617e table {
  width: 100%;
  min-width: 600px;
}

.image_617e thead {
  background-color: var(--primary-color);
  color: white;
}

.image_617e th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.image_617e td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.image_617e tbody tr:hover {
  background-color: var(--bg-secondary);
}

.image_617e tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.frame_soft_45eb {
  list-style: none;
  margin: 1.5rem 0;
}

.frame_soft_45eb li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.frame_soft_45eb li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.text-a598::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-2a87::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 === */
.fast-8740 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.mini-ec1c {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.mini-ec1c img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.mini-ec1c strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.mini-ec1c span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.fast-8740 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.alert_de93 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.alert_de93::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.border-hard-1ec5 {
  position: relative;
  margin-bottom: 3rem;
}

.detail_afff {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.detail_afff .steel-aa5e {
  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;
}

.full_f882 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.full_f882 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.full_f882 ul {
  margin: 1rem 0;
}

.full_f882 li {
  margin-bottom: 0.75rem;
}

.notification_ef31 {
  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 === */
.surface_middle_a756 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.surface_middle_a756 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.video-dirty-b5cf {
  list-style: none;
  margin: 1.5rem 0;
}

.video-dirty-b5cf li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.video-dirty-b5cf a {
  font-weight: 600;
}

.column-b2e2 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.basic_fca4 {
  margin: 2.5rem 0;
}

.narrow-ed72 {
  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;
}

.narrow-ed72:hover {
  box-shadow: var(--shadow-lg);
}

.narrow-ed72.image-liquid-1a4c {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.cold_008c {
  flex-shrink: 0;
}

.cold_008c 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);
}

.heading-c801 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.up-c7d0,
.full-9252,
.caption_right_1bf8 {
  width: 100%;
  margin: 1.5rem 0;
}

.label-0434 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.label-0434 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.menu_8a68 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.menu_8a68 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.header_dim_714c {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.header_dim_714c strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.pressed_8cad {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.outer_5b02 {
  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;
}

.outer_5b02:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.outer_5b02.new-7cc7 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.outer_5b02 .easy_cff6 {
  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;
}

.outer_5b02 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.content-prev-4271 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.active_b7cb {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.active_b7cb label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.preview_dark_9d30 {
  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 === */
.last-4a03 {
  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;
}

.image_c231 {
  background-color: var(--primary-color);
  color: white;
}

.image_c231:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.cool-5a53 {
  background-color: var(--text-secondary);
  color: white;
}

.cool-5a53:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.tall-6a0e {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.tall-6a0e:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.layout_c01b {
  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;
}

.layout_c01b:hover {
  background-color: var(--primary-dark);
}

.box_paper_9b64 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.mask-black-24bb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.green-d337 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.highlight_complex_4078 {
  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 === */
.picture_1c28 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.paragraph-35ea {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.paragraph-35ea h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.shade-lower-32b8 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.shadow-311f {
  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;
}

.gold-0e42 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.glass-7ac2 {
  list-style: none;
  counter-reset: rank-counter;
}

.glass-7ac2 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.glass-7ac2 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;
}

.large_9c70 {
  list-style: none;
}

.large_9c70 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.message-full-9234 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.full_0f90 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.full_0f90 .small-fe95 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.full_0f90 .badge-1ba5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.disabled-e27a {
  margin-top: 3rem;
}

.list_904a {
  width: 100%;
}

.search_5776 {
  background-color: #fef3c7;
}

.mask_3889 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.alert_5c44 {
  margin: 3rem 0;
}

.block_orange_b37b {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.badge_8b59 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.badge_8b59:hover {
  box-shadow: var(--shadow-lg);
}

.badge_8b59.filter_15e1 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.east-5c0f {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.header-up-66fe strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.header-up-66fe span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hover_3616 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.badge_8b59 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.image-south-ad27 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.slider-over-001a {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.paragraph-next-6a2b {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.info_action_a95d {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.gradient_3546 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.breadcrumb_copper_6a4c {
  margin-top: 1rem;
}

/* === FAQ Section === */
.hover_9da3 {
  max-width: 900px;
  margin: 0 auto;
}

.paragraph-e838 {
  margin: 2rem 0;
}

.hero-in-8d99 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.hero-in-8d99 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.hero-in-8d99 summary::-webkit-details-marker {
  display: none;
}

.hero-in-8d99 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.tag_pro_8d99 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.hero-in-8d99[open] .tag_pro_8d99 {
  transform: rotate(45deg);
}

.list-blue-753a {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.list-blue-753a p:last-child {
  margin-bottom: 0;
}

.soft-e1de {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.shadow-4f69 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.inner_9998 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.inner_9998 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.inner_9998 .last-4a03 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.action_953a {
  max-width: 900px;
  margin: 0 auto;
}

.fixed-7c8d {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.soft_4546 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.soft_4546.fn-success-2a87 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.picture-8167 {
  font-size: 3rem;
  line-height: 1;
}

.menu_80c5 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.pressed_5d15 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.mini-0171,
.dirty-5340 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.mini-0171 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.dirty-5340 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.pink-730d,
.cold-2d62 {
  margin: 1.5rem 0;
}

.pink-730d li,
.cold-2d62 li {
  margin-bottom: 1rem;
}

.dim_a987 {
  margin: 3rem 0;
}

.card-f8fa {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.card-f8fa h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.card-f8fa ol {
  margin: 1rem 0;
}

.card-f8fa li {
  margin-bottom: 0.75rem;
}

.active_out_9b3f {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.gallery_full_1f64 {
  margin: 2rem 0;
}

.yellow-7b66 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.paragraph_small_8b61 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.slider-1d46 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.blue_8b15 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.status-f2d4 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.slow_ab78 {
  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;
}

.slow_ab78 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.notification-under-9381 {
  flex: 1;
}

.notification-under-9381 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.section_a631 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.icon_2cd7 p {
  margin-bottom: 1rem;
}

.up-1491 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.stone-0972 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.logo-8ae3 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.logo-8ae3 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.alert_5a85 h3 {
  margin-bottom: 1.5rem;
}

.detail-up-97b0 {
  display: grid;
  gap: 2rem;
}

.label-a900 {
  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;
}

.label-a900 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.label-a900 h4 {
  margin: 0 0 0.25rem;
}

.label-a900 p {
  margin: 0;
  font-size: 0.9375rem;
}

.column_left_c167 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.sort_top_c30d {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.sort_top_c30d h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.sort_top_c30d ul {
  margin: 1.5rem 0;
}

.sort_top_c30d li {
  margin-bottom: 0.75rem;
}

.focus-278b {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.huge_5d63 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.hidden-91c6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.link_eb9f h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.link_eb9f p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.info_east_5733 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.info_east_5733 a {
  color: rgba(255, 255, 255, 0.8);
}

.thumbnail-d468 {
  list-style: none;
}

.thumbnail-d468 li {
  margin-bottom: 0.75rem;
}

.thumbnail-d468 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.thumbnail-d468 a:hover {
  color: white;
}

.next-7206 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.short-3641 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.link-935d {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.title-white-38f4 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.gradient_a6ed {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .popup-advanced-e33b {
    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;
  }

  .wide_5a4b {
    font-size: 1.5rem !important;
  }

  .backdrop_4eea {
    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 */
  .search_down_79b5,
  .main-short-d2f0,
  .full_f882,
  .heading-c801,
  .east-5c0f,
  .badge_8b59,
  .list-blue-753a,
  .narrow-57d2,
  .paper-4cb8,
  .hot-d6b3 {
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }

  /* Long words in Indonesian */
  ul, ol {
    padding-left: 1.5rem;
    max-width: 100%;
  }

  /* Fix author-info layout on mobile */
  .status-tall-3448 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .texture-large-368e {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .backdrop-large-0f20 {
    flex-shrink: 0;
  }

  .notification-under-9381 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .tabs-hard-c85f,
  .small-10cf {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .small-10cf {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .aside_d4f0 {
    display: none;
  }

  /* Show mobile actions */
  .avatar_hard_c696 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .footer-simple-148a {
    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;
  }

  .footer-simple-148a svg {
    flex-shrink: 0;
  }

  .footer-simple-148a .dim-672d {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .footer-simple-148a .chip-b4e9 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .carousel-205a {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .list_c621 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .footer-simple-148a:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .block-f992 {
    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;
  }

  .block-f992.fn-active-2a87 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .block-f992 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .block-f992 li:last-child {
    border-bottom: none;
  }

  .block-f992 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .progress-brown-bae4 {
    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;
  }

  .progress-brown-bae4 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .progress-brown-bae4 li:last-child {
    border-bottom: none;
  }

  .progress-brown-bae4 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .badge_d9e1 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .title-f1d1 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .right-85a0,
  .backdrop_36c1 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .right-85a0 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .backdrop_36c1 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .progress-brown-bae4.fn-active-2a87 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .silver_cc9b {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .button_mini_6d3f {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .breadcrumb-hard-f304 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .right_2675 {
    margin-top: 0;
  }

  /* Hero section */
  .right_2675 {
    padding: 2rem 0 1.5rem;
  }

  .backdrop_4eea {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .paper-4cb8 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .section_dirty_a85d {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .icon_dark_cc58 {
    max-width: 100%;
    border-radius: 8px;
  }

  .card-old-5de4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .list_hard_c2f2 {
    padding: 1rem;
  }

  .notification_cec9 {
    font-size: 1.5rem;
  }

  .card_north_0056 {
    font-size: 0.75rem;
  }

  .narrow-57d2 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .label-bright-1ab6 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .label-bright-1ab6 .last-4a03 {
    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 */
  .box_west_29ac {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .narrow-ed72 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .cold_008c {
    margin-bottom: 1rem;
  }

  /* Author */
  .lower-8313 {
    flex-direction: column;
  }

  .slow_ab78 {
    flex-direction: column;
  }

  /* Quotes */
  .east-5c0f {
    flex-direction: column;
  }

  /* Pros/Cons */
  .pressed_5d15 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .blue_8b15 {
    flex-direction: column;
  }

  .blue_8b15 .last-4a03 {
    width: 100%;
  }

  /* Version comparison */
  .pressed_8cad {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .picture_1c28 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .hidden-91c6 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .link-935d {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .image_617e,
  .full-9252,
  .main_dark_3874,
  .list_904a,
  .up-c7d0,
  .caption_right_1bf8 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .image_617e table,
  .full-9252 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .preview_dark_9d30 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .popup-advanced-e33b {
    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;
  }

  .wide_5a4b {
    font-size: 1.25rem !important;
  }

  .backdrop_4eea {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .button_mini_6d3f {
    position: fixed;
  }

  .breadcrumb-hard-f304 {
    padding: 0.625rem 0;
  }

  .pro-3c9d img {
    height: 26px;
  }

  .progress-brown-bae4 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .block-f992 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .footer-simple-148a {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .footer-simple-148a svg {
    width: 18px;
    height: 18px;
  }

  .footer-simple-148a .dim-672d {
    font-size: 0.7rem;
  }

  .footer-simple-148a .chip-b4e9 {
    font-size: 0.65rem;
  }

  .right-85a0,
  .backdrop_36c1 {
    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, .popup-advanced-e33b, .primary-c745, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .section_dirty_a85d {
    padding: 1rem;
  }

  .card-old-5de4 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .list_hard_c2f2 {
    padding: 0.875rem;
  }

  .notification_cec9 {
    font-size: 1.25rem;
  }

  .label-bright-1ab6 .last-4a03 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .backdrop_4eea {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .last-4a03 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .box_paper_9b64 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .narrow-ed72 {
    padding: 1rem;
  }

  .cold_008c span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .search_down_79b5,
  .banner_fe23,
  .alert_0830,
  .background-cool-9e69 {
    padding: 1rem;
  }
}

@media print {
  .button_mini_6d3f,
  .shadow-dynamic-5f4a,
  .silver_cc9b,
  .last-4a03,
  .huge_5d63 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .popup-advanced-e33b {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.info-prev-a898 {
  margin-bottom: 3rem;
  text-align: center;
}

.wide_5a4b {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.west-bb61 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.outer-1ce3,
.column-large-ff79 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.soft_ca39 {
  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;
}

.soft_ca39:hover {
  transform: translateY(-5px);
}

.soft_ca39 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.soft_ca39 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.avatar-21a7 {
  margin: 3rem 0;
}

.feature-black-1873 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.menu-1637 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.menu-1637:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.description_3891 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.accordion_thick_dc17 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.search-liquid-7529 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.sort-bece {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.dirty_5c30 {
  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;
}

.dirty_5c30:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.dirty_5c30.list_plasma_0cd4 {
  border-left: 4px solid var(--primary-color);
}

.small-ba2c {
  flex-shrink: 0;
}

.small-ba2c svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.widget-d268 {
  flex: 1;
}

.widget-d268 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.preview_5465 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.narrow_9f4c,
.active_1bbb,
.outline-hot-f677 {
  margin-bottom: 1.5rem;
}

.narrow_9f4c h4,
.active_1bbb h4,
.outline-hot-f677 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.narrow_9f4c ul,
.active_1bbb ul,
.outline-hot-f677 ul {
  list-style: none;
  padding: 0;
}

.narrow_9f4c li,
.active_1bbb li,
.outline-hot-f677 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.narrow_9f4c li:before,
.active_1bbb li:before,
.outline-hot-f677 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.modal_af19 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.modal_af19 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;
}

.modal_af19 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.up-50dd { margin: 2rem 0; }
.breadcrumb_e87a { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.breadcrumb_e87a h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.input_0395 p { margin-bottom: 1rem; line-height: 1.7; }
.input_0395 strong { color: var(--text-primary); }
.input_0395 ul { list-style: none; padding-left: 0; }
.input_0395 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.input_0395 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.fresh-0de0 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.badge-basic-07d2 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.badge-basic-07d2:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.gallery_bronze_e089 { font-size: 3rem; margin-bottom: 1rem; }
.badge-basic-07d2 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.badge-basic-07d2 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.next-aadc { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.next-aadc span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.out_236c { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.module_ab7b { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.primary_648d { text-align: center; }
.text-d96d { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.input-selected-ea2f { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.layout_gas_2ddb { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.text_596b { margin: 2rem 0; }
.hidden-b91f { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.hidden-b91f h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.hidden-b91f p, .hidden-b91f ul { line-height: 1.7; }
.hidden-b91f ul { list-style: none; padding-left: 0; }
.hidden-b91f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.hidden-b91f ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.box_83e1 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.tiny-30f0 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.notice_a23c { text-align: center; }
.accordion_08d9 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.stone_dfa5 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.picture_0796 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.panel_4832 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.cold-5799 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.cold-5799:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.cold-5799 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.cold-5799 p, .cold-5799 ul { line-height: 1.7; }
.cold-5799 ul { list-style: none; padding-left: 0; }
.cold-5799 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.cold-5799 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 0558 */
.ghost-box-r5 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.0;
}
