/* ============================================
   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 */
.tertiary_steel_2f15 p,
.clean_5949,
.row-middle-ec08,
.input_4b5f,
.white-d26f,
.selected_0133,
.nav_0eac,
.main_7047 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.primary_small_da23 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.primary_small_da23 > *,
.fresh-7ff3,
.tertiary_steel_2f15,
.logo-6806 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .primary_small_da23 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .primary_small_da23 {
    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 === */
.glass-db03 {
  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 */
.glass-db03.full_11d0 {
  box-shadow: var(--shadow-md);
}

.thumbnail-fd26 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.lower_3596 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.widget-eecb {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.current-684c {
  display: none;
}

/* Hide mobile actions on desktop */
.tabs_fresh_df38 {
  display: none;
}

.popup_gold_67af a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.popup_gold_67af a:hover,
.popup_gold_67af a.fn-active-48c1 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.first_ea28 {
  margin-left: 1rem;
}

.light-903a {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.nav_9087,
.label-3acf {
  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;
}

.nav_9087 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.nav_9087: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;
}

.label-3acf {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.label-3acf: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;
}

.nav_9087 svg,
.label-3acf svg {
  flex-shrink: 0;
}

.frame_east_03e0 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.orange-8f45 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.orange-8f45::before,
.orange-8f45::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.orange-8f45::before {
  top: -7px;
}

.orange-8f45::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.image-outer-7094 {
  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 === */
.right_7d10 {
  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);
}

.component_cd1e {
  margin: 0 0 2rem;
  text-align: center;
}

.info_6b68 {
  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;
}

.info_6b68:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.form-yellow-76f3 {
  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);
}

.form-yellow-76f3 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.upper_d03b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.sidebar_8673 {
  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;
}

.sidebar_8673:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.notice_huge_c319 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.disabled-focused-59f0 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.lite-3466 {
  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);
}

.lite-3466 .in_0566 {
  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;
}

.lite-3466 .in_0566 svg {
  flex-shrink: 0;
}

.lite-3466 .summary-3301 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.lite-3466 .summary-3301: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);
}

.lite-3466 .gradient-small-9ead {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.lite-3466 .gradient-small-9ead: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) {
  .right_7d10 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .info_6b68 {
    max-width: 100%;
  }

  .upper_d03b {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .sidebar_8673 {
    padding: 1rem;
  }

  .notice_huge_c319 {
    font-size: 1.5rem;
  }

  .disabled-focused-59f0 {
    font-size: 0.75rem;
  }

  .form-yellow-76f3 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .lite-3466 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .lite-3466 .in_0566 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .upper_d03b {
    grid-template-columns: 1fr;
  }
}

.mask_glass_24f8 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.iron-75a6 {
  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 === */
.avatar-dirty-0459 {
  margin-bottom: 2.5rem;
}

.layout_229c {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.mask_glass_24f8 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.medium_afba {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.background_fe23 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.thumbnail-31d8 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.gallery-0c65 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.feature-417e {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.fast-f031 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tag-b1a7 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tag-b1a7 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.preview_west_6fe0 {
  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);
}

.outer_2cf7 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.widget-left-8200 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.dropdown-fast-fbf9 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.cool_f9c4 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.red-a4d5 {
  display: grid;
  gap: 1rem;
}

.dropdown-8594 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.heading_41dd {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.hot-f5a7 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.gas_fd96 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.avatar-plasma-d075 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.bottom_87ed {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.bottom_87ed p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.clean_5949 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.filter-simple-949c {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.media_focused_0367 {
  display: grid;
  gap: 2rem;
}

.sidebar_upper_5e50 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.background_fe23 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.medium_afba {
  flex: 1;
}

.gallery-0c65 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.gallery-0c65 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.glass-627a {
  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;
}

.feature-417e {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.glass-8463 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.glass-8463 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.carousel-b8d1 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.carousel-b8d1 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.gold_3bbd {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.gold_3bbd strong {
  display: block;
  margin-bottom: 0.75rem;
}

.gold_3bbd ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gold_3bbd li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.background-ce15 {
  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 === */
.hero-simple-08a1 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.block-east-e478 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.avatar-inner-c85f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.shadow-wood-0fbd h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.shadow-wood-0fbd ol {
  list-style: none;
  counter-reset: toc-counter;
}

.shadow-wood-0fbd ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.shadow-wood-0fbd 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;
}

.shadow-wood-0fbd ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.shadow-wood-0fbd ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.tertiary_steel_2f15 {
  padding: 3rem 0 5rem;
}

.logo-6806 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.logo-6806.bright_0732 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.row-middle-ec08 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.logo_wood_36c1 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.background-3bd0 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.background-3bd0 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.thumbnail-east-577b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.copper_cdea {
  text-align: center;
}

.message-out-3f8b {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.background_upper_a61a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.gallery-current-d3a7 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.selected_0133 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.input_4b5f {
  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;
}

.input_4b5f * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.input_4b5f:hover {
  box-shadow: var(--shadow-lg);
}

.input_4b5f.prev_43ec {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.input_4b5f h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.input_4b5f ul {
  margin: 1rem 0;
}

.input_4b5f li {
  margin-bottom: 0.75rem;
}

.tiny_70b3 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.dim_fb83 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.dim_fb83 a {
  font-weight: 600;
}

/* === Data Tables === */
.notice_4373 {
  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;
}

.notice_4373 table {
  width: 100%;
  min-width: 600px;
}

.notice_4373 thead {
  background-color: var(--primary-color);
  color: white;
}

.notice_4373 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.notice_4373 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.notice_4373 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.notice_4373 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.mini-8fa5 {
  list-style: none;
  margin: 1.5rem 0;
}

.mini-8fa5 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.mini-8fa5 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.outline-tiny-b3ab::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-48c1::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 === */
.thick_291e {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.gas_7bab {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.gas_7bab img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.gas_7bab strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.gas_7bab span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.thick_291e blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.nav_0eac {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.nav_0eac::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.detail-east-90f8 {
  position: relative;
  margin-bottom: 3rem;
}

.content_basic_05f5 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.content_basic_05f5 .image-5e36 {
  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;
}

.thumbnail_48b6 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.thumbnail_48b6 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.thumbnail_48b6 ul {
  margin: 1rem 0;
}

.thumbnail_48b6 li {
  margin-bottom: 0.75rem;
}

.table-glass-22de {
  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 === */
.static-20f8 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.static-20f8 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.component-light-e595 {
  list-style: none;
  margin: 1.5rem 0;
}

.component-light-e595 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.component-light-e595 a {
  font-weight: 600;
}

.pagination-bottom-f4a0 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.main_7047 {
  margin: 2.5rem 0;
}

.yellow_2396 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s ease;
}

.yellow_2396:hover {
  box-shadow: var(--shadow-lg);
}

.yellow_2396.fast_39d4 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.mask_6220 {
  flex-shrink: 0;
}

.mask_6220 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);
}

.wrapper_ea3b h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.purple-4f03,
.silver_9901,
.hard-d2a9 {
  width: 100%;
  margin: 1.5rem 0;
}

.link-67f3 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.link-67f3 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.next_fc78 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.next_fc78 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.row-bright-bbe8 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.row-bright-bbe8 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.component_first_0a86 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.pattern-full-4bc7 {
  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;
}

.pattern-full-4bc7:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pattern-full-4bc7.tabs_slow_3de7 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.pattern-full-4bc7 .hover_8555 {
  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;
}

.pattern-full-4bc7 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.short-82bf {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.basic_703e {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.basic_703e label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.container-pink-76cc {
  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 === */
.in_0566 {
  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;
}

.summary-3301 {
  background-color: var(--primary-color);
  color: white;
}

.summary-3301:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.gradient-small-9ead {
  background-color: var(--text-secondary);
  color: white;
}

.gradient-small-9ead:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.modal-43e0 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.modal-43e0:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.message-0e69 {
  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;
}

.message-0e69:hover {
  background-color: var(--primary-dark);
}

.element-steel-5486 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.row-2717 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.title_b9d4 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.sidebar_red_a279 {
  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 === */
.link_26eb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.overlay-thick-4f0a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.overlay-thick-4f0a h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.selected-0d1f {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.modal_efcb {
  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;
}

.feature_df60 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.info-6881 {
  list-style: none;
  counter-reset: rank-counter;
}

.info-6881 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.info-6881 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;
}

.medium-a424 {
  list-style: none;
}

.medium-a424 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.info_ccb3 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.outer_eaf4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.outer_eaf4 .wrapper-42c5 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.outer_eaf4 .button_a842 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.gallery_1b40 {
  margin-top: 3rem;
}

.pro-d038 {
  width: 100%;
}

.section_b576 {
  background-color: #fef3c7;
}

.slider_focused_4429 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.bottom_b237 {
  margin: 3rem 0;
}

.section-eea3 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.fast-b2e9 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.fast-b2e9:hover {
  box-shadow: var(--shadow-lg);
}

.fast-b2e9.complex_97a9 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.feature_stale_6a25 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.accordion_purple_a90e strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.accordion_purple_a90e span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.aside-2621 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.fast-b2e9 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.box_c863 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.input-2f36 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.alert_old_6cdb {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.fluid-8528 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.gradient_solid_161c {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.column_bf6d {
  margin-top: 1rem;
}

/* === FAQ Section === */
.complex_8b0a {
  max-width: 900px;
  margin: 0 auto;
}

.content_1faf {
  margin: 2rem 0;
}

.fluid_494f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.fluid_494f summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.fluid_494f summary::-webkit-details-marker {
  display: none;
}

.fluid_494f summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.active-old-75cf {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.fluid_494f[open] .active-old-75cf {
  transform: rotate(45deg);
}

.container_1fa1 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.container_1fa1 p:last-child {
  margin-bottom: 0;
}

.tooltip-9769 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.static_adfb {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.active_2f3e {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.active_2f3e p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.active_2f3e .in_0566 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.component_active_60de {
  max-width: 900px;
  margin: 0 auto;
}

.button-e9b1 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.notification_d944 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.notification_d944.fn-success-48c1 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.notice-first-e62d {
  font-size: 3rem;
  line-height: 1;
}

.wrapper_bronze_24b3 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.first-7e4a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.thumbnail-bad1,
.heading-8f08 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.thumbnail-bad1 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.heading-8f08 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.link-d7a0,
.new_4767 {
  margin: 1.5rem 0;
}

.link-d7a0 li,
.new_4767 li {
  margin-bottom: 1rem;
}

.overlay_320b {
  margin: 3rem 0;
}

.mask-pink-1865 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.mask-pink-1865 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.mask-pink-1865 ol {
  margin: 1rem 0;
}

.mask-pink-1865 li {
  margin-bottom: 0.75rem;
}

.menu-35f4 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.menu_5ee5 {
  margin: 2rem 0;
}

.right-83fd {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.last-2909 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.wood-85bd {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.red-355f {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.paper_a029 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.card_8bb6 {
  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;
}

.card_8bb6 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.thumbnail-31d8 {
  flex: 1;
}

.thumbnail-31d8 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.content_north_16c7 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.white-dccb p {
  margin-bottom: 1rem;
}

.banner_focused_2511 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.notice_cf7c {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.button-eff8 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.button-eff8 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.pink-c260 h3 {
  margin-bottom: 1.5rem;
}

.backdrop_complex_b021 {
  display: grid;
  gap: 2rem;
}

.red-9dc6 {
  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;
}

.red-9dc6 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.red-9dc6 h4 {
  margin: 0 0 0.25rem;
}

.red-9dc6 p {
  margin: 0;
  font-size: 0.9375rem;
}

.texture-large-9769 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.table_2c1a {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.table_2c1a h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.table_2c1a ul {
  margin: 1.5rem 0;
}

.table_2c1a li {
  margin-bottom: 0.75rem;
}

.background_a886 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.shade-dynamic-b407 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.heading_ba13 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.hovered-a60b h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.hovered-a60b p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.table-last-9874 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.table-last-9874 a {
  color: rgba(255, 255, 255, 0.8);
}

.paragraph_0c8c {
  list-style: none;
}

.paragraph_0c8c li {
  margin-bottom: 0.75rem;
}

.paragraph_0c8c a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.paragraph_0c8c a:hover {
  color: white;
}

.progress_1ca4 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.purple_52a5 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.thumbnail_7cfa {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.aside-wood-f063 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.picture_narrow_686b {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .primary_small_da23 {
    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;
  }

  .badge_fast_e4a8 {
    font-size: 1.5rem !important;
  }

  .layout_229c {
    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 */
  .input_4b5f,
  .white-d26f,
  .thumbnail_48b6,
  .wrapper_ea3b,
  .feature_stale_6a25,
  .fast-b2e9,
  .container_1fa1,
  .form-yellow-76f3,
  .clean_5949,
  .row-middle-ec08 {
    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 */
  .mask_glass_24f8 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .medium_afba {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .background_fe23 {
    flex-shrink: 0;
  }

  .thumbnail-31d8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .gallery-0c65,
  .feature-417e {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .feature-417e {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .widget-eecb {
    display: none;
  }

  /* Show mobile actions */
  .tabs_fresh_df38 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .shadow_cold_3d79 {
    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;
  }

  .shadow_cold_3d79 svg {
    flex-shrink: 0;
  }

  .shadow_cold_3d79 .huge_96fe {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .shadow_cold_3d79 .highlight_b6a2 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .secondary-paper-ff09 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .lite_f98e {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .shadow_cold_3d79:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .current-684c {
    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;
  }

  .current-684c.fn-active-48c1 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .current-684c li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .current-684c li:last-child {
    border-bottom: none;
  }

  .current-684c a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .popup_gold_67af {
    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;
  }

  .popup_gold_67af li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .popup_gold_67af li:last-child {
    border-bottom: none;
  }

  .popup_gold_67af a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .first_ea28 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .light-903a {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .nav_9087,
  .label-3acf {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .nav_9087 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .label-3acf {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .popup_gold_67af.fn-active-48c1 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .frame_east_03e0 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .glass-db03 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .thumbnail-fd26 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .image-outer-7094 {
    margin-top: 0;
  }

  /* Hero section */
  .image-outer-7094 {
    padding: 2rem 0 1.5rem;
  }

  .layout_229c {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .clean_5949 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .right_7d10 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .info_6b68 {
    max-width: 100%;
    border-radius: 8px;
  }

  .upper_d03b {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .sidebar_8673 {
    padding: 1rem;
  }

  .notice_huge_c319 {
    font-size: 1.5rem;
  }

  .disabled-focused-59f0 {
    font-size: 0.75rem;
  }

  .form-yellow-76f3 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .lite-3466 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .lite-3466 .in_0566 {
    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 */
  .avatar-inner-c85f {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .yellow_2396 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .mask_6220 {
    margin-bottom: 1rem;
  }

  /* Author */
  .sidebar_upper_5e50 {
    flex-direction: column;
  }

  .card_8bb6 {
    flex-direction: column;
  }

  /* Quotes */
  .feature_stale_6a25 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .first-7e4a {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .red-355f {
    flex-direction: column;
  }

  .red-355f .in_0566 {
    width: 100%;
  }

  /* Version comparison */
  .component_first_0a86 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .link_26eb {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .heading_ba13 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .thumbnail_7cfa {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .notice_4373,
  .silver_9901,
  .video_4a6b,
  .pro-d038,
  .purple-4f03,
  .hard-d2a9 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .notice_4373 table,
  .silver_9901 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .container-pink-76cc {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .primary_small_da23 {
    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;
  }

  .badge_fast_e4a8 {
    font-size: 1.25rem !important;
  }

  .layout_229c {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .glass-db03 {
    position: fixed;
  }

  .thumbnail-fd26 {
    padding: 0.625rem 0;
  }

  .lower_3596 img {
    height: 26px;
  }

  .popup_gold_67af {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .current-684c {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .shadow_cold_3d79 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .shadow_cold_3d79 svg {
    width: 18px;
    height: 18px;
  }

  .shadow_cold_3d79 .huge_96fe {
    font-size: 0.7rem;
  }

  .shadow_cold_3d79 .highlight_b6a2 {
    font-size: 0.65rem;
  }

  .nav_9087,
  .label-3acf {
    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, .primary_small_da23, .fresh-7ff3, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .right_7d10 {
    padding: 1rem;
  }

  .upper_d03b {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .sidebar_8673 {
    padding: 0.875rem;
  }

  .notice_huge_c319 {
    font-size: 1.25rem;
  }

  .lite-3466 .in_0566 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .layout_229c {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .in_0566 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .element-steel-5486 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .yellow_2396 {
    padding: 1rem;
  }

  .mask_6220 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .input_4b5f,
  .background_large_24e2,
  .tooltip_steel_f396,
  .accordion-eec8 {
    padding: 1rem;
  }
}

@media print {
  .glass-db03,
  .hero-simple-08a1,
  .frame_east_03e0,
  .in_0566,
  .shade-dynamic-b407 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .primary_small_da23 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.background-6d8b {
  margin-bottom: 3rem;
  text-align: center;
}

.badge_fast_e4a8 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.form_77f6 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.pink-e5aa,
.media-b0ca {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.header-tall-2775 {
  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;
}

.header-tall-2775:hover {
  transform: translateY(-5px);
}

.header-tall-2775 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.header-tall-2775 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.nav-in-90f6 {
  margin: 3rem 0;
}

.slider_white_4ec4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.red-16ad {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.red-16ad:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.detail-eb39 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.fast_608b {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.component-pro-0e73 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.sort_01c4 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.media-in-9ac2 {
  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;
}

.media-in-9ac2:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.media-in-9ac2.form_narrow_9add {
  border-left: 4px solid var(--primary-color);
}

.tiny_4bd6 {
  flex-shrink: 0;
}

.tiny_4bd6 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.badge_c3d3 {
  flex: 1;
}

.badge_c3d3 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.lite_90ec {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.block-f45b,
.shadow_basic_f33d,
.content-2292 {
  margin-bottom: 1.5rem;
}

.block-f45b h4,
.shadow_basic_f33d h4,
.content-2292 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.block-f45b ul,
.shadow_basic_f33d ul,
.content-2292 ul {
  list-style: none;
  padding: 0;
}

.block-f45b li,
.shadow_basic_f33d li,
.content-2292 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.block-f45b li:before,
.shadow_basic_f33d li:before,
.content-2292 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.first_e621 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.first_e621 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;
}

.first_e621 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.accent-b912 { margin: 2rem 0; }
.hero-ab1a { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.hero-ab1a h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.sort-pro-fc55 p { margin-bottom: 1rem; line-height: 1.7; }
.sort-pro-fc55 strong { color: var(--text-primary); }
.sort-pro-fc55 ul { list-style: none; padding-left: 0; }
.sort-pro-fc55 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.sort-pro-fc55 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.link_a467 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.silver-dcf8 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.silver-dcf8:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.blue_4fa3 { font-size: 3rem; margin-bottom: 1rem; }
.silver-dcf8 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.silver-dcf8 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.media_rough_2f50 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.media_rough_2f50 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.outline-glass-815d { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.prev_2aab { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.gallery_clean_0de6 { text-align: center; }
.nav-action-cdb2 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.accordion_focused_4aa7 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.accent_advanced_75a4 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.popup_6b8e { margin: 2rem 0; }
.search_2eef { 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_2eef h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.search_2eef p, .search_2eef ul { line-height: 1.7; }
.search_2eef ul { list-style: none; padding-left: 0; }
.search_2eef ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.search_2eef ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.thumbnail-clean-b5be { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.video-3aa9 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.over-c0c9 { text-align: center; }
.wrapper_simple_fc02 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.breadcrumb-solid-3695 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.full-7f98 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.dirty-b003 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.link_b7b5 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.link_b7b5:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.link_b7b5 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.link_b7b5 p, .link_b7b5 ul { line-height: 1.7; }
.link_b7b5 ul { list-style: none; padding-left: 0; }
.link_b7b5 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.link_b7b5 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 42d0 */
.widget-item-q1 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.0;
}
