/* ============================================
   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 */
.hover_cf5e p,
.tooltip_3d14,
.easy_5430,
.outer_5af3,
.paragraph-fixed-d774,
.sort_a109,
.prev-d1c8,
.column_cold_fdb8 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.image-rough-6784 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.image-rough-6784 > *,
.summary_green_1ed1,
.hover_cf5e,
.old-8bc0 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .image-rough-6784 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .image-rough-6784 {
    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 === */
.upper-239a {
  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 */
.upper-239a.badge-fluid-3fbf {
  box-shadow: var(--shadow-md);
}

.mask-slow-0299 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.box-f7f4 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.wide_e654 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.caption-1381 {
  display: none;
}

/* Hide mobile actions on desktop */
.footer_6808 {
  display: none;
}

.plasma-3344 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.plasma-3344 a:hover,
.plasma-3344 a.fn-active-4392 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.modal_89ba {
  margin-left: 1rem;
}

.gallery-fresh-fe7a {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.disabled_yellow_d29a,
.message-d3fe {
  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;
}

.disabled_yellow_d29a {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.disabled_yellow_d29a: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;
}

.message-d3fe {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.message-d3fe: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;
}

.disabled_yellow_d29a svg,
.message-d3fe svg {
  flex-shrink: 0;
}

.preview-24d3 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.south_1641 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.south_1641::before,
.south_1641::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.south_1641::before {
  top: -7px;
}

.south_1641::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.module-3550 {
  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 === */
.button-center-9bdc {
  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);
}

.simple_ea7a {
  margin: 0 0 2rem;
  text-align: center;
}

.backdrop_bright_bf5c {
  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;
}

.backdrop_bright_bf5c:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.over-6c2a {
  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);
}

.over-6c2a strong {
  color: var(--primary-color);
  font-weight: 700;
}

.image_hard_ad3b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.small_a5b5 {
  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;
}

.small_a5b5:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.glass_8611 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.box_new_dc67 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.basic_0f5f {
  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);
}

.basic_0f5f .black_315b {
  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;
}

.basic_0f5f .black_315b svg {
  flex-shrink: 0;
}

.basic_0f5f .label_stone_9d1a {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.basic_0f5f .label_stone_9d1a: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);
}

.basic_0f5f .logo-9895 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.basic_0f5f .logo-9895: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) {
  .button-center-9bdc {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .backdrop_bright_bf5c {
    max-width: 100%;
  }

  .image_hard_ad3b {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .small_a5b5 {
    padding: 1rem;
  }

  .glass_8611 {
    font-size: 1.5rem;
  }

  .box_new_dc67 {
    font-size: 0.75rem;
  }

  .over-6c2a {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .basic_0f5f {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .basic_0f5f .black_315b {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .image_hard_ad3b {
    grid-template-columns: 1fr;
  }
}

.picture_c3ee {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.main-2c65 {
  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 === */
.sort-a585 {
  margin-bottom: 2.5rem;
}

.content_left_04db {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.picture_c3ee {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.component_active_f811 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.input-f3ae {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.filter-north-b39c {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.text_bronze_5698 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.outline_3e08 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.sort-5f69 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.link_bfdf {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.link_bfdf svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.highlight_fast_52b2 {
  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);
}

.fast_d584 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.outline_first_ee2a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.overlay-easy-94be {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.over_77a3 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.card_orange_4319 {
  display: grid;
  gap: 1rem;
}

.gallery-a2cf {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.simple_fddf {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.notice_glass_2c7b {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.orange_4cae {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.modal-purple-c332 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.advanced-a573 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.advanced-a573 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.tooltip_3d14 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.primary-754b {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.title-df01 {
  display: grid;
  gap: 2rem;
}

.link_09d9 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.input-f3ae {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.component_active_f811 {
  flex: 1;
}

.text_bronze_5698 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.text_bronze_5698 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.fresh_68e1 {
  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;
}

.outline_3e08 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.disabled_liquid_cac1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.disabled_liquid_cac1 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.label-light-39e5 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.label-light-39e5 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.paper-b146 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.paper-b146 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.paper-b146 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.paper-b146 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.grid-medium-2218 {
  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 === */
.message-f2c7 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.input_medium_5c51 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.tabs_outer_4a58 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.fixed-e62f h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.fixed-e62f ol {
  list-style: none;
  counter-reset: toc-counter;
}

.fixed-e62f ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.fixed-e62f 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;
}

.fixed-e62f ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.fixed-e62f ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.hover_cf5e {
  padding: 3rem 0 5rem;
}

.old-8bc0 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.old-8bc0.plasma-7310 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.easy_5430 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.purple-7b25 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.east_6359 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.east_6359 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.notice-ef53 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.top-b2c7 {
  text-align: center;
}

.footer_middle_a0cf {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.first-c14b {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.primary_smooth_7c33 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.sort_a109 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.outer_5af3 {
  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;
}

.outer_5af3 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.outer_5af3:hover {
  box-shadow: var(--shadow-lg);
}

.outer_5af3.thick-8427 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.outer_5af3 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.outer_5af3 ul {
  margin: 1rem 0;
}

.outer_5af3 li {
  margin-bottom: 0.75rem;
}

.icon_640d {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.breadcrumb_ebbd {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.breadcrumb_ebbd a {
  font-weight: 600;
}

/* === Data Tables === */
.article-purple-8dda {
  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;
}

.article-purple-8dda table {
  width: 100%;
  min-width: 600px;
}

.article-purple-8dda thead {
  background-color: var(--primary-color);
  color: white;
}

.article-purple-8dda th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.article-purple-8dda td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.article-purple-8dda tbody tr:hover {
  background-color: var(--bg-secondary);
}

.article-purple-8dda tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.image_orange_44dd {
  list-style: none;
  margin: 1.5rem 0;
}

.image_orange_44dd li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.image_orange_44dd li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.wide_02d7::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-4392::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 === */
.photo-clean-c22d {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.gradient-upper-fc05 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.gradient-upper-fc05 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.gradient-upper-fc05 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.gradient-upper-fc05 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.photo-clean-c22d blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.prev-d1c8 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.prev-d1c8::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.hard_76b0 {
  position: relative;
  margin-bottom: 3rem;
}

.row_f219 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.row_f219 .label-east-8743 {
  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;
}

.header-middle-bc39 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.header-middle-bc39 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.header-middle-bc39 ul {
  margin: 1rem 0;
}

.header-middle-bc39 li {
  margin-bottom: 0.75rem;
}

.text-tiny-559e {
  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 === */
.focus-hard-d424 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.focus-hard-d424 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.advanced_1f58 {
  list-style: none;
  margin: 1.5rem 0;
}

.advanced_1f58 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.advanced_1f58 a {
  font-weight: 600;
}

.background-purple-db04 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.column_cold_fdb8 {
  margin: 2.5rem 0;
}

.slow-2174 {
  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;
}

.slow-2174:hover {
  box-shadow: var(--shadow-lg);
}

.slow-2174.widget_1c2d {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.silver-0178 {
  flex-shrink: 0;
}

.silver-0178 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);
}

.layout_active_202e h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.prev_408e,
.photo_hard_0f28,
.gold-c671 {
  width: 100%;
  margin: 1.5rem 0;
}

.label-east-440f {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.label-east-440f strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.active_over_47d9 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.active_over_47d9 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.sort_b2dc {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.sort_b2dc strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.highlight_dc20 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.summary-5d8d {
  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;
}

.summary-5d8d:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.summary-5d8d.bottom_2580 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.summary-5d8d .accordion-4855 {
  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;
}

.summary-5d8d h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.disabled-3f9f {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.gradient-lower-b57c {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.gradient-lower-b57c label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.main-3999 {
  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 === */
.black_315b {
  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;
}

.label_stone_9d1a {
  background-color: var(--primary-color);
  color: white;
}

.label_stone_9d1a:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.logo-9895 {
  background-color: var(--text-secondary);
  color: white;
}

.logo-9895:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.center_bb91 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.center_bb91:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.popup_e128 {
  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;
}

.popup_e128:hover {
  background-color: var(--primary-dark);
}

.element-5ca8 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.feature-cool-bdca {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.hover-selected-d48a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.notice-tiny-7d96 {
  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 === */
.article-d80d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.layout-1947 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.layout-1947 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.cold_c8ae {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.hover_ed9f {
  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;
}

.grid_green_9f96 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.feature-908b {
  list-style: none;
  counter-reset: rank-counter;
}

.feature-908b li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.feature-908b 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;
}

.photo-complex-ed4c {
  list-style: none;
}

.photo-complex-ed4c li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.menu-1ccb {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.caption_over_1dba {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.caption_over_1dba .panel-copper-fb8c {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.caption_over_1dba .hovered_be1b {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.surface-top-87a9 {
  margin-top: 3rem;
}

.dark_6635 {
  width: 100%;
}

.carousel_north_de79 {
  background-color: #fef3c7;
}

.module-718c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.slider-aae2 {
  margin: 3rem 0;
}

.section-bf49 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.heading_0a88 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.heading_0a88:hover {
  box-shadow: var(--shadow-lg);
}

.heading_0a88.notice-bronze-a434 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.top-e99a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.alert-bronze-ae87 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.alert-bronze-ae87 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.fixed-aa08 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.heading_0a88 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.avatar-stone-b18b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tabs_7e7d {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.first_d202 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.gallery-basic-271f {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.backdrop-9ced {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.paper_a5e5 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.secondary-16b6 {
  max-width: 900px;
  margin: 0 auto;
}

.form-1c43 {
  margin: 2rem 0;
}

.message_5b50 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.message_5b50 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.message_5b50 summary::-webkit-details-marker {
  display: none;
}

.message_5b50 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.progress-3101 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.message_5b50[open] .progress-3101 {
  transform: rotate(45deg);
}

.form_303f {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.form_303f p:last-child {
  margin-bottom: 0;
}

.block-mini-cb89 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.south-fe4b {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.dirty_187b {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.dirty_187b p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.dirty_187b .black_315b {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.over-e05c {
  max-width: 900px;
  margin: 0 auto;
}

.surface-orange-f926 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.primary_2f0d {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.primary_2f0d.fn-success-4392 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.tall_a6cb {
  font-size: 3rem;
  line-height: 1;
}

.detail_12b6 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.banner-d1b6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.mask_44b5,
.focus_c258 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.mask_44b5 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.focus_c258 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.black-d7d6,
.outline_41ca {
  margin: 1.5rem 0;
}

.black-d7d6 li,
.outline_41ca li {
  margin-bottom: 1rem;
}

.info-e06a {
  margin: 3rem 0;
}

.pro-41b5 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.pro-41b5 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.pro-41b5 ol {
  margin: 1rem 0;
}

.pro-41b5 li {
  margin-bottom: 0.75rem;
}

.notification-pressed-1594 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.up_1e01 {
  margin: 2rem 0;
}

.wrapper_first_88b8 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.gradient-8706 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.fresh_343c {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.tertiary-959a {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.silver-866f {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.hero-up-4646 {
  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;
}

.hero-up-4646 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.filter-north-b39c {
  flex: 1;
}

.filter-north-b39c h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.breadcrumb_purple_15e1 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.breadcrumb-dynamic-09f9 p {
  margin-bottom: 1rem;
}

.warm-cd26 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.texture_5fbb {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.block_94ad {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.block_94ad a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.accent_soft_4386 h3 {
  margin-bottom: 1.5rem;
}

.light_0609 {
  display: grid;
  gap: 2rem;
}

.section-right-619f {
  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;
}

.section-right-619f img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.section-right-619f h4 {
  margin: 0 0 0.25rem;
}

.section-right-619f p {
  margin: 0;
  font-size: 0.9375rem;
}

.feature-12f2 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.shadow_f3c4 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.shadow_f3c4 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.shadow_f3c4 ul {
  margin: 1.5rem 0;
}

.shadow_f3c4 li {
  margin-bottom: 0.75rem;
}

.light_91dc {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.aside-huge-df29 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.first-d0cd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.picture_b8db h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.picture_b8db p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.wrapper-2e46 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.wrapper-2e46 a {
  color: rgba(255, 255, 255, 0.8);
}

.border-2089 {
  list-style: none;
}

.border-2089 li {
  margin-bottom: 0.75rem;
}

.border-2089 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.border-2089 a:hover {
  color: white;
}

.row-59a5 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.active_be72 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.video_bc2a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.caption_wide_25de {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.dirty_faca {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .image-rough-6784 {
    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;
  }

  .tall_969c {
    font-size: 1.5rem !important;
  }

  .content_left_04db {
    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 */
  .outer_5af3,
  .paragraph-fixed-d774,
  .header-middle-bc39,
  .layout_active_202e,
  .top-e99a,
  .heading_0a88,
  .form_303f,
  .over-6c2a,
  .tooltip_3d14,
  .easy_5430 {
    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 */
  .picture_c3ee {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .component_active_f811 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .input-f3ae {
    flex-shrink: 0;
  }

  .filter-north-b39c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .text_bronze_5698,
  .outline_3e08 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .outline_3e08 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .wide_e654 {
    display: none;
  }

  /* Show mobile actions */
  .footer_6808 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .grid-slow-24ef {
    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;
  }

  .grid-slow-24ef svg {
    flex-shrink: 0;
  }

  .grid-slow-24ef .modal-dirty-7b39 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .grid-slow-24ef .section_hard_eeff {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .dropdown_01a0 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .background-c287 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .grid-slow-24ef:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .caption-1381 {
    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;
  }

  .caption-1381.fn-active-4392 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .caption-1381 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .caption-1381 li:last-child {
    border-bottom: none;
  }

  .caption-1381 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .plasma-3344 {
    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;
  }

  .plasma-3344 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .plasma-3344 li:last-child {
    border-bottom: none;
  }

  .plasma-3344 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .modal_89ba {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .gallery-fresh-fe7a {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .disabled_yellow_d29a,
  .message-d3fe {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .disabled_yellow_d29a {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .message-d3fe {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .plasma-3344.fn-active-4392 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .preview-24d3 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .upper-239a {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .mask-slow-0299 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .module-3550 {
    margin-top: 0;
  }

  /* Hero section */
  .module-3550 {
    padding: 2rem 0 1.5rem;
  }

  .content_left_04db {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .tooltip_3d14 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .button-center-9bdc {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .backdrop_bright_bf5c {
    max-width: 100%;
    border-radius: 8px;
  }

  .image_hard_ad3b {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .small_a5b5 {
    padding: 1rem;
  }

  .glass_8611 {
    font-size: 1.5rem;
  }

  .box_new_dc67 {
    font-size: 0.75rem;
  }

  .over-6c2a {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .basic_0f5f {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .basic_0f5f .black_315b {
    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 */
  .tabs_outer_4a58 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .slow-2174 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .silver-0178 {
    margin-bottom: 1rem;
  }

  /* Author */
  .link_09d9 {
    flex-direction: column;
  }

  .hero-up-4646 {
    flex-direction: column;
  }

  /* Quotes */
  .top-e99a {
    flex-direction: column;
  }

  /* Pros/Cons */
  .banner-d1b6 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .tertiary-959a {
    flex-direction: column;
  }

  .tertiary-959a .black_315b {
    width: 100%;
  }

  /* Version comparison */
  .highlight_dc20 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .article-d80d {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .first-d0cd {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .video_bc2a {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .article-purple-8dda,
  .photo_hard_0f28,
  .paragraph_002e,
  .dark_6635,
  .prev_408e,
  .gold-c671 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .article-purple-8dda table,
  .photo_hard_0f28 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .main-3999 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .image-rough-6784 {
    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;
  }

  .tall_969c {
    font-size: 1.25rem !important;
  }

  .content_left_04db {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .upper-239a {
    position: fixed;
  }

  .mask-slow-0299 {
    padding: 0.625rem 0;
  }

  .box-f7f4 img {
    height: 26px;
  }

  .plasma-3344 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .caption-1381 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .grid-slow-24ef {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .grid-slow-24ef svg {
    width: 18px;
    height: 18px;
  }

  .grid-slow-24ef .modal-dirty-7b39 {
    font-size: 0.7rem;
  }

  .grid-slow-24ef .section_hard_eeff {
    font-size: 0.65rem;
  }

  .disabled_yellow_d29a,
  .message-d3fe {
    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, .image-rough-6784, .summary_green_1ed1, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .button-center-9bdc {
    padding: 1rem;
  }

  .image_hard_ad3b {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .small_a5b5 {
    padding: 0.875rem;
  }

  .glass_8611 {
    font-size: 1.25rem;
  }

  .basic_0f5f .black_315b {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .content_left_04db {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .black_315b {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .element-5ca8 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .slow-2174 {
    padding: 1rem;
  }

  .silver-0178 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .outer_5af3,
  .secondary_simple_d4c8,
  .video-1c1e,
  .copper-82c7 {
    padding: 1rem;
  }
}

@media print {
  .upper-239a,
  .message-f2c7,
  .preview-24d3,
  .black_315b,
  .aside-huge-df29 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .image-rough-6784 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.input_full_2ddd {
  margin-bottom: 3rem;
  text-align: center;
}

.tall_969c {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.steel_06c2 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.notification-e764,
.caption_huge_bcea {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.prev_a283 {
  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;
}

.prev_a283:hover {
  transform: translateY(-5px);
}

.prev_a283 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.prev_a283 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.notification_f06a {
  margin: 3rem 0;
}

.south_c117 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.header_db4d {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.header_db4d:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.complex_b57f {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.icon_4379 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.glass_67d3 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.pro-d8b1 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.main_0291 {
  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;
}

.main_0291:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.main_0291.sort-5374 {
  border-left: 4px solid var(--primary-color);
}

.form-purple-f19a {
  flex-shrink: 0;
}

.form-purple-f19a svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.feature_out_bfe2 {
  flex: 1;
}

.feature_out_bfe2 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pagination-b4b3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.picture_cbb6,
.bronze-8da5,
.shadow-f9b2 {
  margin-bottom: 1.5rem;
}

.picture_cbb6 h4,
.bronze-8da5 h4,
.shadow-f9b2 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.picture_cbb6 ul,
.bronze-8da5 ul,
.shadow-f9b2 ul {
  list-style: none;
  padding: 0;
}

.picture_cbb6 li,
.bronze-8da5 li,
.shadow-f9b2 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.picture_cbb6 li:before,
.bronze-8da5 li:before,
.shadow-f9b2 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.widget-outer-e3dc {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.widget-outer-e3dc 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;
}

.widget-outer-e3dc a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.table-dark-fc3a { margin: 2rem 0; }
.panel_7532 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.panel_7532 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.sidebar-56b8 p { margin-bottom: 1rem; line-height: 1.7; }
.sidebar-56b8 strong { color: var(--text-primary); }
.sidebar-56b8 ul { list-style: none; padding-left: 0; }
.sidebar-56b8 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.sidebar-56b8 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.primary_out_af5d { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.west_019f { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.west_019f:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.menu-silver-14bf { font-size: 3rem; margin-bottom: 1rem; }
.west_019f h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.west_019f p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.photo_12ce { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.photo_12ce span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.pink_8904 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.layout-93d6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.surface_upper_4761 { text-align: center; }
.bright-9667 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.table-gold-4c74 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.main_e300 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.outline_medium_6934 { margin: 2rem 0; }
.gradient-9237 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.gradient-9237 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.gradient-9237 p, .gradient-9237 ul { line-height: 1.7; }
.gradient-9237 ul { list-style: none; padding-left: 0; }
.gradient-9237 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.gradient-9237 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.block-orange-ecb6 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.shade-9be0 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.container_0830 { text-align: center; }
.cold_c593 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.element_1fd6 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.easy_aea0 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.smooth_22dc { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.wide_d976 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.wide_d976:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.wide_d976 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.wide_d976 p, .wide_d976 ul { line-height: 1.7; }
.wide_d976 ul { list-style: none; padding-left: 0; }
.wide_d976 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.wide_d976 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 4014 */
.promo-block-k1 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.3;
}
