/* ============================================
   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 */
.lower_3bb3 p,
.label_cold_90c4,
.fluid-ef31,
.easy-0c3b,
.footer_liquid_9231,
.fixed_9f8e,
.layout-167a,
.tall_fce7 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.element-0de1 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.element-0de1 > *,
.west_c287,
.lower_3bb3,
.element_stone_7028 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .element-0de1 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .element-0de1 {
    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 === */
.bright_b7ce {
  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 */
.bright_b7ce.hero-prev-626f {
  box-shadow: var(--shadow-md);
}

.shade_8c44 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.element_bronze_2071 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.cold_c1a7 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.clean-0650 {
  display: none;
}

/* Hide mobile actions on desktop */
.border-244f {
  display: none;
}

.last-116b a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.last-116b a:hover,
.last-116b a.fn-active-0523 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.upper_ddb6 {
  margin-left: 1rem;
}

.footer_white_1185 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.widget-orange-1ba3,
.bright_9fb6 {
  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;
}

.widget-orange-1ba3 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.widget-orange-1ba3: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;
}

.bright_9fb6 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.bright_9fb6: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;
}

.widget-orange-1ba3 svg,
.bright_9fb6 svg {
  flex-shrink: 0;
}

.light-2253 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.video_a87d {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.video_a87d::before,
.video_a87d::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.video_a87d::before {
  top: -7px;
}

.video_a87d::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.nav_9540 {
  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 === */
.focus_white_aa75 {
  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);
}

.hidden-pink-4bc2 {
  margin: 0 0 2rem;
  text-align: center;
}

.column-e54c {
  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;
}

.column-e54c:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.module_hard_bcfd {
  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);
}

.module_hard_bcfd strong {
  color: var(--primary-color);
  font-weight: 700;
}

.text_19d2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.lower-64e7 {
  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;
}

.lower-64e7:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.main-54cf {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.warm-db18 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.tertiary-slow-50f5 {
  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);
}

.tertiary-slow-50f5 .panel-c92d {
  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;
}

.tertiary-slow-50f5 .panel-c92d svg {
  flex-shrink: 0;
}

.tertiary-slow-50f5 .warm-1c40 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.tertiary-slow-50f5 .warm-1c40: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);
}

.tertiary-slow-50f5 .pattern_f942 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.tertiary-slow-50f5 .pattern_f942: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) {
  .focus_white_aa75 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .column-e54c {
    max-width: 100%;
  }

  .text_19d2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .lower-64e7 {
    padding: 1rem;
  }

  .main-54cf {
    font-size: 1.5rem;
  }

  .warm-db18 {
    font-size: 0.75rem;
  }

  .module_hard_bcfd {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .tertiary-slow-50f5 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .tertiary-slow-50f5 .panel-c92d {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .text_19d2 {
    grid-template-columns: 1fr;
  }
}

.disabled-60a3 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.background-f864 {
  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 === */
.panel-c3d2 {
  margin-bottom: 2.5rem;
}

.video_3539 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.disabled-60a3 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.slow-b809 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.article-complex-b3dc {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.fast-f637 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tabs_b9cb {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.basic_28e6 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.status_1e15 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.block-96bf {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.block-96bf svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.popup-5aca {
  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);
}

.top-c36b {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.card-current-bd3a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.center_256d {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.row_d759 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.description-gas-582c {
  display: grid;
  gap: 1rem;
}

.footer-dynamic-c74e {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.icon_new_85e6 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.stone-6104 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.north-f0ae {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.widget_west_0f88 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.info_hovered_1181 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.info_hovered_1181 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.label_cold_90c4 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.media_e908 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.gallery-static-1452 {
  display: grid;
  gap: 2rem;
}

.pagination-cool-d892 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.article-complex-b3dc {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.slow-b809 {
  flex: 1;
}

.tabs_b9cb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.tabs_b9cb a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.iron_86c5 {
  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;
}

.basic_28e6 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.down-eae5 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.down-eae5 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.form_lite_6aa1 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.form_lite_6aa1 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.video-855e {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.video-855e strong {
  display: block;
  margin-bottom: 0.75rem;
}

.video-855e ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.video-855e li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.focus-green-40f2 {
  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 === */
.plasma_a6ef {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.filter-complex-fa2a {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.brown_ceb7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.widget-cd01 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.widget-cd01 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.widget-cd01 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.widget-cd01 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;
}

.widget-cd01 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.widget-cd01 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.lower_3bb3 {
  padding: 3rem 0 5rem;
}

.element_stone_7028 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.element_stone_7028.column-iron-4484 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.fluid-ef31 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.stale_b290 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.title_f918 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.title_f918 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.shade-stone-5269 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.dropdown_8abb {
  text-align: center;
}

.secondary_bright_a0db {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.article-6243 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.large-c49b {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.fixed_9f8e {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.easy-0c3b {
  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;
}

.easy-0c3b * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.easy-0c3b:hover {
  box-shadow: var(--shadow-lg);
}

.easy-0c3b.accordion_north_e7b7 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.easy-0c3b h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.easy-0c3b ul {
  margin: 1rem 0;
}

.easy-0c3b li {
  margin-bottom: 0.75rem;
}

.secondary-pressed-7dbb {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.last_e3e1 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.last_e3e1 a {
  font-weight: 600;
}

/* === Data Tables === */
.fluid_f811 {
  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;
}

.fluid_f811 table {
  width: 100%;
  min-width: 600px;
}

.fluid_f811 thead {
  background-color: var(--primary-color);
  color: white;
}

.fluid_f811 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.fluid_f811 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.fluid_f811 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.fluid_f811 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.tertiary_7554 {
  list-style: none;
  margin: 1.5rem 0;
}

.tertiary_7554 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.tertiary_7554 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.grid-abaa::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-0523::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 === */
.footer_3ed2 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.column-purple-73ad {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.column-purple-73ad img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.column-purple-73ad strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.column-purple-73ad span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer_3ed2 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.layout-167a {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.layout-167a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.module_4e30 {
  position: relative;
  margin-bottom: 3rem;
}

.hovered_18ec {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.hovered_18ec .current-5883 {
  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;
}

.hero-bright-8919 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.hero-bright-8919 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.hero-bright-8919 ul {
  margin: 1rem 0;
}

.hero-bright-8919 li {
  margin-bottom: 0.75rem;
}

.status_cool_cd53 {
  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 === */
.highlight-cold-b709 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.highlight-cold-b709 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.right-ac62 {
  list-style: none;
  margin: 1.5rem 0;
}

.right-ac62 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.right-ac62 a {
  font-weight: 600;
}

.gallery_e09a {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.tall_fce7 {
  margin: 2.5rem 0;
}

.hovered_23c5 {
  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;
}

.hovered_23c5:hover {
  box-shadow: var(--shadow-lg);
}

.hovered_23c5.aside-copper-1607 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.search-fe1e {
  flex-shrink: 0;
}

.search-fe1e 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);
}

.brown-5e85 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.notice-first-6d02,
.section_up_0645,
.middle-1dae {
  width: 100%;
  margin: 1.5rem 0;
}

.outline_d8e7 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.outline_d8e7 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.tooltip_d23a {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.tooltip_d23a strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.focus_f3e6 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.focus_f3e6 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.card_prev_3b05 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.narrow-86ba {
  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;
}

.narrow-86ba:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.narrow-86ba.texture-easy-86e6 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.narrow-86ba .static_4dd6 {
  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;
}

.narrow-86ba h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.container-west-826f {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.photo_f7cb {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.photo_f7cb label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.shadow-lite-ad53 {
  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 === */
.panel-c92d {
  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;
}

.warm-1c40 {
  background-color: var(--primary-color);
  color: white;
}

.warm-1c40:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.pattern_f942 {
  background-color: var(--text-secondary);
  color: white;
}

.pattern_f942:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.grid_b741 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.grid_b741:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.red-800f {
  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;
}

.red-800f:hover {
  background-color: var(--primary-dark);
}

.container-last-f772 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.thumbnail_lower_53b4 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.red_34f9 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.module-2390 {
  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 === */
.stale-498c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.alert_1c99 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.alert_1c99 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.action-b5ad {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.module-active-0eed {
  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;
}

.hover-over-5611 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.breadcrumb_083d {
  list-style: none;
  counter-reset: rank-counter;
}

.breadcrumb_083d li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.breadcrumb_083d 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;
}

.notification_first_e030 {
  list-style: none;
}

.notification_first_e030 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.gradient_900c {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.complex-5441 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.complex-5441 .panel_10f9 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.complex-5441 .section_action_6cdb {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.input_advanced_7e90 {
  margin-top: 3rem;
}

.tooltip_c864 {
  width: 100%;
}

.link_8b1f {
  background-color: #fef3c7;
}

.center-3bb1 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.bright-927e {
  margin: 3rem 0;
}

.header_cf97 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.detail_cold_4c25 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.detail_cold_4c25:hover {
  box-shadow: var(--shadow-lg);
}

.detail_cold_4c25.shadow_tiny_a387 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.gold_d9b8 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.gas_4b05 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.gas_4b05 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.video-down-fd65 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.detail_cold_4c25 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.lower_4f5f {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.aside-c3a4 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.action-f6a5 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.component_north_46b8 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.caption_wood_eaca {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.top-e1b5 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.progress-static-dfda {
  max-width: 900px;
  margin: 0 auto;
}

.thumbnail-614e {
  margin: 2rem 0;
}

.old-2d27 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.old-2d27 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.old-2d27 summary::-webkit-details-marker {
  display: none;
}

.old-2d27 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.accordion-da33 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.old-2d27[open] .accordion-da33 {
  transform: rotate(45deg);
}

.shadow_fresh_1c77 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.shadow_fresh_1c77 p:last-child {
  margin-bottom: 0;
}

.surface_simple_9d0e {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.hover-641e {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.right_2453 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.right_2453 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.right_2453 .panel-c92d {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.chip-befa {
  max-width: 900px;
  margin: 0 auto;
}

.tabs_focused_6b5d {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.small_0e67 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.small_0e67.fn-success-0523 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.last-febe {
  font-size: 3rem;
  line-height: 1;
}

.content-ed6c h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.form_copper_22ec {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.summary-d3bd,
.chip_fresh_d1f1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.summary-d3bd h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.chip_fresh_d1f1 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.gold_d47d,
.wood_cca1 {
  margin: 1.5rem 0;
}

.gold_d47d li,
.wood_cca1 li {
  margin-bottom: 1rem;
}

.thick-c1d5 {
  margin: 3rem 0;
}

.wrapper_bdd8 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.wrapper_bdd8 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.wrapper_bdd8 ol {
  margin: 1rem 0;
}

.wrapper_bdd8 li {
  margin-bottom: 0.75rem;
}

.south_1a3a {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.grid_last_4b08 {
  margin: 2rem 0;
}

.notification-motion-dbd3 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.block_5be0 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.text_5c70 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.highlight_c186 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.secondary_tiny_dcb2 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.search_d387 {
  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;
}

.search_d387 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.fast-f637 {
  flex: 1;
}

.fast-f637 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.gold-1d0c {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.stale_9515 p {
  margin-bottom: 1rem;
}

.widget-action-8a67 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.caption-3fe0 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.dynamic_3388 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.dynamic_3388 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.alert-hard-5cf6 h3 {
  margin-bottom: 1.5rem;
}

.bright_f552 {
  display: grid;
  gap: 2rem;
}

.summary-center-b545 {
  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;
}

.summary-center-b545 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.summary-center-b545 h4 {
  margin: 0 0 0.25rem;
}

.summary-center-b545 p {
  margin: 0;
  font-size: 0.9375rem;
}

.silver_e423 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.blue-5aec {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.blue-5aec h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.blue-5aec ul {
  margin: 1.5rem 0;
}

.blue-5aec li {
  margin-bottom: 0.75rem;
}

.list-left-11b2 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.advanced_b16c {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.blue_ce0e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.item_silver_caa8 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.item_silver_caa8 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.module_medium_cd75 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.module_medium_cd75 a {
  color: rgba(255, 255, 255, 0.8);
}

.south-a7ac {
  list-style: none;
}

.south-a7ac li {
  margin-bottom: 0.75rem;
}

.south-a7ac a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.south-a7ac a:hover {
  color: white;
}

.row-soft-cb3b {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.notice_simple_6477 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.fast_3731 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.fixed_05a7 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.huge-bf11 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .element-0de1 {
    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;
  }

  .link_8378 {
    font-size: 1.5rem !important;
  }

  .video_3539 {
    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 */
  .easy-0c3b,
  .footer_liquid_9231,
  .hero-bright-8919,
  .brown-5e85,
  .gold_d9b8,
  .detail_cold_4c25,
  .shadow_fresh_1c77,
  .module_hard_bcfd,
  .label_cold_90c4,
  .fluid-ef31 {
    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 */
  .disabled-60a3 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .slow-b809 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .article-complex-b3dc {
    flex-shrink: 0;
  }

  .fast-f637 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .tabs_b9cb,
  .basic_28e6 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .basic_28e6 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .cold_c1a7 {
    display: none;
  }

  /* Show mobile actions */
  .border-244f {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .dropdown-pink-16e5 {
    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;
  }

  .dropdown-pink-16e5 svg {
    flex-shrink: 0;
  }

  .dropdown-pink-16e5 .highlight-narrow-5366 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .dropdown-pink-16e5 .up-07bb {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .form-tiny-8457 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .clean_49b3 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .dropdown-pink-16e5:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .clean-0650 {
    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;
  }

  .clean-0650.fn-active-0523 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .clean-0650 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .clean-0650 li:last-child {
    border-bottom: none;
  }

  .clean-0650 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .last-116b {
    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;
  }

  .last-116b li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .last-116b li:last-child {
    border-bottom: none;
  }

  .last-116b a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .upper_ddb6 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .footer_white_1185 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .widget-orange-1ba3,
  .bright_9fb6 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .widget-orange-1ba3 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .bright_9fb6 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .last-116b.fn-active-0523 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .light-2253 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .bright_b7ce {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .shade_8c44 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .nav_9540 {
    margin-top: 0;
  }

  /* Hero section */
  .nav_9540 {
    padding: 2rem 0 1.5rem;
  }

  .video_3539 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .label_cold_90c4 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .focus_white_aa75 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .column-e54c {
    max-width: 100%;
    border-radius: 8px;
  }

  .text_19d2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .lower-64e7 {
    padding: 1rem;
  }

  .main-54cf {
    font-size: 1.5rem;
  }

  .warm-db18 {
    font-size: 0.75rem;
  }

  .module_hard_bcfd {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .tertiary-slow-50f5 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .tertiary-slow-50f5 .panel-c92d {
    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 */
  .brown_ceb7 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .hovered_23c5 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .search-fe1e {
    margin-bottom: 1rem;
  }

  /* Author */
  .pagination-cool-d892 {
    flex-direction: column;
  }

  .search_d387 {
    flex-direction: column;
  }

  /* Quotes */
  .gold_d9b8 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .form_copper_22ec {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .highlight_c186 {
    flex-direction: column;
  }

  .highlight_c186 .panel-c92d {
    width: 100%;
  }

  /* Version comparison */
  .card_prev_3b05 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .stale-498c {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .blue_ce0e {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .fast_3731 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .fluid_f811,
  .section_up_0645,
  .input-warm-274b,
  .tooltip_c864,
  .notice-first-6d02,
  .middle-1dae {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .fluid_f811 table,
  .section_up_0645 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-lite-ad53 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .element-0de1 {
    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;
  }

  .link_8378 {
    font-size: 1.25rem !important;
  }

  .video_3539 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .bright_b7ce {
    position: fixed;
  }

  .shade_8c44 {
    padding: 0.625rem 0;
  }

  .element_bronze_2071 img {
    height: 26px;
  }

  .last-116b {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .clean-0650 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .dropdown-pink-16e5 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .dropdown-pink-16e5 svg {
    width: 18px;
    height: 18px;
  }

  .dropdown-pink-16e5 .highlight-narrow-5366 {
    font-size: 0.7rem;
  }

  .dropdown-pink-16e5 .up-07bb {
    font-size: 0.65rem;
  }

  .widget-orange-1ba3,
  .bright_9fb6 {
    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, .element-0de1, .west_c287, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .focus_white_aa75 {
    padding: 1rem;
  }

  .text_19d2 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .lower-64e7 {
    padding: 0.875rem;
  }

  .main-54cf {
    font-size: 1.25rem;
  }

  .tertiary-slow-50f5 .panel-c92d {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .video_3539 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .panel-c92d {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .container-last-f772 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .hovered_23c5 {
    padding: 1rem;
  }

  .search-fe1e span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .easy-0c3b,
  .modal_pro_a3fc,
  .preview-150e,
  .surface_c1ea {
    padding: 1rem;
  }
}

@media print {
  .bright_b7ce,
  .plasma_a6ef,
  .light-2253,
  .panel-c92d,
  .advanced_b16c {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .element-0de1 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.simple-1b94 {
  margin-bottom: 3rem;
  text-align: center;
}

.link_8378 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hover_883d {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.preview_d8b4,
.list-light-7f64 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.sort_619f {
  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;
}

.sort_619f:hover {
  transform: translateY(-5px);
}

.sort_619f strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.sort_619f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.white-4218 {
  margin: 3rem 0;
}

.preview_clean_aa48 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.carousel_2e65 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.carousel_2e65:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.caption_top_aead {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.dirty_ff90 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.picture-out-5d7e {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.widget-tiny-fc83 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.badge-hot-087d {
  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;
}

.badge-hot-087d:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.badge-hot-087d.search_e2fc {
  border-left: 4px solid var(--primary-color);
}

.button-1647 {
  flex-shrink: 0;
}

.button-1647 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.text_copper_3e17 {
  flex: 1;
}

.text_copper_3e17 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.chip-hovered-dea4 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.column-7f11,
.progress-4c29,
.pro_b43d {
  margin-bottom: 1.5rem;
}

.column-7f11 h4,
.progress-4c29 h4,
.pro_b43d h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.column-7f11 ul,
.progress-4c29 ul,
.pro_b43d ul {
  list-style: none;
  padding: 0;
}

.column-7f11 li,
.progress-4c29 li,
.pro_b43d li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.column-7f11 li:before,
.progress-4c29 li:before,
.pro_b43d li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.header-5ea2 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.header-5ea2 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;
}

.header-5ea2 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.simple-c464 { margin: 2rem 0; }
.item-new-9f36 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.item-new-9f36 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.box_6e47 p { margin-bottom: 1rem; line-height: 1.7; }
.box_6e47 strong { color: var(--text-primary); }
.box_6e47 ul { list-style: none; padding-left: 0; }
.box_6e47 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.box_6e47 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.hover-center-68c4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.container_321d { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.container_321d:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.under_1b8a { font-size: 3rem; margin-bottom: 1rem; }
.container_321d h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.container_321d p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.title-west-3aaf { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.title-west-3aaf span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.title-c612 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.description-motion-08cd { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.notice-silver-c0f0 { text-align: center; }
.gradient-5805 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.pressed-7311 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.carousel-2e63 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.white-2e0f { margin: 2rem 0; }
.out-0e8c { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.out-0e8c h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.out-0e8c p, .out-0e8c ul { line-height: 1.7; }
.out-0e8c ul { list-style: none; padding-left: 0; }
.out-0e8c ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.out-0e8c ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.carousel_old_106e { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.cold_7e0e { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.tertiary_purple_be7e { text-align: center; }
.west_793b { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.icon-east-1fda { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.caption_2f05 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.preview_81e8 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.menu_9fa8 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.menu_9fa8:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.menu_9fa8 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.menu_9fa8 p, .menu_9fa8 ul { line-height: 1.7; }
.menu_9fa8 ul { list-style: none; padding-left: 0; }
.menu_9fa8 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.menu_9fa8 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: f47f */
.promo-block-s5 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.0;
}
