/* ============================================
   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 */
.border_9789 p,
.label-outer-2931,
.fresh-f38f,
.yellow_b58a,
.link-ca12,
.heading_solid_6c45,
.modal-63ac,
.notification-5af3 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.under_227d {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.under_227d > *,
.header_small_2308,
.border_9789,
.tag-liquid-36a1 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .under_227d {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .under_227d {
    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 === */
.simple-9b90 {
  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 */
.simple-9b90.wrapper-fluid-879d {
  box-shadow: var(--shadow-md);
}

.thick-b2fe {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.background_yellow_2a5e img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.carousel_slow_02f5 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.heading-2ed2 {
  display: none;
}

/* Hide mobile actions on desktop */
.blue-cde2 {
  display: none;
}

.section_3088 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.section_3088 a:hover,
.section_3088 a.fn-active-2196 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.tertiary_current_6f0f {
  margin-left: 1rem;
}

.warm-fff1 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.nav-paper-740d,
.badge-2a89 {
  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-paper-740d {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.nav-paper-740d: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;
}

.badge-2a89 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.badge-2a89: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-paper-740d svg,
.badge-2a89 svg {
  flex-shrink: 0;
}

.texture-dirty-5ed6 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.white-c36b {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.white-c36b::before,
.white-c36b::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.white-c36b::before {
  top: -7px;
}

.white-c36b::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.footer_action_31d5 {
  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 === */
.black-d58b {
  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);
}

.tag-8510 {
  margin: 0 0 2rem;
  text-align: center;
}

.bright_d44b {
  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;
}

.bright_d44b:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.gallery_center_cbfd {
  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);
}

.gallery_center_cbfd strong {
  color: var(--primary-color);
  font-weight: 700;
}

.detail_mini_7790 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.widget-9425 {
  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;
}

.widget-9425:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.message-1996 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.static_4d2c {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.summary-current-6cd2 {
  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);
}

.summary-current-6cd2 .module_next_4df1 {
  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;
}

.summary-current-6cd2 .module_next_4df1 svg {
  flex-shrink: 0;
}

.summary-current-6cd2 .middle_742c {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.summary-current-6cd2 .middle_742c: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);
}

.summary-current-6cd2 .pink-bdcb {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.summary-current-6cd2 .pink-bdcb: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) {
  .black-d58b {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .bright_d44b {
    max-width: 100%;
  }

  .detail_mini_7790 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .widget-9425 {
    padding: 1rem;
  }

  .message-1996 {
    font-size: 1.5rem;
  }

  .static_4d2c {
    font-size: 0.75rem;
  }

  .gallery_center_cbfd {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .summary-current-6cd2 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .summary-current-6cd2 .module_next_4df1 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .detail_mini_7790 {
    grid-template-columns: 1fr;
  }
}

.bronze-8d50 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.overlay-6c80 {
  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 === */
.label-41c4 {
  margin-bottom: 2.5rem;
}

.prev-cbde {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.bronze-8d50 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.card_advanced_e7a0 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brown-1039 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.gallery_901a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.message-eced {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.tall-e95d {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.hover_950d {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.stale-d3db {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.stale-d3db svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.next_2014 {
  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);
}

.hidden-bronze-eaf6 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.grid_gas_723c {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.search-gold-79b2 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.active-e8ea {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.black_5b33 {
  display: grid;
  gap: 1rem;
}

.bright-804b {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.link_next_b19b {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.hovered-a566 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.next-78f8 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.button-focused-c181 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.feature_out_491b {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.feature_out_491b p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.label-outer-2931 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.first-466e {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.info-c495 {
  display: grid;
  gap: 2rem;
}

.soft-b616 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.brown-1039 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.card_advanced_e7a0 {
  flex: 1;
}

.message-eced {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.message-eced a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.frame-3a87 {
  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;
}

.tall-e95d {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.panel-4334 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.panel-4334 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.tabs_ffe2 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.tabs_ffe2 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.paragraph-active-83f0 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.paragraph-active-83f0 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.paragraph-active-83f0 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.paragraph-active-83f0 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.pagination_f7e7 {
  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 === */
.header-up-aea6 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.secondary-left-8563 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.background-c332 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.sort_light_d9b5 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.sort_light_d9b5 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.sort_light_d9b5 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.sort_light_d9b5 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;
}

.sort_light_d9b5 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.sort_light_d9b5 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.border_9789 {
  padding: 3rem 0 5rem;
}

.tag-liquid-36a1 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.tag-liquid-36a1.dropdown_234f {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.fresh-f38f {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.label-dynamic-eaef {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.avatar_gas_c388 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.avatar_gas_c388 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.message-silver-0b1c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.paper_82c6 {
  text-align: center;
}

.wide_4408 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.green_c97b {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.upper_9b94 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.heading_solid_6c45 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.yellow_b58a {
  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;
}

.yellow_b58a * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.yellow_b58a:hover {
  box-shadow: var(--shadow-lg);
}

.yellow_b58a.cold_f6e3 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.yellow_b58a h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.yellow_b58a ul {
  margin: 1rem 0;
}

.yellow_b58a li {
  margin-bottom: 0.75rem;
}

.input-up-1f70 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.block-2a70 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.block-2a70 a {
  font-weight: 600;
}

/* === Data Tables === */
.title-7739 {
  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;
}

.title-7739 table {
  width: 100%;
  min-width: 600px;
}

.title-7739 thead {
  background-color: var(--primary-color);
  color: white;
}

.title-7739 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.title-7739 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.title-7739 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.title-7739 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.backdrop-huge-164c {
  list-style: none;
  margin: 1.5rem 0;
}

.backdrop-huge-164c li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.backdrop-huge-164c li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.section-a889::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-2196::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 === */
.caption_b38a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.column_424a {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.column_424a img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.column_424a strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.column_424a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.caption_b38a blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.modal-63ac {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.modal-63ac::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.overlay-hard-5e6a {
  position: relative;
  margin-bottom: 3rem;
}

.progress-silver-00d0 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.progress-silver-00d0 .dropdown_1702 {
  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;
}

.dynamic-0c6f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.dynamic-0c6f h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.dynamic-0c6f ul {
  margin: 1rem 0;
}

.dynamic-0c6f li {
  margin-bottom: 0.75rem;
}

.image-e2d9 {
  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 === */
.outer-412f {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.outer-412f h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.accent-iron-272b {
  list-style: none;
  margin: 1.5rem 0;
}

.accent-iron-272b li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.accent-iron-272b a {
  font-weight: 600;
}

.south-cce2 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.notification-5af3 {
  margin: 2.5rem 0;
}

.thumbnail-fe32 {
  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;
}

.thumbnail-fe32:hover {
  box-shadow: var(--shadow-lg);
}

.thumbnail-fe32.mini-3369 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.backdrop_0bb9 {
  flex-shrink: 0;
}

.backdrop_0bb9 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);
}

.tiny_0970 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.form_down_a3ae,
.layout-be8e,
.tag-hovered-e7da {
  width: 100%;
  margin: 1.5rem 0;
}

.pink_d86b {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.pink_d86b strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.thumbnail-29e6 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.thumbnail-29e6 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.accent_02b2 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.accent_02b2 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.mini-098d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.link-7ce7 {
  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;
}

.link-7ce7:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.link-7ce7.popup_hot_ff1c {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.link-7ce7 .message-f274 {
  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;
}

.link-7ce7 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.full-82c4 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.paragraph-south-49b8 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.paragraph-south-49b8 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.primary_25ad {
  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 === */
.module_next_4df1 {
  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;
}

.middle_742c {
  background-color: var(--primary-color);
  color: white;
}

.middle_742c:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.pink-bdcb {
  background-color: var(--text-secondary);
  color: white;
}

.pink-bdcb:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.north_69b3 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.north_69b3:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.paragraph-steel-5628 {
  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;
}

.paragraph-steel-5628:hover {
  background-color: var(--primary-dark);
}

.aside-gold-284d {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.tabs-61c7 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.focus_wood_abfe {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.active_c2ef {
  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 === */
.red-1273 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.hard-78c9 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.hard-78c9 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.header-lower-a4f1 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.banner-up-2c9f {
  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;
}

.glass-55ae {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.disabled_advanced_c8e4 {
  list-style: none;
  counter-reset: rank-counter;
}

.disabled_advanced_c8e4 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.disabled_advanced_c8e4 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;
}

.pagination-copper-2b91 {
  list-style: none;
}

.pagination-copper-2b91 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.hard_b04f {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.badge_a544 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.badge_a544 .middle-ee88 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.badge_a544 .component_gold_1bf2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.paragraph_3e64 {
  margin-top: 3rem;
}

.west_3443 {
  width: 100%;
}

.border-bottom-2b3e {
  background-color: #fef3c7;
}

.fast_37cb {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.thumbnail-b900 {
  margin: 3rem 0;
}

.tertiary_90ff {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.layout-5e17 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.layout-5e17:hover {
  box-shadow: var(--shadow-lg);
}

.layout-5e17.table-hot-8c34 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.silver-6b82 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.header_cc3c strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.header_cc3c span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.fixed-2252 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.layout-5e17 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.notification_blue_0cb2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hot-9461 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.chip_pink_4123 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.pagination_873a {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.light_73c1 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.active_ba93 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.module_active_472d {
  max-width: 900px;
  margin: 0 auto;
}

.narrow_7d4a {
  margin: 2rem 0;
}

.west-eddb {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.west-eddb summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.west-eddb summary::-webkit-details-marker {
  display: none;
}

.west-eddb summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.texture_tiny_668a {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.west-eddb[open] .texture_tiny_668a {
  transform: rotate(45deg);
}

.text-203f {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.text-203f p:last-child {
  margin-bottom: 0;
}

.motion-885e {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.tertiary-left-6849 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.video_outer_1e0c {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.video_outer_1e0c p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.video_outer_1e0c .module_next_4df1 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.short-58e5 {
  max-width: 900px;
  margin: 0 auto;
}

.selected-b13d {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.main-short-242a {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.main-short-242a.fn-success-2196 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.active_19d8 {
  font-size: 3rem;
  line-height: 1;
}

.texture-upper-c065 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.advanced_9231 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.focus-paper-9776,
.title_0334 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.focus-paper-9776 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.title_0334 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.nav_black_af1c,
.notice_dirty_f9e8 {
  margin: 1.5rem 0;
}

.nav_black_af1c li,
.notice_dirty_f9e8 li {
  margin-bottom: 1rem;
}

.border-b8a1 {
  margin: 3rem 0;
}

.icon_c3d8 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.icon_c3d8 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.icon_c3d8 ol {
  margin: 1rem 0;
}

.icon_c3d8 li {
  margin-bottom: 0.75rem;
}

.form-0cd0 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.progress-3860 {
  margin: 2rem 0;
}

.sort-hovered-9a4b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.box-b4eb {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.text-8c2c {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.yellow-7b5f {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.heading_0bb8 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.heading_edf1 {
  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;
}

.heading_edf1 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.gallery_901a {
  flex: 1;
}

.gallery_901a h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.tag-60a9 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.under_655b p {
  margin-bottom: 1rem;
}

.in-9dda {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.in_18d0 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.clean_9dc2 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.clean_9dc2 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.green-925d h3 {
  margin-bottom: 1.5rem;
}

.grid-c3e4 {
  display: grid;
  gap: 2rem;
}

.fixed-18e4 {
  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;
}

.fixed-18e4 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.fixed-18e4 h4 {
  margin: 0 0 0.25rem;
}

.fixed-18e4 p {
  margin: 0;
  font-size: 0.9375rem;
}

.banner-c48a {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.notice-south-b7d5 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.notice-south-b7d5 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.notice-south-b7d5 ul {
  margin: 1.5rem 0;
}

.notice-south-b7d5 li {
  margin-bottom: 0.75rem;
}

.light_ec47 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.header-huge-e343 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.filter_014a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.border-2e25 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.border-2e25 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.block_south_f5ae {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.block_south_f5ae a {
  color: rgba(255, 255, 255, 0.8);
}

.huge_39b8 {
  list-style: none;
}

.huge_39b8 li {
  margin-bottom: 0.75rem;
}

.huge_39b8 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.huge_39b8 a:hover {
  color: white;
}

.last-af79 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.fast-5181 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.list_c7f0 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.footer-rough-137a {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.top_8d68 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .under_227d {
    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;
  }

  .dirty-9ef0 {
    font-size: 1.5rem !important;
  }

  .prev-cbde {
    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 */
  .yellow_b58a,
  .link-ca12,
  .dynamic-0c6f,
  .tiny_0970,
  .silver-6b82,
  .layout-5e17,
  .text-203f,
  .gallery_center_cbfd,
  .label-outer-2931,
  .fresh-f38f {
    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 */
  .bronze-8d50 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .card_advanced_e7a0 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .brown-1039 {
    flex-shrink: 0;
  }

  .gallery_901a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .message-eced,
  .tall-e95d {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .tall-e95d {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .carousel_slow_02f5 {
    display: none;
  }

  /* Show mobile actions */
  .blue-cde2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .pagination_81ed {
    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;
  }

  .pagination_81ed svg {
    flex-shrink: 0;
  }

  .pagination_81ed .row_c48a {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .pagination_81ed .main_c404 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .banner-glass-b05f {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .dark_35e5 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .pagination_81ed:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .heading-2ed2 {
    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;
  }

  .heading-2ed2.fn-active-2196 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .heading-2ed2 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .heading-2ed2 li:last-child {
    border-bottom: none;
  }

  .heading-2ed2 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .section_3088 {
    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;
  }

  .section_3088 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .section_3088 li:last-child {
    border-bottom: none;
  }

  .section_3088 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .tertiary_current_6f0f {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .warm-fff1 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .nav-paper-740d,
  .badge-2a89 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .nav-paper-740d {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .badge-2a89 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .section_3088.fn-active-2196 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .texture-dirty-5ed6 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .simple-9b90 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .thick-b2fe {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .footer_action_31d5 {
    margin-top: 0;
  }

  /* Hero section */
  .footer_action_31d5 {
    padding: 2rem 0 1.5rem;
  }

  .prev-cbde {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .label-outer-2931 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .black-d58b {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .bright_d44b {
    max-width: 100%;
    border-radius: 8px;
  }

  .detail_mini_7790 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .widget-9425 {
    padding: 1rem;
  }

  .message-1996 {
    font-size: 1.5rem;
  }

  .static_4d2c {
    font-size: 0.75rem;
  }

  .gallery_center_cbfd {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .summary-current-6cd2 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .summary-current-6cd2 .module_next_4df1 {
    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 */
  .background-c332 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .thumbnail-fe32 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .backdrop_0bb9 {
    margin-bottom: 1rem;
  }

  /* Author */
  .soft-b616 {
    flex-direction: column;
  }

  .heading_edf1 {
    flex-direction: column;
  }

  /* Quotes */
  .silver-6b82 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .advanced_9231 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .yellow-7b5f {
    flex-direction: column;
  }

  .yellow-7b5f .module_next_4df1 {
    width: 100%;
  }

  /* Version comparison */
  .mini-098d {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .red-1273 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .filter_014a {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .list_c7f0 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .title-7739,
  .layout-be8e,
  .grid_dim_a077,
  .west_3443,
  .form_down_a3ae,
  .tag-hovered-e7da {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .title-7739 table,
  .layout-be8e table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .primary_25ad {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .under_227d {
    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;
  }

  .dirty-9ef0 {
    font-size: 1.25rem !important;
  }

  .prev-cbde {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .simple-9b90 {
    position: fixed;
  }

  .thick-b2fe {
    padding: 0.625rem 0;
  }

  .background_yellow_2a5e img {
    height: 26px;
  }

  .section_3088 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .heading-2ed2 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .pagination_81ed {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .pagination_81ed svg {
    width: 18px;
    height: 18px;
  }

  .pagination_81ed .row_c48a {
    font-size: 0.7rem;
  }

  .pagination_81ed .main_c404 {
    font-size: 0.65rem;
  }

  .nav-paper-740d,
  .badge-2a89 {
    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, .under_227d, .header_small_2308, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .black-d58b {
    padding: 1rem;
  }

  .detail_mini_7790 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .widget-9425 {
    padding: 0.875rem;
  }

  .message-1996 {
    font-size: 1.25rem;
  }

  .summary-current-6cd2 .module_next_4df1 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .prev-cbde {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .module_next_4df1 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .aside-gold-284d {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .thumbnail-fe32 {
    padding: 1rem;
  }

  .backdrop_0bb9 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .yellow_b58a,
  .search_up_226c,
  .orange_b853,
  .tabs-slow-ecf6 {
    padding: 1rem;
  }
}

@media print {
  .simple-9b90,
  .header-up-aea6,
  .texture-dirty-5ed6,
  .module_next_4df1,
  .header-huge-e343 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .under_227d {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.focus_warm_0bb7 {
  margin-bottom: 3rem;
  text-align: center;
}

.dirty-9ef0 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.full-a859 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.border-smooth-92bf,
.gradient_black_6d03 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.thumbnail-middle-7b37 {
  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;
}

.thumbnail-middle-7b37:hover {
  transform: translateY(-5px);
}

.thumbnail-middle-7b37 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.thumbnail-middle-7b37 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.easy-cac6 {
  margin: 3rem 0;
}

.left_24e6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.input_d8e8 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.input_d8e8:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.dim_64f7 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.dropdown_e8a4 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.fixed-2923 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.disabled-red-4668 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.upper-28d7 {
  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;
}

.upper-28d7:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.upper-28d7.wide-8375 {
  border-left: 4px solid var(--primary-color);
}

.message-focused-40e9 {
  flex-shrink: 0;
}

.message-focused-40e9 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.active_stale_389c {
  flex: 1;
}

.active_stale_389c h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.input-d2ad {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.dark-fc84,
.form_up_c0cd,
.gallery_over_c240 {
  margin-bottom: 1.5rem;
}

.dark-fc84 h4,
.form_up_c0cd h4,
.gallery_over_c240 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dark-fc84 ul,
.form_up_c0cd ul,
.gallery_over_c240 ul {
  list-style: none;
  padding: 0;
}

.dark-fc84 li,
.form_up_c0cd li,
.gallery_over_c240 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.dark-fc84 li:before,
.form_up_c0cd li:before,
.gallery_over_c240 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.header_6b40 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.header_6b40 a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.header_6b40 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.border_0c9b { margin: 2rem 0; }
.status_9d47 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.status_9d47 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.up-c38e p { margin-bottom: 1rem; line-height: 1.7; }
.up-c38e strong { color: var(--text-primary); }
.up-c38e ul { list-style: none; padding-left: 0; }
.up-c38e ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.up-c38e ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.stale_ba2d { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.component_3e13 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.component_3e13:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.footer-1dd6 { font-size: 3rem; margin-bottom: 1rem; }
.component_3e13 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.component_3e13 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.hero-fresh-f49e { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.hero-fresh-f49e span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.inner_a342 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.highlight-dd6e { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.center_3540 { text-align: center; }
.selected-1d2f { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.warm-771d { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.text-down-c315 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.old-63d6 { margin: 2rem 0; }
.hot_c308 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.hot_c308 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.hot_c308 p, .hot_c308 ul { line-height: 1.7; }
.hot_c308 ul { list-style: none; padding-left: 0; }
.hot_c308 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.hot_c308 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.popup_simple_f100 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.breadcrumb-3cdf { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.tertiary-e655 { text-align: center; }
.section-067b { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.first-240c { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.main_6051 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.huge_1669 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.accent_2ac9 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.accent_2ac9:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.accent_2ac9 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.accent_2ac9 p, .accent_2ac9 ul { line-height: 1.7; }
.accent_2ac9 ul { list-style: none; padding-left: 0; }
.accent_2ac9 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.accent_2ac9 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: b769 */
.widget-item-l0 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.2;
}
