/* ============================================
   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 */
.pro-4993 p,
.pro_795c,
.outer_24c7,
.logo-gas-1d3b,
.dim-a3b6,
.preview_7a8d,
.info-7abd,
.container_82a2 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.text_dark_1998 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.text_dark_1998 > *,
.orange-174d,
.pro-4993,
.out-51f8 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .text_dark_1998 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .text_dark_1998 {
    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 === */
.progress-2085 {
  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 */
.progress-2085.frame_motion_606d {
  box-shadow: var(--shadow-md);
}

.badge_inner_b08d {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.preview_5157 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.sidebar_b357 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.alert_center_5480 {
  display: none;
}

/* Hide mobile actions on desktop */
.header_02e7 {
  display: none;
}

.image_upper_cf33 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.image_upper_cf33 a:hover,
.image_upper_cf33 a.fn-active-a1a1 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.stale_2948 {
  margin-left: 1rem;
}

.detail-e6a4 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.clean_6a99,
.tooltip_5a21 {
  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;
}

.clean_6a99 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.clean_6a99: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;
}

.tooltip_5a21 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.tooltip_5a21: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;
}

.clean_6a99 svg,
.tooltip_5a21 svg {
  flex-shrink: 0;
}

.focused_16c9 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.block-plasma-2c12 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.block-plasma-2c12::before,
.block-plasma-2c12::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.block-plasma-2c12::before {
  top: -7px;
}

.block-plasma-2c12::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.column_aca4 {
  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 === */
.accent-fast-8094 {
  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);
}

.first-8fbd {
  margin: 0 0 2rem;
  text-align: center;
}

.form_1100 {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form_1100:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.disabled_in_e2ae {
  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);
}

.disabled_in_e2ae strong {
  color: var(--primary-color);
  font-weight: 700;
}

.badge-0464 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.item-2c4a {
  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;
}

.item-2c4a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.filter_4b5b {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.background-4510 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.label_stone_5556 {
  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_stone_5556 .dirty_b549 {
  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_stone_5556 .dirty_b549 svg {
  flex-shrink: 0;
}

.label_stone_5556 .hidden_3c45 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.label_stone_5556 .hidden_3c45: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_stone_5556 .hidden_lite_ada9 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.label_stone_5556 .hidden_lite_ada9: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) {
  .accent-fast-8094 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .form_1100 {
    max-width: 100%;
  }

  .badge-0464 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .item-2c4a {
    padding: 1rem;
  }

  .filter_4b5b {
    font-size: 1.5rem;
  }

  .background-4510 {
    font-size: 0.75rem;
  }

  .disabled_in_e2ae {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .label_stone_5556 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .label_stone_5556 .dirty_b549 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .badge-0464 {
    grid-template-columns: 1fr;
  }
}

.glass_aad5 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.prev-b2eb {
  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 === */
.secondary-pink-0ba6 {
  margin-bottom: 2.5rem;
}

.container-4930 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.glass_aad5 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.widget_4ffd {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tooltip_thick_4b98 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.next_7be7 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.notice_090a {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.focus_copper_dcd1 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.hot_f863 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.icon-ad6c {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.icon-ad6c svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.status_4900 {
  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);
}

.panel_center_ceb9 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.first-0d85 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.video-97d8 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.hidden-prev-4106 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.row-0e2f {
  display: grid;
  gap: 1rem;
}

.primary-689e {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.heading-cold-0a11 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.component-wood-5e8f {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.text-bf11 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.fresh_6556 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.white-3efc {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.white-3efc p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.pro_795c {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.paragraph-0aae {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.over-a520 {
  display: grid;
  gap: 2rem;
}

.button-c4ce {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.tooltip_thick_4b98 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.widget_4ffd {
  flex: 1;
}

.notice_090a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.notice_090a a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.image-west-b859 {
  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_copper_dcd1 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.brown_83b1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.brown_83b1 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.element-668c {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.element-668c a {
  font-size: 0.875rem;
  font-weight: 500;
}

.chip-118b {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.chip-118b strong {
  display: block;
  margin-bottom: 0.75rem;
}

.chip-118b ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.chip-118b li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.detail_bright_51f7 {
  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 === */
.smooth-1423 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.clean-c121 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.search-basic-6a6f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.hot-c28b h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.hot-c28b ol {
  list-style: none;
  counter-reset: toc-counter;
}

.hot-c28b ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.hot-c28b 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;
}

.hot-c28b ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.hot-c28b ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.pro-4993 {
  padding: 3rem 0 5rem;
}

.out-51f8 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.out-51f8.content_hard_cbae {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.outer_24c7 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.header-middle-99b5 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.text_736e {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.text_736e h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.media_middle_9c6d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.pattern-a68c {
  text-align: center;
}

.dirty-0932 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section_5fd9 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.tabs_7ec1 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.preview_7a8d {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.logo-gas-1d3b {
  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;
}

.logo-gas-1d3b * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.logo-gas-1d3b:hover {
  box-shadow: var(--shadow-lg);
}

.logo-gas-1d3b.yellow_f5c2 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.logo-gas-1d3b h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.logo-gas-1d3b ul {
  margin: 1rem 0;
}

.logo-gas-1d3b li {
  margin-bottom: 0.75rem;
}

.tiny_20d6 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.card-full-8025 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.card-full-8025 a {
  font-weight: 600;
}

/* === Data Tables === */
.widget-left-a5bd {
  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;
}

.widget-left-a5bd table {
  width: 100%;
  min-width: 600px;
}

.widget-left-a5bd thead {
  background-color: var(--primary-color);
  color: white;
}

.widget-left-a5bd th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.widget-left-a5bd td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.widget-left-a5bd tbody tr:hover {
  background-color: var(--bg-secondary);
}

.widget-left-a5bd tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.advanced-d649 {
  list-style: none;
  margin: 1.5rem 0;
}

.advanced-d649 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.advanced-d649 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.orange-233f::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-a1a1::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 === */
.description-6062 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.tag-8378 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.tag-8378 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.tag-8378 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.tag-8378 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.description-6062 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.info-7abd {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.info-7abd::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.status_wide_1503 {
  position: relative;
  margin-bottom: 3rem;
}

.footer_9f80 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.footer_9f80 .lower_9f1e {
  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;
}

.form-6456 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.form-6456 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.form-6456 ul {
  margin: 1rem 0;
}

.form-6456 li {
  margin-bottom: 0.75rem;
}

.progress-warm-5e3b {
  display: inline-block;
  background-color: #dbeafe;
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* === Transparency Box === */
.carousel-a2da {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.carousel-a2da h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.column-c94e {
  list-style: none;
  margin: 1.5rem 0;
}

.column-c94e li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.column-c94e a {
  font-weight: 600;
}

.yellow_4451 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.container_82a2 {
  margin: 2.5rem 0;
}

.yellow_2374 {
  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;
}

.yellow_2374:hover {
  box-shadow: var(--shadow-lg);
}

.yellow_2374.summary_dirty_2669 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.filter-dc77 {
  flex-shrink: 0;
}

.filter-dc77 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);
}

.element_d811 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.hero-32b7,
.hero_17b5,
.black_6cbd {
  width: 100%;
  margin: 1.5rem 0;
}

.backdrop_copper_b471 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.backdrop_copper_b471 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.texture-iron-a9e2 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.texture-iron-a9e2 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.background_fixed_ecb2 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.background_fixed_ecb2 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.focus_5bb4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.inner-2c76 {
  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;
}

.inner-2c76:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.inner-2c76.plasma-7704 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.inner-2c76 .message-first-f0dc {
  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;
}

.inner-2c76 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.secondary-6964 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.cold_257e {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.cold_257e label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.shadow_d497 {
  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 === */
.dirty_b549 {
  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;
}

.hidden_3c45 {
  background-color: var(--primary-color);
  color: white;
}

.hidden_3c45:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.hidden_lite_ada9 {
  background-color: var(--text-secondary);
  color: white;
}

.hidden_lite_ada9:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.fixed-cc1d {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.fixed-cc1d:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.lower_9c81 {
  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;
}

.lower_9c81:hover {
  background-color: var(--primary-dark);
}

.section-brown-f191 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.shadow-51e8 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.red-2ce4 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.border_6037 {
  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 === */
.header-671b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.feature_3f66 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.feature_3f66 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.texture_bottom_0653 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.in-bfd4 {
  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;
}

.panel-63aa {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.gradient_514d {
  list-style: none;
  counter-reset: rank-counter;
}

.gradient_514d li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.gradient_514d 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;
}

.active-5f81 {
  list-style: none;
}

.active-5f81 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.module_hard_dc29 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.sidebar-992b {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-992b .current-d64f {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.sidebar-992b .light-6b08 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.gold-1772 {
  margin-top: 3rem;
}

.fluid_e2dd {
  width: 100%;
}

.table_paper_efc5 {
  background-color: #fef3c7;
}

.top-e80d {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.dropdown_6346 {
  margin: 3rem 0;
}

.shade-7fca {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.slow-6585 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.slow-6585:hover {
  box-shadow: var(--shadow-lg);
}

.slow-6585.inner-531f {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.red_0a3f {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.image-dc58 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.image-dc58 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.banner_top_5b4c {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.slow-6585 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.advanced-492a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.description_hovered_08ec {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.huge-e40f {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.new_0b36 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.disabled_d101 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.sort-up-7ac5 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.down-b7e0 {
  max-width: 900px;
  margin: 0 auto;
}

.active-silver-0f31 {
  margin: 2rem 0;
}

.sort_thick_b8dc {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.sort_thick_b8dc summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.sort_thick_b8dc summary::-webkit-details-marker {
  display: none;
}

.sort_thick_b8dc summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.notice-dirty-417f {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.sort_thick_b8dc[open] .notice-dirty-417f {
  transform: rotate(45deg);
}

.down-f511 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.down-f511 p:last-child {
  margin-bottom: 0;
}

.focus-25b3 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.prev-1c1f {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.steel-9b95 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.steel-9b95 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.steel-9b95 .dirty_b549 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.paragraph-full-a110 {
  max-width: 900px;
  margin: 0 auto;
}

.last-7675 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.filter-fb08 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.filter-fb08.fn-success-a1a1 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.highlight_4c5e {
  font-size: 3rem;
  line-height: 1;
}

.advanced-0902 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.progress_c570 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.progress_outer_ea31,
.dropdown-b951 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.progress_outer_ea31 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.dropdown-b951 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.block_upper_eac7,
.mask-3560 {
  margin: 1.5rem 0;
}

.block_upper_eac7 li,
.mask-3560 li {
  margin-bottom: 1rem;
}

.widget_complex_0151 {
  margin: 3rem 0;
}

.logo_pink_0ccd {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.logo_pink_0ccd h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.logo_pink_0ccd ol {
  margin: 1rem 0;
}

.logo_pink_0ccd li {
  margin-bottom: 0.75rem;
}

.modal-pressed-0e6c {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.item_1702 {
  margin: 2rem 0;
}

.focused_e23b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.chip-thick-a20f {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.primary_635d {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.menu-solid-24ce {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.next-0101 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.bottom_ce72 {
  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;
}

.bottom_ce72 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.next_7be7 {
  flex: 1;
}

.next_7be7 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.outline-silver-4a54 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.green-9ed6 p {
  margin-bottom: 1rem;
}

.badge_warm_7c9b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.row_5850 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.primary-dirty-342a {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.primary-dirty-342a a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.tiny_acfb h3 {
  margin-bottom: 1.5rem;
}

.background_679f {
  display: grid;
  gap: 2rem;
}

.steel_b278 {
  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;
}

.steel_b278 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.steel_b278 h4 {
  margin: 0 0 0.25rem;
}

.steel_b278 p {
  margin: 0;
  font-size: 0.9375rem;
}

.shadow_f407 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.widget-a5b7 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.widget-a5b7 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.widget-a5b7 ul {
  margin: 1.5rem 0;
}

.widget-a5b7 li {
  margin-bottom: 0.75rem;
}

.chip_83aa {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.accordion_focused_507c {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.small_debb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.hover-right-5ef6 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.hover-right-5ef6 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.west-4a96 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.west-4a96 a {
  color: rgba(255, 255, 255, 0.8);
}

.backdrop-steel-04e3 {
  list-style: none;
}

.backdrop-steel-04e3 li {
  margin-bottom: 0.75rem;
}

.backdrop-steel-04e3 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.backdrop-steel-04e3 a:hover {
  color: white;
}

.notice_hard_7ceb {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.list_d063 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.slider_glass_b847 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.focus_9aea {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.slider_4e9e {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .text_dark_1998 {
    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;
  }

  .alert_bronze_6b85 {
    font-size: 1.5rem !important;
  }

  .container-4930 {
    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 */
  .logo-gas-1d3b,
  .dim-a3b6,
  .form-6456,
  .element_d811,
  .red_0a3f,
  .slow-6585,
  .down-f511,
  .disabled_in_e2ae,
  .pro_795c,
  .outer_24c7 {
    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 */
  .glass_aad5 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .widget_4ffd {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .tooltip_thick_4b98 {
    flex-shrink: 0;
  }

  .next_7be7 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .notice_090a,
  .focus_copper_dcd1 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .focus_copper_dcd1 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .sidebar_b357 {
    display: none;
  }

  /* Show mobile actions */
  .header_02e7 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .tertiary_west_c0d9 {
    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;
  }

  .tertiary_west_c0d9 svg {
    flex-shrink: 0;
  }

  .tertiary_west_c0d9 .heading_hard_9d97 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .tertiary_west_c0d9 .soft-0269 {
    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-3be4 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .label-focused-fb73 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .tertiary_west_c0d9:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .alert_center_5480 {
    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;
  }

  .alert_center_5480.fn-active-a1a1 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .alert_center_5480 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .alert_center_5480 li:last-child {
    border-bottom: none;
  }

  .alert_center_5480 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .image_upper_cf33 {
    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;
  }

  .image_upper_cf33 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .image_upper_cf33 li:last-child {
    border-bottom: none;
  }

  .image_upper_cf33 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .stale_2948 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .detail-e6a4 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .clean_6a99,
  .tooltip_5a21 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .clean_6a99 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .tooltip_5a21 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .image_upper_cf33.fn-active-a1a1 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .focused_16c9 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .progress-2085 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .badge_inner_b08d {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .column_aca4 {
    margin-top: 0;
  }

  /* Hero section */
  .column_aca4 {
    padding: 2rem 0 1.5rem;
  }

  .container-4930 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .pro_795c {
    font-size: 1rem;
  }

  /* Hero brand image */
  .accent-fast-8094 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .form_1100 {
    max-width: 100%;
    border-radius: 8px;
  }

  .badge-0464 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .item-2c4a {
    padding: 1rem;
  }

  .filter_4b5b {
    font-size: 1.5rem;
  }

  .background-4510 {
    font-size: 0.75rem;
  }

  .disabled_in_e2ae {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .label_stone_5556 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .label_stone_5556 .dirty_b549 {
    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 */
  .search-basic-6a6f {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .yellow_2374 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .filter-dc77 {
    margin-bottom: 1rem;
  }

  /* Author */
  .button-c4ce {
    flex-direction: column;
  }

  .bottom_ce72 {
    flex-direction: column;
  }

  /* Quotes */
  .red_0a3f {
    flex-direction: column;
  }

  /* Pros/Cons */
  .progress_c570 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .menu-solid-24ce {
    flex-direction: column;
  }

  .menu-solid-24ce .dirty_b549 {
    width: 100%;
  }

  /* Version comparison */
  .focus_5bb4 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .header-671b {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .small_debb {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .slider_glass_b847 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .widget-left-a5bd,
  .hero_17b5,
  .tertiary_iron_a4e1,
  .fluid_e2dd,
  .hero-32b7,
  .black_6cbd {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .widget-left-a5bd table,
  .hero_17b5 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .shadow_d497 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .text_dark_1998 {
    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;
  }

  .alert_bronze_6b85 {
    font-size: 1.25rem !important;
  }

  .container-4930 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .progress-2085 {
    position: fixed;
  }

  .badge_inner_b08d {
    padding: 0.625rem 0;
  }

  .preview_5157 img {
    height: 26px;
  }

  .image_upper_cf33 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .alert_center_5480 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .tertiary_west_c0d9 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .tertiary_west_c0d9 svg {
    width: 18px;
    height: 18px;
  }

  .tertiary_west_c0d9 .heading_hard_9d97 {
    font-size: 0.7rem;
  }

  .tertiary_west_c0d9 .soft-0269 {
    font-size: 0.65rem;
  }

  .clean_6a99,
  .tooltip_5a21 {
    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, .text_dark_1998, .orange-174d, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .accent-fast-8094 {
    padding: 1rem;
  }

  .badge-0464 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .item-2c4a {
    padding: 0.875rem;
  }

  .filter_4b5b {
    font-size: 1.25rem;
  }

  .label_stone_5556 .dirty_b549 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .container-4930 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .dirty_b549 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .section-brown-f191 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .yellow_2374 {
    padding: 1rem;
  }

  .filter-dc77 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .logo-gas-1d3b,
  .grid-hovered-bf93,
  .light_f1a1,
  .row-f3fa {
    padding: 1rem;
  }
}

@media print {
  .progress-2085,
  .smooth-1423,
  .focused_16c9,
  .dirty_b549,
  .accordion_focused_507c {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .text_dark_1998 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.button-hard-5359 {
  margin-bottom: 3rem;
  text-align: center;
}

.alert_bronze_6b85 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.breadcrumb_last_b4cc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.text_gold_9475,
.sort_7e90 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.container_0b5d {
  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;
}

.container_0b5d:hover {
  transform: translateY(-5px);
}

.container_0b5d strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.container_0b5d span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.content-3668 {
  margin: 3rem 0;
}

.media-fast-c7c6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.border-02ad {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.border-02ad:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.static-ff8c {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.stale-005e {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.shadow_bright_12ab {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.slow_7ca7 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.thumbnail-5ca1 {
  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;
}

.thumbnail-5ca1:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.thumbnail-5ca1.outline-e5f9 {
  border-left: 4px solid var(--primary-color);
}

.image-77f6 {
  flex-shrink: 0;
}

.image-77f6 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.video_1d9e {
  flex: 1;
}

.video_1d9e h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.gold-ed23 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hover_7fdb,
.accent_947b,
.text-copper-b1bc {
  margin-bottom: 1.5rem;
}

.hover_7fdb h4,
.accent_947b h4,
.text-copper-b1bc h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hover_7fdb ul,
.accent_947b ul,
.text-copper-b1bc ul {
  list-style: none;
  padding: 0;
}

.hover_7fdb li,
.accent_947b li,
.text-copper-b1bc li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.hover_7fdb li:before,
.accent_947b li:before,
.text-copper-b1bc li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.menu-36af {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.menu-36af 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;
}

.menu-36af a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.pressed_4011 { margin: 2rem 0; }
.card_warm_c397 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.card_warm_c397 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.box_up_a932 p { margin-bottom: 1rem; line-height: 1.7; }
.box_up_a932 strong { color: var(--text-primary); }
.box_up_a932 ul { list-style: none; padding-left: 0; }
.box_up_a932 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.box_up_a932 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.gallery-fefb { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.shade_clean_8ab8 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.shade_clean_8ab8:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.box-north-9272 { font-size: 3rem; margin-bottom: 1rem; }
.shade_clean_8ab8 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.shade_clean_8ab8 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.sort-b33d { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.sort-b33d span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.brown_2aeb { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.purple_b91d { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.detail-f7a7 { text-align: center; }
.disabled-white-35c7 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.tag-31ef { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.soft-cf4e { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.purple_0d0c { margin: 2rem 0; }
.nav-dim-b639 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.nav-dim-b639 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.nav-dim-b639 p, .nav-dim-b639 ul { line-height: 1.7; }
.nav-dim-b639 ul { list-style: none; padding-left: 0; }
.nav-dim-b639 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.nav-dim-b639 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.center_e4f8 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.mask_e874 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.south-8c23 { text-align: center; }
.paragraph-next-fc63 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.logo-6895 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.detail_west_fcf0 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.focus_top_3534 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.summary_black_df87 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.summary_black_df87:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.summary_black_df87 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.summary_black_df87 p, .summary_black_df87 ul { line-height: 1.7; }
.summary_black_df87 ul { list-style: none; padding-left: 0; }
.summary_black_df87 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.summary_black_df87 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 1a15 */
.shadow-element-p5 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.1;
}
