/* ============================================
   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 */
.soft-3d73 p,
.overlay_wide_4685,
.summary-bright-c873,
.current-3999,
.easy_561e,
.orange-1ae5,
.grid-south-dfc5,
.large-9ec9 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.complex-961d {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.complex-961d > *,
.shade-medium-ef0a,
.soft-3d73,
.carousel-red-321b {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .complex-961d {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .complex-961d {
    padding: 0 1rem;
  }
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  letter-spacing: -0.015em;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.25rem;
}

strong {
  font-weight: 600;
  color: var(--text-primary);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

code {
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 0.875em;
  background-color: var(--bg-tertiary);
  padding: 0.2em 0.4em;
  border-radius: 3px;
  color: var(--accent-color);
}

pre {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid var(--border-color);
}

pre code {
  background: none;
  padding: 0;
  color: var(--text-primary);
}

/* === Header/Navigation === */
.wrapper_d580 {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

/* Enhance shadow when scrolled */
.wrapper_d580.green_03dd {
  box-shadow: var(--shadow-md);
}

.hidden_gas_8e70 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.modal-9371 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.module_6376 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.box-8525 {
  display: none;
}

/* Hide mobile actions on desktop */
.primary_tall_26fc {
  display: none;
}

.top_ad3e a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.top_ad3e a:hover,
.top_ad3e a.fn-active-c442 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.caption-static-ebdd {
  margin-left: 1rem;
}

.fixed-015d {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.aside-black-0965,
.component-center-f524 {
  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;
}

.aside-black-0965 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.aside-black-0965: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;
}

.component-center-f524 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.component-center-f524: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;
}

.aside-black-0965 svg,
.component-center-f524 svg {
  flex-shrink: 0;
}

.notification_4a9c {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.detail-f649 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.detail-f649::before,
.detail-f649::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.detail-f649::before {
  top: -7px;
}

.detail-f649::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.title-right-20f9 {
  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 === */
.block-e3c2 {
  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);
}

.card_f1c3 {
  margin: 0 0 2rem;
  text-align: center;
}

.backdrop-7874 {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.backdrop-7874:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.row_bc2a {
  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);
}

.row_bc2a strong {
  color: var(--primary-color);
  font-weight: 700;
}

.filter_fixed_89ce {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.fixed_7caa {
  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;
}

.fixed_7caa:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.logo_0896 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.old_2146 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.icon-97ab {
  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);
}

.icon-97ab .logo-north-c722 {
  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;
}

.icon-97ab .logo-north-c722 svg {
  flex-shrink: 0;
}

.icon-97ab .shade-9a00 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.icon-97ab .shade-9a00: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);
}

.icon-97ab .shadow_54f2 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.icon-97ab .shadow_54f2: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) {
  .block-e3c2 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .backdrop-7874 {
    max-width: 100%;
  }

  .filter_fixed_89ce {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .fixed_7caa {
    padding: 1rem;
  }

  .logo_0896 {
    font-size: 1.5rem;
  }

  .old_2146 {
    font-size: 0.75rem;
  }

  .row_bc2a {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .icon-97ab {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .icon-97ab .logo-north-c722 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .filter_fixed_89ce {
    grid-template-columns: 1fr;
  }
}

.tooltip_north_4272 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.stale-808a {
  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 === */
.column_0a7c {
  margin-bottom: 2.5rem;
}

.card_4f13 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.tooltip_north_4272 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.row_upper_8ae9 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gradient-complex-9aef {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.thumbnail_south_c0ee {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.list-74e9 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.carousel-5bf6 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.text-brown-3b13 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.plasma_fede {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.plasma_fede svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.yellow_4bdc {
  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);
}

.filter_d786 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.pro-0ac4 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.block_7e99 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.dim_5ea1 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.content_dirty_2c5f {
  display: grid;
  gap: 1rem;
}

.hot-3136 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.cool-adc6 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.hard_5cf7 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.title_6ec8 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.wide-7688 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.content-def1 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.content-def1 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.overlay_wide_4685 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.middle-2250 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.form-5388 {
  display: grid;
  gap: 2rem;
}

.green_544e {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.gradient-complex-9aef {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.row_upper_8ae9 {
  flex: 1;
}

.list-74e9 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.list-74e9 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.disabled_a216 {
  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;
}

.carousel-5bf6 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.gold-1a17 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.gold-1a17 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.description-e065 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.description-e065 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.shade_small_07d5 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.shade_small_07d5 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.shade_small_07d5 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.shade_small_07d5 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.panel-6971 {
  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 === */
.motion_6d00 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.logo-c4df {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.banner-brown-a3a4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.shadow-2ff5 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.shadow-2ff5 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.shadow-2ff5 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.shadow-2ff5 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-2ff5 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.shadow-2ff5 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.soft-3d73 {
  padding: 3rem 0 5rem;
}

.carousel-red-321b {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.carousel-red-321b.column_out_6501 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.summary-bright-c873 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.caption_623d {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.element_middle_b2f5 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.element_middle_b2f5 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.wood-036e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.component_ef1f {
  text-align: center;
}

.header-fluid-df99 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hovered_1add {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.detail_c3e2 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.orange-1ae5 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.current-3999 {
  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;
}

.current-3999 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.current-3999:hover {
  box-shadow: var(--shadow-lg);
}

.current-3999.iron-7cdc {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.current-3999 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.current-3999 ul {
  margin: 1rem 0;
}

.current-3999 li {
  margin-bottom: 0.75rem;
}

.panel-e3fe {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.feature_selected_3dc4 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.feature_selected_3dc4 a {
  font-weight: 600;
}

/* === Data Tables === */
.video-d38b {
  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;
}

.video-d38b table {
  width: 100%;
  min-width: 600px;
}

.video-d38b thead {
  background-color: var(--primary-color);
  color: white;
}

.video-d38b th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.video-d38b td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.video-d38b tbody tr:hover {
  background-color: var(--bg-secondary);
}

.video-d38b tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.avatar_action_df92 {
  list-style: none;
  margin: 1.5rem 0;
}

.avatar_action_df92 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.avatar_action_df92 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.fixed-8237::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-c442::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 === */
.cool_6005 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.table_dynamic_296b {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.table_dynamic_296b img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.table_dynamic_296b strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.table_dynamic_296b span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.cool_6005 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.grid-south-dfc5 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.grid-south-dfc5::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.notification-last-384b {
  position: relative;
  margin-bottom: 3rem;
}

.header_24d4 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.header_24d4 .rough_d2d6 {
  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;
}

.hover-0de6 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.hover-0de6 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.hover-0de6 ul {
  margin: 1rem 0;
}

.hover-0de6 li {
  margin-bottom: 0.75rem;
}

.shadow-145b {
  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 === */
.tabs_left_6262 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.tabs_left_6262 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.tertiary_3099 {
  list-style: none;
  margin: 1.5rem 0;
}

.tertiary_3099 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.tertiary_3099 a {
  font-weight: 600;
}

.list-wide-e04b {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.large-9ec9 {
  margin: 2.5rem 0;
}

.inner-d698 {
  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;
}

.inner-d698:hover {
  box-shadow: var(--shadow-lg);
}

.inner-d698.silver_a50e {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.plasma-956b {
  flex-shrink: 0;
}

.plasma-956b span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.iron-2176 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.gallery_5707,
.row_0563,
.menu_outer_a145 {
  width: 100%;
  margin: 1.5rem 0;
}

.gas-ebc1 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.gas-ebc1 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.pagination-14c1 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.pagination-14c1 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.accordion-56b2 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.accordion-56b2 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.link_motion_fc42 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.title_3131 {
  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;
}

.title_3131:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.title_3131.motion_e5ba {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.title_3131 .photo-new-2ce5 {
  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;
}

.title_3131 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.panel_275b {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.shade-d3be {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.shade-d3be label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.paragraph_full_82ea {
  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 === */
.logo-north-c722 {
  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;
}

.shade-9a00 {
  background-color: var(--primary-color);
  color: white;
}

.shade-9a00:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.shadow_54f2 {
  background-color: var(--text-secondary);
  color: white;
}

.shadow_54f2:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.label-427c {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.label-427c:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.tall_2d8e {
  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;
}

.tall_2d8e:hover {
  background-color: var(--primary-dark);
}

.preview_cool_edc8 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.pagination-lower-da20 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.wood_049e {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.surface-dce7 {
  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 === */
.cool_9e99 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.component_complex_7fe5 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.component_complex_7fe5 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.short_ddf7 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.yellow_d205 {
  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;
}

.input_fb86 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.full_300a {
  list-style: none;
  counter-reset: rank-counter;
}

.full_300a li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.full_300a 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;
}

.text-steel-86e2 {
  list-style: none;
}

.text-steel-86e2 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.gradient-first-eac5 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.frame-fast-6602 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.frame-fast-6602 .light-5533 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.frame-fast-6602 .down-f262 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.pattern-blue-da24 {
  margin-top: 3rem;
}

.heading-smooth-29aa {
  width: 100%;
}

.north-0676 {
  background-color: #fef3c7;
}

.modal_steel_15a0 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.notice-07f2 {
  margin: 3rem 0;
}

.alert-inner-a28c {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.form-4ff5 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.form-4ff5:hover {
  box-shadow: var(--shadow-lg);
}

.form-4ff5.footer-copper-6367 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.narrow_f5fb {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.static_f6d6 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.static_f6d6 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tertiary-aecc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-4ff5 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.accordion_lower_d44b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.text-1120 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.status_fast_95d0 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.white-60fe {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.icon_fast_8165 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.active_0e9c {
  margin-top: 1rem;
}

/* === FAQ Section === */
.shadow_solid_dde0 {
  max-width: 900px;
  margin: 0 auto;
}

.header_45c3 {
  margin: 2rem 0;
}

.row-767d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.row-767d summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.row-767d summary::-webkit-details-marker {
  display: none;
}

.row-767d summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.down-6f59 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.row-767d[open] .down-6f59 {
  transform: rotate(45deg);
}

.dirty_6f84 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.dirty_6f84 p:last-child {
  margin-bottom: 0;
}

.stone_5fb4 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.fast_a05f {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.search_bcea {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.search_bcea p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.search_bcea .logo-north-c722 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.hover-ca4d {
  max-width: 900px;
  margin: 0 auto;
}

.summary-blue-3473 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.info-rough-983f {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.info-rough-983f.fn-success-c442 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.aside-gold-a3ce {
  font-size: 3rem;
  line-height: 1;
}

.menu_9be8 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.chip-action-01ce {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.pink_90aa,
.left_eba0 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.pink_90aa h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.left_eba0 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.first-518c,
.image_6789 {
  margin: 1.5rem 0;
}

.first-518c li,
.image_6789 li {
  margin-bottom: 1rem;
}

.bronze_a827 {
  margin: 3rem 0;
}

.slow-cf5a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.slow-cf5a h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.slow-cf5a ol {
  margin: 1rem 0;
}

.slow-cf5a li {
  margin-bottom: 0.75rem;
}

.purple_462d {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.tabs_0dad {
  margin: 2rem 0;
}

.west-8a5b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.inner-13ee {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.banner-purple-ff41 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.inner_2f7d {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.avatar-8b37 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.overlay-cfaf {
  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;
}

.overlay-cfaf img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.thumbnail_south_c0ee {
  flex: 1;
}

.thumbnail_south_c0ee h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.notice-a68e {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.label-fe44 p {
  margin-bottom: 1rem;
}

.paragraph_5244 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.thick_e49a {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.link-f9bb {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.link-f9bb a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.box_large_3ce8 h3 {
  margin-bottom: 1.5rem;
}

.box-outer-7386 {
  display: grid;
  gap: 2rem;
}

.paper_8bc1 {
  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;
}

.paper_8bc1 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.paper_8bc1 h4 {
  margin: 0 0 0.25rem;
}

.paper_8bc1 p {
  margin: 0;
  font-size: 0.9375rem;
}

.active_f9ef {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.grid-5d60 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.grid-5d60 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.grid-5d60 ul {
  margin: 1.5rem 0;
}

.grid-5d60 li {
  margin-bottom: 0.75rem;
}

.center-2250 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.dropdown-stone-26d1 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.disabled-north-3039 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.header_gas_857a h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.header_gas_857a p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.overlay_c191 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.overlay_c191 a {
  color: rgba(255, 255, 255, 0.8);
}

.silver-c699 {
  list-style: none;
}

.silver-c699 li {
  margin-bottom: 0.75rem;
}

.silver-c699 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.silver-c699 a:hover {
  color: white;
}

.table_5650 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.heading-silver-31b0 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.selected-ad4c {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.dynamic_d820 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.gold_4584 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .complex-961d {
    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;
  }

  .black-406f {
    font-size: 1.5rem !important;
  }

  .card_4f13 {
    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 */
  .current-3999,
  .easy_561e,
  .hover-0de6,
  .iron-2176,
  .narrow_f5fb,
  .form-4ff5,
  .dirty_6f84,
  .row_bc2a,
  .overlay_wide_4685,
  .summary-bright-c873 {
    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 */
  .tooltip_north_4272 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .row_upper_8ae9 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .gradient-complex-9aef {
    flex-shrink: 0;
  }

  .thumbnail_south_c0ee {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .list-74e9,
  .carousel-5bf6 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .carousel-5bf6 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .module_6376 {
    display: none;
  }

  /* Show mobile actions */
  .primary_tall_26fc {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .aside-072b {
    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;
  }

  .aside-072b svg {
    flex-shrink: 0;
  }

  .aside-072b .pressed_bd81 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .aside-072b .input-ce5c {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .feature_inner_1d2e {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .tiny_463d {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .aside-072b:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .box-8525 {
    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;
  }

  .box-8525.fn-active-c442 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .box-8525 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .box-8525 li:last-child {
    border-bottom: none;
  }

  .box-8525 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .top_ad3e {
    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;
  }

  .top_ad3e li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .top_ad3e li:last-child {
    border-bottom: none;
  }

  .top_ad3e a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .caption-static-ebdd {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .fixed-015d {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .aside-black-0965,
  .component-center-f524 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .aside-black-0965 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .component-center-f524 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .top_ad3e.fn-active-c442 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .notification_4a9c {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .wrapper_d580 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .hidden_gas_8e70 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .title-right-20f9 {
    margin-top: 0;
  }

  /* Hero section */
  .title-right-20f9 {
    padding: 2rem 0 1.5rem;
  }

  .card_4f13 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .overlay_wide_4685 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .block-e3c2 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .backdrop-7874 {
    max-width: 100%;
    border-radius: 8px;
  }

  .filter_fixed_89ce {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .fixed_7caa {
    padding: 1rem;
  }

  .logo_0896 {
    font-size: 1.5rem;
  }

  .old_2146 {
    font-size: 0.75rem;
  }

  .row_bc2a {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .icon-97ab {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .icon-97ab .logo-north-c722 {
    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 */
  .banner-brown-a3a4 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .inner-d698 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .plasma-956b {
    margin-bottom: 1rem;
  }

  /* Author */
  .green_544e {
    flex-direction: column;
  }

  .overlay-cfaf {
    flex-direction: column;
  }

  /* Quotes */
  .narrow_f5fb {
    flex-direction: column;
  }

  /* Pros/Cons */
  .chip-action-01ce {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .inner_2f7d {
    flex-direction: column;
  }

  .inner_2f7d .logo-north-c722 {
    width: 100%;
  }

  /* Version comparison */
  .link_motion_fc42 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .cool_9e99 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .disabled-north-3039 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .selected-ad4c {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .video-d38b,
  .row_0563,
  .paragraph-hot-9e9c,
  .heading-smooth-29aa,
  .gallery_5707,
  .menu_outer_a145 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .video-d38b table,
  .row_0563 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .paragraph_full_82ea {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .complex-961d {
    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;
  }

  .black-406f {
    font-size: 1.25rem !important;
  }

  .card_4f13 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .wrapper_d580 {
    position: fixed;
  }

  .hidden_gas_8e70 {
    padding: 0.625rem 0;
  }

  .modal-9371 img {
    height: 26px;
  }

  .top_ad3e {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .box-8525 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .aside-072b {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .aside-072b svg {
    width: 18px;
    height: 18px;
  }

  .aside-072b .pressed_bd81 {
    font-size: 0.7rem;
  }

  .aside-072b .input-ce5c {
    font-size: 0.65rem;
  }

  .aside-black-0965,
  .component-center-f524 {
    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, .complex-961d, .shade-medium-ef0a, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .block-e3c2 {
    padding: 1rem;
  }

  .filter_fixed_89ce {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .fixed_7caa {
    padding: 0.875rem;
  }

  .logo_0896 {
    font-size: 1.25rem;
  }

  .icon-97ab .logo-north-c722 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .card_4f13 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .logo-north-c722 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .preview_cool_edc8 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .inner-d698 {
    padding: 1rem;
  }

  .plasma-956b span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .current-3999,
  .sidebar-8002,
  .medium-3612,
  .lite_3850 {
    padding: 1rem;
  }
}

@media print {
  .wrapper_d580,
  .motion_6d00,
  .notification_4a9c,
  .logo-north-c722,
  .dropdown-stone-26d1 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .complex-961d {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.old_c57d {
  margin-bottom: 3rem;
  text-align: center;
}

.black-406f {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.paragraph_1db9 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.column_217b,
.logo_narrow_8125 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gradient_gold_61a3 {
  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;
}

.gradient_gold_61a3:hover {
  transform: translateY(-5px);
}

.gradient_gold_61a3 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.gradient_gold_61a3 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.text_selected_f56f {
  margin: 3rem 0;
}

.gold-67c1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.hovered_619f {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.hovered_619f:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.preview-tiny-b278 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.item-8e79 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.hero_first_8075 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.form_cd73 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.block-6a82 {
  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;
}

.block-6a82:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.block-6a82.wood-fc3d {
  border-left: 4px solid var(--primary-color);
}

.bronze_d94e {
  flex-shrink: 0;
}

.bronze_d94e svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.avatar-pressed-4fb7 {
  flex: 1;
}

.avatar-pressed-4fb7 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.panel_copper_3be4 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.south_a8ab,
.shadow-static-fd4a,
.avatar-d5b4 {
  margin-bottom: 1.5rem;
}

.south_a8ab h4,
.shadow-static-fd4a h4,
.avatar-d5b4 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.south_a8ab ul,
.shadow-static-fd4a ul,
.avatar-d5b4 ul {
  list-style: none;
  padding: 0;
}

.south_a8ab li,
.shadow-static-fd4a li,
.avatar-d5b4 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.south_a8ab li:before,
.shadow-static-fd4a li:before,
.avatar-d5b4 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.tag-5f42 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.tag-5f42 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;
}

.tag-5f42 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.gradient-f182 { margin: 2rem 0; }
.nav_simple_2ae3 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.nav_simple_2ae3 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.tooltip_fresh_6c0f p { margin-bottom: 1rem; line-height: 1.7; }
.tooltip_fresh_6c0f strong { color: var(--text-primary); }
.tooltip_fresh_6c0f ul { list-style: none; padding-left: 0; }
.tooltip_fresh_6c0f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.tooltip_fresh_6c0f ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.popup_84d9 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.shadow_af61 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.shadow_af61:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.bright_85b6 { font-size: 3rem; margin-bottom: 1rem; }
.shadow_af61 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.shadow_af61 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.lite_edfa { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.lite_edfa span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.alert-cold-7f1b { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.west_ce23 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.dirty_99a6 { text-align: center; }
.shadow-fixed-21ba { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.tag-copper-7f92 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.wrapper_hard_f4f9 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.grid-ed8e { margin: 2rem 0; }
.video-motion-2e57 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.video-motion-2e57 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.video-motion-2e57 p, .video-motion-2e57 ul { line-height: 1.7; }
.video-motion-2e57 ul { list-style: none; padding-left: 0; }
.video-motion-2e57 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.video-motion-2e57 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.tertiary-purple-f8df { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.media-easy-d57a { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.status_clean_ce61 { text-align: center; }
.layout_31f2 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.simple_4601 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.large-4231 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.progress-clean-ba46 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.light-9456 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.light-9456:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.light-9456 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.light-9456 p, .light-9456 ul { line-height: 1.7; }
.light-9456 ul { list-style: none; padding-left: 0; }
.light-9456 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.light-9456 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: ed68 */
.widget-item-l7 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.0;
}
