/* ============================================
   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 */
.caption-white-1c99 p,
.content_focused_e642,
.header-steel-bb75,
.shade_5fae,
.row-bronze-eea1,
.left-ceb2,
.label-19e4,
.steel_e7da {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.link-pink-cea3 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.link-pink-cea3 > *,
.prev-3f45,
.caption-white-1c99,
.block-green-4012 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .link-pink-cea3 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .link-pink-cea3 {
    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 === */
.wrapper_8bc3 {
  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 */
.wrapper_8bc3.summary_2161 {
  box-shadow: var(--shadow-md);
}

.card-pressed-d40a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.large-ea22 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.modal_silver_da7e {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.chip_old_ea2f {
  display: none;
}

/* Hide mobile actions on desktop */
.element-advanced-c45a {
  display: none;
}

.overlay-dynamic-d750 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.overlay-dynamic-d750 a:hover,
.overlay-dynamic-d750 a.fn-active-013b {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.photo-full-4373 {
  margin-left: 1rem;
}

.selected-20cc {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.tall-6563,
.tooltip-1c95 {
  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;
}

.tall-6563 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.tall-6563: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-1c95 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.tooltip-1c95: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;
}

.tall-6563 svg,
.tooltip-1c95 svg {
  flex-shrink: 0;
}

.new_9c6a {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.full_245c {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.full_245c::before,
.full_245c::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.full_245c::before {
  top: -7px;
}

.full_245c::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.tabs_08e8 {
  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 === */
.grid-dim-cd01 {
  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);
}

.last-4df4 {
  margin: 0 0 2rem;
  text-align: center;
}

.blue-7e34 {
  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;
}

.blue-7e34:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.badge_brown_6c94 {
  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);
}

.badge_brown_6c94 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.image-ec29 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.info-db8b {
  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;
}

.info-db8b:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.popup_dirty_1eaf {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.black_b7ad {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.photo_large_8980 {
  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);
}

.photo_large_8980 .text_1348 {
  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;
}

.photo_large_8980 .text_1348 svg {
  flex-shrink: 0;
}

.photo_large_8980 .old_083c {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.photo_large_8980 .old_083c: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);
}

.photo_large_8980 .orange-9185 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.photo_large_8980 .orange-9185: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) {
  .grid-dim-cd01 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .blue-7e34 {
    max-width: 100%;
  }

  .image-ec29 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .info-db8b {
    padding: 1rem;
  }

  .popup_dirty_1eaf {
    font-size: 1.5rem;
  }

  .black_b7ad {
    font-size: 0.75rem;
  }

  .badge_brown_6c94 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .photo_large_8980 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .photo_large_8980 .text_1348 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .image-ec29 {
    grid-template-columns: 1fr;
  }
}

.frame_outer_2cca {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.static_3c5e {
  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 === */
.sidebar-11b7 {
  margin-bottom: 2.5rem;
}

.widget_3dfa {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.frame_outer_2cca {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.wide_7358 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.item-bottom-c318 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.texture-focused-2861 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.photo_left_7761 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.border_static_3a1f {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.lower-4ba8 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.easy_412a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.easy_412a svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.wood-8a95 {
  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);
}

.header_under_f450 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.container-outer-90ef {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.list-bright-b2b6 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.focus-ff77 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.huge_c2e1 {
  display: grid;
  gap: 1rem;
}

.liquid_2fb6 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.north_ab47 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.rough_2297 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.pink_350a {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.input_e776 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.modal_bronze_8f0f {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.modal_bronze_8f0f p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.content_focused_e642 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.lite-3860 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.heading-e584 {
  display: grid;
  gap: 2rem;
}

.short-d662 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.item-bottom-c318 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.wide_7358 {
  flex: 1;
}

.photo_left_7761 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.photo_left_7761 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.card-d7d3 {
  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;
}

.border_static_3a1f {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.texture-acdc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.texture-acdc span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.narrow_5a4e {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.narrow_5a4e a {
  font-size: 0.875rem;
  font-weight: 500;
}

.overlay-354d {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.overlay-354d strong {
  display: block;
  margin-bottom: 0.75rem;
}

.overlay-354d ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.overlay-354d li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.lower-c403 {
  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 === */
.widget-thick-3eec {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.advanced_c769 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.highlight_iron_87c8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.hover-lite-79df h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.hover-lite-79df ol {
  list-style: none;
  counter-reset: toc-counter;
}

.hover-lite-79df ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.hover-lite-79df 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;
}

.hover-lite-79df ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.hover-lite-79df ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.caption-white-1c99 {
  padding: 3rem 0 5rem;
}

.block-green-4012 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.block-green-4012.footer_5f8c {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.header-steel-bb75 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.bottom-2cd2 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.active-fd2a {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.active-fd2a h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.tooltip-next-2f42 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.main-0c72 {
  text-align: center;
}

.photo_first_d21c {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.disabled_complex_37ac {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.small-23f5 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.left-ceb2 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.shade_5fae {
  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;
}

.shade_5fae * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.shade_5fae:hover {
  box-shadow: var(--shadow-lg);
}

.shade_5fae.section_dcbe {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.shade_5fae h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.shade_5fae ul {
  margin: 1rem 0;
}

.shade_5fae li {
  margin-bottom: 0.75rem;
}

.first-50f5 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.preview_hard_024d {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.preview_hard_024d a {
  font-weight: 600;
}

/* === Data Tables === */
.menu-large-00c4 {
  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;
}

.menu-large-00c4 table {
  width: 100%;
  min-width: 600px;
}

.menu-large-00c4 thead {
  background-color: var(--primary-color);
  color: white;
}

.menu-large-00c4 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.menu-large-00c4 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.menu-large-00c4 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.menu-large-00c4 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.current_98a1 {
  list-style: none;
  margin: 1.5rem 0;
}

.current_98a1 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.current_98a1 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.secondary_bc6c::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-013b::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 === */
.hover-narrow-1b66 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.right-b1ad {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.right-b1ad img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.right-b1ad strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.right-b1ad span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hover-narrow-1b66 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.label-19e4 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.label-19e4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.red-861f {
  position: relative;
  margin-bottom: 3rem;
}

.copper-6d78 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.copper-6d78 .section_red_b22d {
  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;
}

.south-3ec7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.south-3ec7 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.south-3ec7 ul {
  margin: 1rem 0;
}

.south-3ec7 li {
  margin-bottom: 0.75rem;
}

.link-cool-e5d2 {
  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 === */
.wood-5650 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.wood-5650 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.badge_4c1c {
  list-style: none;
  margin: 1.5rem 0;
}

.badge_4c1c li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.badge_4c1c a {
  font-weight: 600;
}

.first_6766 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.steel_e7da {
  margin: 2.5rem 0;
}

.action-5300 {
  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;
}

.action-5300:hover {
  box-shadow: var(--shadow-lg);
}

.action-5300.shadow-first-7a47 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.popup-glass-7128 {
  flex-shrink: 0;
}

.popup-glass-7128 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);
}

.iron-857f h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.progress_stone_ea7b,
.gradient-fffa,
.hero_9b49 {
  width: 100%;
  margin: 1.5rem 0;
}

.north_f6f1 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.north_f6f1 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.hovered_afcd {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.hovered_afcd strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.element-pressed-a4a7 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.element-pressed-a4a7 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.static-94d3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.form_59ef {
  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;
}

.form_59ef:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.form_59ef.image_fixed_fa3e {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.form_59ef .caption_904c {
  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;
}

.form_59ef h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.cool-ca2e {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.bronze-89cd {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.bronze-89cd label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.lite_6e67 {
  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 === */
.text_1348 {
  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;
}

.old_083c {
  background-color: var(--primary-color);
  color: white;
}

.old_083c:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.orange-9185 {
  background-color: var(--text-secondary);
  color: white;
}

.orange-9185:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.text_pressed_872a {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.text_pressed_872a:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.smooth-f00a {
  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;
}

.smooth-f00a:hover {
  background-color: var(--primary-dark);
}

.gallery_clean_03bc {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.caption_dbe1 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.thumbnail-left-20d0 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.glass_88e3 {
  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 === */
.avatar-9982 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.texture-4e7d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.texture-4e7d h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.cold_251b {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.column_west_a1b3 {
  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;
}

.element-fresh-4ecc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.popup-054b {
  list-style: none;
  counter-reset: rank-counter;
}

.popup-054b li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.popup-054b 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;
}

.lite-c65b {
  list-style: none;
}

.lite-c65b li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.full_4067 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.gas_eee6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.gas_eee6 .outer_a547 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.gas_eee6 .button_6610 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.chip-mini-236c {
  margin-top: 3rem;
}

.tag_basic_6841 {
  width: 100%;
}

.pink-1d9f {
  background-color: #fef3c7;
}

.hovered_4b5e {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.column-30cd {
  margin: 3rem 0;
}

.outline_narrow_9e9f {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.article-red-4540 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.article-red-4540:hover {
  box-shadow: var(--shadow-lg);
}

.article-red-4540.paragraph_3d87 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.liquid_1093 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.badge_cool_5c3b strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.badge_cool_5c3b span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.basic-ac8a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.article-red-4540 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.basic-7e0a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.notice_active_3601 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.logo_white_93e2 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.medium-5e9d {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.mask_5666 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.box-lower-9e12 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.message-d4ed {
  max-width: 900px;
  margin: 0 auto;
}

.main_pink_cf39 {
  margin: 2rem 0;
}

.detail-static-5779 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.detail-static-5779 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.detail-static-5779 summary::-webkit-details-marker {
  display: none;
}

.detail-static-5779 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.right_b3f9 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.detail-static-5779[open] .right_b3f9 {
  transform: rotate(45deg);
}

.column_de92 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.column_de92 p:last-child {
  margin-bottom: 0;
}

.short_9a28 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.dropdown_ac73 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.top_034a {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.top_034a p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.top_034a .text_1348 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.avatar-fluid-4ddc {
  max-width: 900px;
  margin: 0 auto;
}

.popup-first-2c9f {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.mask-red-1d9e {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.mask-red-1d9e.fn-success-013b {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.blue-5c93 {
  font-size: 3rem;
  line-height: 1;
}

.table_d4cd h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.bottom_a731 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.sidebar_fresh_2739,
.description_selected_1086 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.sidebar_fresh_2739 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.description_selected_1086 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.pattern_e637,
.header-cold-c5ea {
  margin: 1.5rem 0;
}

.pattern_e637 li,
.header-cold-c5ea li {
  margin-bottom: 1rem;
}

.up_bc9f {
  margin: 3rem 0;
}

.progress_out_34f9 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.progress_out_34f9 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.progress_out_34f9 ol {
  margin: 1rem 0;
}

.progress_out_34f9 li {
  margin-bottom: 0.75rem;
}

.small_ac57 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.hero-c3fc {
  margin: 2rem 0;
}

.center-c9d9 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.overlay-red-4e02 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.paragraph_1c26 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.input_wide_32e1 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.white-b8b2 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.thick-4f28 {
  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;
}

.thick-4f28 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.texture-focused-2861 {
  flex: 1;
}

.texture-focused-2861 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.outline-174f {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero_1e01 p {
  margin-bottom: 1rem;
}

.photo_out_fd84 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.disabled-simple-ccce {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.fresh_0aab {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.fresh_0aab a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.soft_7425 h3 {
  margin-bottom: 1.5rem;
}

.sidebar-26b9 {
  display: grid;
  gap: 2rem;
}

.fluid-1550 {
  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;
}

.fluid-1550 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.fluid-1550 h4 {
  margin: 0 0 0.25rem;
}

.fluid-1550 p {
  margin: 0;
  font-size: 0.9375rem;
}

.liquid_7ae6 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.right-93f4 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.right-93f4 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.right-93f4 ul {
  margin: 1.5rem 0;
}

.right-93f4 li {
  margin-bottom: 0.75rem;
}

.element_e1f3 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.pagination_37e2 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.plasma-eb28 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.motion-9519 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.motion-9519 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.list-4aea {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.list-4aea a {
  color: rgba(255, 255, 255, 0.8);
}

.pagination_407a {
  list-style: none;
}

.pagination_407a li {
  margin-bottom: 0.75rem;
}

.pagination_407a a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.pagination_407a a:hover {
  color: white;
}

.box-in-b57d {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.label_2045 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.west-e97f {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.avatar-brown-7e95 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.soft_7f3f {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .link-pink-cea3 {
    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;
  }

  .down_450e {
    font-size: 1.5rem !important;
  }

  .widget_3dfa {
    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 */
  .shade_5fae,
  .row-bronze-eea1,
  .south-3ec7,
  .iron-857f,
  .liquid_1093,
  .article-red-4540,
  .column_de92,
  .badge_brown_6c94,
  .content_focused_e642,
  .header-steel-bb75 {
    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 */
  .frame_outer_2cca {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .wide_7358 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .item-bottom-c318 {
    flex-shrink: 0;
  }

  .texture-focused-2861 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .photo_left_7761,
  .border_static_3a1f {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .border_static_3a1f {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .modal_silver_da7e {
    display: none;
  }

  /* Show mobile actions */
  .element-advanced-c45a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .box-inner-ca0a {
    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;
  }

  .box-inner-ca0a svg {
    flex-shrink: 0;
  }

  .box-inner-ca0a .warm-5e13 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .box-inner-ca0a .cool_23ae {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .nav_aaf5 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .bright-af49 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .box-inner-ca0a:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .chip_old_ea2f {
    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;
  }

  .chip_old_ea2f.fn-active-013b {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .chip_old_ea2f li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .chip_old_ea2f li:last-child {
    border-bottom: none;
  }

  .chip_old_ea2f a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .overlay-dynamic-d750 {
    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;
  }

  .overlay-dynamic-d750 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .overlay-dynamic-d750 li:last-child {
    border-bottom: none;
  }

  .overlay-dynamic-d750 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .photo-full-4373 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .selected-20cc {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .tall-6563,
  .tooltip-1c95 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .tall-6563 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .tooltip-1c95 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .overlay-dynamic-d750.fn-active-013b {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .new_9c6a {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .wrapper_8bc3 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .card-pressed-d40a {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .tabs_08e8 {
    margin-top: 0;
  }

  /* Hero section */
  .tabs_08e8 {
    padding: 2rem 0 1.5rem;
  }

  .widget_3dfa {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .content_focused_e642 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .grid-dim-cd01 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .blue-7e34 {
    max-width: 100%;
    border-radius: 8px;
  }

  .image-ec29 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .info-db8b {
    padding: 1rem;
  }

  .popup_dirty_1eaf {
    font-size: 1.5rem;
  }

  .black_b7ad {
    font-size: 0.75rem;
  }

  .badge_brown_6c94 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .photo_large_8980 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .photo_large_8980 .text_1348 {
    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 */
  .highlight_iron_87c8 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .action-5300 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .popup-glass-7128 {
    margin-bottom: 1rem;
  }

  /* Author */
  .short-d662 {
    flex-direction: column;
  }

  .thick-4f28 {
    flex-direction: column;
  }

  /* Quotes */
  .liquid_1093 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .bottom_a731 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .input_wide_32e1 {
    flex-direction: column;
  }

  .input_wide_32e1 .text_1348 {
    width: 100%;
  }

  /* Version comparison */
  .static-94d3 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .avatar-9982 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .plasma-eb28 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .west-e97f {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .menu-large-00c4,
  .gradient-fffa,
  .easy_c530,
  .tag_basic_6841,
  .progress_stone_ea7b,
  .hero_9b49 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .menu-large-00c4 table,
  .gradient-fffa table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .lite_6e67 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .link-pink-cea3 {
    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;
  }

  .down_450e {
    font-size: 1.25rem !important;
  }

  .widget_3dfa {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .wrapper_8bc3 {
    position: fixed;
  }

  .card-pressed-d40a {
    padding: 0.625rem 0;
  }

  .large-ea22 img {
    height: 26px;
  }

  .overlay-dynamic-d750 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .chip_old_ea2f {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .box-inner-ca0a {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .box-inner-ca0a svg {
    width: 18px;
    height: 18px;
  }

  .box-inner-ca0a .warm-5e13 {
    font-size: 0.7rem;
  }

  .box-inner-ca0a .cool_23ae {
    font-size: 0.65rem;
  }

  .tall-6563,
  .tooltip-1c95 {
    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, .link-pink-cea3, .prev-3f45, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .grid-dim-cd01 {
    padding: 1rem;
  }

  .image-ec29 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .info-db8b {
    padding: 0.875rem;
  }

  .popup_dirty_1eaf {
    font-size: 1.25rem;
  }

  .photo_large_8980 .text_1348 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .widget_3dfa {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .text_1348 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .gallery_clean_03bc {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .action-5300 {
    padding: 1rem;
  }

  .popup-glass-7128 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .shade_5fae,
  .paper-1afe,
  .caption_dcf1,
  .column-8710 {
    padding: 1rem;
  }
}

@media print {
  .wrapper_8bc3,
  .widget-thick-3eec,
  .new_9c6a,
  .text_1348,
  .pagination_37e2 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .link-pink-cea3 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.fresh_b07a {
  margin-bottom: 3rem;
  text-align: center;
}

.down_450e {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.banner_e3af {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.modal_a8c3,
.widget-b210 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.photo_copper_3e94 {
  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;
}

.photo_copper_3e94:hover {
  transform: translateY(-5px);
}

.photo_copper_3e94 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.photo_copper_3e94 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.content-hard-45ff {
  margin: 3rem 0;
}

.logo-9c40 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.fluid-25d6 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.fluid-25d6:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.media_thick_5d47 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.element-hovered-377b {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.hidden-b7f2 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.short_cf93 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.background-narrow-6e13 {
  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;
}

.background-narrow-6e13:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.background-narrow-6e13.photo_selected_168a {
  border-left: 4px solid var(--primary-color);
}

.shade_cold_1e10 {
  flex-shrink: 0;
}

.shade_cold_1e10 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.modal-57f8 {
  flex: 1;
}

.modal-57f8 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.overlay_stale_c78f {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.liquid-49c2,
.media_8274,
.dropdown_a4c5 {
  margin-bottom: 1.5rem;
}

.liquid-49c2 h4,
.media_8274 h4,
.dropdown_a4c5 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.liquid-49c2 ul,
.media_8274 ul,
.dropdown_a4c5 ul {
  list-style: none;
  padding: 0;
}

.liquid-49c2 li,
.media_8274 li,
.dropdown_a4c5 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.liquid-49c2 li:before,
.media_8274 li:before,
.dropdown_a4c5 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.basic_015c {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.basic_015c 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;
}

.basic_015c a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.fixed-e732 { margin: 2rem 0; }
.tall-bc03 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.tall-bc03 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.text_dynamic_d3b8 p { margin-bottom: 1rem; line-height: 1.7; }
.text_dynamic_d3b8 strong { color: var(--text-primary); }
.text_dynamic_d3b8 ul { list-style: none; padding-left: 0; }
.text_dynamic_d3b8 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.text_dynamic_d3b8 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.secondary_lower_cbe7 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.video_0a1a { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.video_0a1a:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.input-b335 { font-size: 3rem; margin-bottom: 1rem; }
.video_0a1a h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.video_0a1a p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.mask_96e0 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.mask_96e0 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.right-dbb2 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.sidebar-1822 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.rough_4298 { text-align: center; }
.upper-3cc1 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.active_gold_c78f { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.stale-2ecd { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.photo-8767 { margin: 2rem 0; }
.search-next-8798 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.search-next-8798 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.search-next-8798 p, .search-next-8798 ul { line-height: 1.7; }
.search-next-8798 ul { list-style: none; padding-left: 0; }
.search-next-8798 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.search-next-8798 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.copper_d6e7 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.link_thick_188c { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.solid-b77a { text-align: center; }
.south_9dc1 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.pattern-down-8067 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.shadow_03af { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.summary_action_3303 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.thick-af41 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.thick-af41:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.thick-af41 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.thick-af41 p, .thick-af41 ul { line-height: 1.7; }
.thick-af41 ul { list-style: none; padding-left: 0; }
.thick-af41 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.thick-af41 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 9b5c */
.ghost-box-k9 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.3;
}
