/* ============================================
   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 */
.orange-2465 p,
.pro_8395,
.hero-1e77,
.mini-fa4f,
.yellow_db85,
.mask-dfd5,
.disabled_cc3a,
.surface-9c99 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.surface_selected_9321 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.surface_selected_9321 > *,
.container_3ba6,
.orange-2465,
.breadcrumb-focused-1f43 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .surface_selected_9321 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .surface_selected_9321 {
    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 === */
.paragraph_fresh_f317 {
  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 */
.paragraph_fresh_f317.first-de91 {
  box-shadow: var(--shadow-md);
}

.action-c3b9 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.caption-0504 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.full-4250 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.logo-c728 {
  display: none;
}

/* Hide mobile actions on desktop */
.pattern_2b92 {
  display: none;
}

.list-full-b766 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.list-full-b766 a:hover,
.list-full-b766 a.fn-active-6cc2 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.column_fixed_c33b {
  margin-left: 1rem;
}

.complex_e482 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.green_1fb3,
.active-7471 {
  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;
}

.green_1fb3 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.green_1fb3: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;
}

.active-7471 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.active-7471: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;
}

.green_1fb3 svg,
.active-7471 svg {
  flex-shrink: 0;
}

.avatar-dark-2a19 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.middle-5e5f {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.middle-5e5f::before,
.middle-5e5f::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.middle-5e5f::before {
  top: -7px;
}

.middle-5e5f::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.tabs-slow-5742 {
  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 === */
.small-b9a0 {
  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);
}

.thick-62a2 {
  margin: 0 0 2rem;
  text-align: center;
}

.hero_a4df {
  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;
}

.hero_a4df:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.grid_6aa7 {
  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);
}

.grid_6aa7 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.huge-7435 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.border-c759 {
  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;
}

.border-c759:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.focused-005d {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.in_8d68 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.detail-rough-d7e2 {
  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);
}

.detail-rough-d7e2 .west-ac57 {
  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;
}

.detail-rough-d7e2 .west-ac57 svg {
  flex-shrink: 0;
}

.detail-rough-d7e2 .popup_09b8 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.detail-rough-d7e2 .popup_09b8: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);
}

.detail-rough-d7e2 .widget_upper_227f {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.detail-rough-d7e2 .widget_upper_227f: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) {
  .small-b9a0 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .hero_a4df {
    max-width: 100%;
  }

  .huge-7435 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .border-c759 {
    padding: 1rem;
  }

  .focused-005d {
    font-size: 1.5rem;
  }

  .in_8d68 {
    font-size: 0.75rem;
  }

  .grid_6aa7 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .detail-rough-d7e2 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .detail-rough-d7e2 .west-ac57 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .huge-7435 {
    grid-template-columns: 1fr;
  }
}

.hover-9ca5 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.card-9b81 {
  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 === */
.slider_purple_472a {
  margin-bottom: 2.5rem;
}

.hidden-4f9a {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.hover-9ca5 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.active_b51a {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.secondary-7bef {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.summary_de74 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.link_fe5a {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.tooltip_solid_90d8 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.main_steel_206d {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.button-c7fd {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.button-c7fd svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.shadow_center_9d01 {
  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);
}

.block_c96e {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.thick-1461 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.nav_cool_b8e7 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.motion-78bc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.south_7892 {
  display: grid;
  gap: 1rem;
}

.hot-3d3c {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.title-a4e5 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.picture_f85d {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.badge_eb8a {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.gradient_gas_189f {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.card_4426 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.card_4426 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.pro_8395 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.form_paper_1f3e {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.overlay_5ad1 {
  display: grid;
  gap: 2rem;
}

.pink-681d {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.secondary-7bef {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.active_b51a {
  flex: 1;
}

.link_fe5a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.link_fe5a a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.copper_f9ad {
  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;
}

.tooltip_solid_90d8 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.component_hard_b691 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.component_hard_b691 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.nav_first_a4e9 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.nav_first_a4e9 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.breadcrumb-2897 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.breadcrumb-2897 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.breadcrumb-2897 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.breadcrumb-2897 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.silver-db4f {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #fef3c7;
  border-left: 4px solid var(--warning-color);
  border-radius: 4px;
  font-size: 0.9375rem;
}

/* === Table of Contents === */
.hero_complex_3946 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.thumbnail_ecb5 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.filter-6736 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.logo-bb01 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.logo-bb01 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.logo-bb01 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.logo-bb01 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;
}

.logo-bb01 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.logo-bb01 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.orange-2465 {
  padding: 3rem 0 5rem;
}

.breadcrumb-focused-1f43 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.breadcrumb-focused-1f43.upper-ef8e {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.hero-1e77 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.sidebar-last-f77e {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.brown-d490 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.brown-d490 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.paragraph_dark_c55b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.caption-west-5dbc {
  text-align: center;
}

.gallery-7ed3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.module_a285 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.first-fadc {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.mask-dfd5 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.mini-fa4f {
  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;
}

.mini-fa4f * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.mini-fa4f:hover {
  box-shadow: var(--shadow-lg);
}

.mini-fa4f.main-479a {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.mini-fa4f h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.mini-fa4f ul {
  margin: 1rem 0;
}

.mini-fa4f li {
  margin-bottom: 0.75rem;
}

.light-6b36 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.medium-365f {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.medium-365f a {
  font-weight: 600;
}

/* === Data Tables === */
.hover_cool_84d7 {
  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;
}

.hover_cool_84d7 table {
  width: 100%;
  min-width: 600px;
}

.hover_cool_84d7 thead {
  background-color: var(--primary-color);
  color: white;
}

.hover_cool_84d7 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.hover_cool_84d7 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.hover_cool_84d7 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.hover_cool_84d7 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.nav-tiny-c17d {
  list-style: none;
  margin: 1.5rem 0;
}

.nav-tiny-c17d li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.nav-tiny-c17d li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.shadow-fixed-651d::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-6cc2::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 === */
.surface-basic-9a4c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.hot-0c91 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hot-0c91 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.hot-0c91 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.hot-0c91 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.surface-basic-9a4c blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.disabled_cc3a {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.disabled_cc3a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.summary_action_d392 {
  position: relative;
  margin-bottom: 3rem;
}

.pressed-51cb {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.pressed-51cb .component-7e8a {
  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;
}

.filter_top_8f74 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.filter_top_8f74 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.filter_top_8f74 ul {
  margin: 1rem 0;
}

.filter_top_8f74 li {
  margin-bottom: 0.75rem;
}

.highlight-8df5 {
  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 === */
.heading-0b87 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.heading-0b87 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.advanced_1535 {
  list-style: none;
  margin: 1.5rem 0;
}

.advanced_1535 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.advanced_1535 a {
  font-weight: 600;
}

.smooth-8023 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.surface-9c99 {
  margin: 2.5rem 0;
}

.in_c75a {
  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;
}

.in_c75a:hover {
  box-shadow: var(--shadow-lg);
}

.in_c75a.tertiary-south-af0d {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.light_badf {
  flex-shrink: 0;
}

.light_badf 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);
}

.hover-smooth-9723 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.black_aee2,
.form_0085,
.soft_a3da {
  width: 100%;
  margin: 1.5rem 0;
}

.component_a4a2 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.component_a4a2 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.bright-1b76 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.bright-1b76 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.video_next_80d0 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.video_next_80d0 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.accent_f3bd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.bronze-7a4d {
  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;
}

.bronze-7a4d:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.bronze-7a4d.selected-1d2a {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.bronze-7a4d .green-11e6 {
  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;
}

.bronze-7a4d h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.down_5a3e {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.description_fa3a {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.description_fa3a label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.accent-old-0bf9 {
  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 === */
.west-ac57 {
  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;
}

.popup_09b8 {
  background-color: var(--primary-color);
  color: white;
}

.popup_09b8:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.widget_upper_227f {
  background-color: var(--text-secondary);
  color: white;
}

.widget_upper_227f:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.tabs-current-5b38 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.tabs-current-5b38:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.tooltip_e663 {
  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;
}

.tooltip_e663:hover {
  background-color: var(--primary-dark);
}

.video-iron-0488 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.right_38ea {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.liquid_e730 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-mini-3501 {
  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 === */
.slider_4992 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.photo-fixed-0c91 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.photo-fixed-0c91 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.hidden-inner-ac8f {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.badge_stale_b2cb {
  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;
}

.footer_solid_8ab3 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.copper-7b58 {
  list-style: none;
  counter-reset: rank-counter;
}

.copper-7b58 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.copper-7b58 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;
}

.border_stale_8dcf {
  list-style: none;
}

.border_stale_8dcf li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.gold_1f78 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.simple-9a6b {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.simple-9a6b .pattern_dirty_9e7e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.simple-9a6b .medium-6070 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.status-c4b2 {
  margin-top: 3rem;
}

.widget-dbcd {
  width: 100%;
}

.progress-2a96 {
  background-color: #fef3c7;
}

.item-south-1475 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.hard-cbfe {
  margin: 3rem 0;
}

.modal-cold-0905 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.label_green_5e69 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.label_green_5e69:hover {
  box-shadow: var(--shadow-lg);
}

.label_green_5e69.panel-over-f20a {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.highlight_up_a90a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.hot_84c3 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.hot_84c3 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.focus-smooth-583f {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.label_green_5e69 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.chip-3bf4 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.box-6bbf {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.fixed-4f9c {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.east_0128 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.active-309a {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.content-in-b4e6 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.menu-hot-d0c3 {
  max-width: 900px;
  margin: 0 auto;
}

.hovered_c32e {
  margin: 2rem 0;
}

.red-de60 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.red-de60 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.red-de60 summary::-webkit-details-marker {
  display: none;
}

.red-de60 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.media_easy_aa6b {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.red-de60[open] .media_easy_aa6b {
  transform: rotate(45deg);
}

.panel-b852 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.panel-b852 p:last-child {
  margin-bottom: 0;
}

.soft_4edc {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.caption-top-3ba6 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.wide_4cf3 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.wide_4cf3 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.wide_4cf3 .west-ac57 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.nav_7ba9 {
  max-width: 900px;
  margin: 0 auto;
}

.backdrop-complex-67dc {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.photo-cdaf {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.photo-cdaf.fn-success-6cc2 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.paragraph-east-bb1e {
  font-size: 3rem;
  line-height: 1;
}

.secondary_e825 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.alert-dd80 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.element_middle_2065,
.main-80dc {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.element_middle_2065 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.main-80dc h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.form-bc74,
.cold_1954 {
  margin: 1.5rem 0;
}

.form-bc74 li,
.cold_1954 li {
  margin-bottom: 1rem;
}

.heading_inner_ddb6 {
  margin: 3rem 0;
}

.glass-8c12 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.glass-8c12 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.glass-8c12 ol {
  margin: 1rem 0;
}

.glass-8c12 li {
  margin-bottom: 0.75rem;
}

.wrapper_d5d6 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.chip_in_d56b {
  margin: 2rem 0;
}

.dynamic_8b04 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.table-new-40ec {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.summary-over-cfc0 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.badge_43ef {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.box_de11 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.layout_lite_1991 {
  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;
}

.layout_lite_1991 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.summary_de74 {
  flex: 1;
}

.summary_de74 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.nav_d54c {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.silver_845e p {
  margin-bottom: 1rem;
}

.focused_a100 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.component-2a5b {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.gas-31e6 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.gas-31e6 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.media_be68 h3 {
  margin-bottom: 1.5rem;
}

.photo-smooth-b94d {
  display: grid;
  gap: 2rem;
}

.notice_prev_65e3 {
  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;
}

.notice_prev_65e3 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.notice_prev_65e3 h4 {
  margin: 0 0 0.25rem;
}

.notice_prev_65e3 p {
  margin: 0;
  font-size: 0.9375rem;
}

.icon-55fb {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.caption_top_ee4b {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.caption_top_ee4b h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.caption_top_ee4b ul {
  margin: 1.5rem 0;
}

.caption_top_ee4b li {
  margin-bottom: 0.75rem;
}

.message-east-78ee {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.surface-a6b5 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.panel_next_736b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.border_narrow_38dc h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.border_narrow_38dc p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.notice_pressed_2516 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.notice_pressed_2516 a {
  color: rgba(255, 255, 255, 0.8);
}

.input_6b76 {
  list-style: none;
}

.input_6b76 li {
  margin-bottom: 0.75rem;
}

.input_6b76 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.input_6b76 a:hover {
  color: white;
}

.media-5b43 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.gas-f57d {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.highlight-62af {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.label-1352 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.complex-88e2 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .surface_selected_9321 {
    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;
  }

  .hero_4690 {
    font-size: 1.5rem !important;
  }

  .hidden-4f9a {
    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 */
  .mini-fa4f,
  .yellow_db85,
  .filter_top_8f74,
  .hover-smooth-9723,
  .highlight_up_a90a,
  .label_green_5e69,
  .panel-b852,
  .grid_6aa7,
  .pro_8395,
  .hero-1e77 {
    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 */
  .hover-9ca5 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .active_b51a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .secondary-7bef {
    flex-shrink: 0;
  }

  .summary_de74 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .link_fe5a,
  .tooltip_solid_90d8 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .tooltip_solid_90d8 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .full-4250 {
    display: none;
  }

  /* Show mobile actions */
  .pattern_2b92 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .paragraph_3247 {
    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;
  }

  .paragraph_3247 svg {
    flex-shrink: 0;
  }

  .paragraph_3247 .left-0531 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .paragraph_3247 .link-hovered-f9c9 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .primary_lower_2f1d {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .media-76da {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .paragraph_3247:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .logo-c728 {
    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;
  }

  .logo-c728.fn-active-6cc2 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .logo-c728 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .logo-c728 li:last-child {
    border-bottom: none;
  }

  .logo-c728 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .list-full-b766 {
    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;
  }

  .list-full-b766 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .list-full-b766 li:last-child {
    border-bottom: none;
  }

  .list-full-b766 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .column_fixed_c33b {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .complex_e482 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .green_1fb3,
  .active-7471 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .green_1fb3 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .active-7471 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .list-full-b766.fn-active-6cc2 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .avatar-dark-2a19 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .paragraph_fresh_f317 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .action-c3b9 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .tabs-slow-5742 {
    margin-top: 0;
  }

  /* Hero section */
  .tabs-slow-5742 {
    padding: 2rem 0 1.5rem;
  }

  .hidden-4f9a {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .pro_8395 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .small-b9a0 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .hero_a4df {
    max-width: 100%;
    border-radius: 8px;
  }

  .huge-7435 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .border-c759 {
    padding: 1rem;
  }

  .focused-005d {
    font-size: 1.5rem;
  }

  .in_8d68 {
    font-size: 0.75rem;
  }

  .grid_6aa7 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .detail-rough-d7e2 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .detail-rough-d7e2 .west-ac57 {
    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 */
  .filter-6736 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .in_c75a {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .light_badf {
    margin-bottom: 1rem;
  }

  /* Author */
  .pink-681d {
    flex-direction: column;
  }

  .layout_lite_1991 {
    flex-direction: column;
  }

  /* Quotes */
  .highlight_up_a90a {
    flex-direction: column;
  }

  /* Pros/Cons */
  .alert-dd80 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .badge_43ef {
    flex-direction: column;
  }

  .badge_43ef .west-ac57 {
    width: 100%;
  }

  /* Version comparison */
  .accent_f3bd {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .slider_4992 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .panel_next_736b {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .highlight-62af {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .hover_cool_84d7,
  .form_0085,
  .left_734b,
  .widget-dbcd,
  .black_aee2,
  .soft_a3da {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hover_cool_84d7 table,
  .form_0085 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .accent-old-0bf9 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .surface_selected_9321 {
    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;
  }

  .hero_4690 {
    font-size: 1.25rem !important;
  }

  .hidden-4f9a {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .paragraph_fresh_f317 {
    position: fixed;
  }

  .action-c3b9 {
    padding: 0.625rem 0;
  }

  .caption-0504 img {
    height: 26px;
  }

  .list-full-b766 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .logo-c728 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .paragraph_3247 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .paragraph_3247 svg {
    width: 18px;
    height: 18px;
  }

  .paragraph_3247 .left-0531 {
    font-size: 0.7rem;
  }

  .paragraph_3247 .link-hovered-f9c9 {
    font-size: 0.65rem;
  }

  .green_1fb3,
  .active-7471 {
    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, .surface_selected_9321, .container_3ba6, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .small-b9a0 {
    padding: 1rem;
  }

  .huge-7435 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .border-c759 {
    padding: 0.875rem;
  }

  .focused-005d {
    font-size: 1.25rem;
  }

  .detail-rough-d7e2 .west-ac57 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .hidden-4f9a {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .west-ac57 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .video-iron-0488 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .in_c75a {
    padding: 1rem;
  }

  .light_badf span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .mini-fa4f,
  .grid_warm_7d73,
  .brown-5347,
  .motion_ece7 {
    padding: 1rem;
  }
}

@media print {
  .paragraph_fresh_f317,
  .hero_complex_3946,
  .avatar-dark-2a19,
  .west-ac57,
  .surface-a6b5 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .surface_selected_9321 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.silver-1fb6 {
  margin-bottom: 3rem;
  text-align: center;
}

.hero_4690 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.short_d7b7 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.footer_smooth_ea15,
.overlay-pressed-0029 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.yellow-9afa {
  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;
}

.yellow-9afa:hover {
  transform: translateY(-5px);
}

.yellow-9afa strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.yellow-9afa span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.large_3693 {
  margin: 3rem 0;
}

.frame-steel-1ddd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.stale_e5e7 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stale_e5e7:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.gradient_e74b {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-last-c562 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.inner-94cc {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.notice_fcb5 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.input_plasma_c625 {
  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;
}

.input_plasma_c625:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.input_plasma_c625.out-d212 {
  border-left: 4px solid var(--primary-color);
}

.hovered_273c {
  flex-shrink: 0;
}

.hovered_273c svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.active-dfb8 {
  flex: 1;
}

.active-dfb8 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.container-focused-403e {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.iron-3f1e,
.preview-ab08,
.primary-7f18 {
  margin-bottom: 1.5rem;
}

.iron-3f1e h4,
.preview-ab08 h4,
.primary-7f18 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.iron-3f1e ul,
.preview-ab08 ul,
.primary-7f18 ul {
  list-style: none;
  padding: 0;
}

.iron-3f1e li,
.preview-ab08 li,
.primary-7f18 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.iron-3f1e li:before,
.preview-ab08 li:before,
.primary-7f18 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.photo_over_7434 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.photo_over_7434 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;
}

.photo_over_7434 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.tabs-solid-9161 { margin: 2rem 0; }
.gas-12ce { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.gas-12ce h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.column_3a44 p { margin-bottom: 1rem; line-height: 1.7; }
.column_3a44 strong { color: var(--text-primary); }
.column_3a44 ul { list-style: none; padding-left: 0; }
.column_3a44 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.column_3a44 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.footer_gold_5503 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.border-ee85 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.border-ee85:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.stale-3b8a { font-size: 3rem; margin-bottom: 1rem; }
.border-ee85 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.border-ee85 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.surface_6709 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.surface_6709 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.image-upper-713c { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.bright-7c99 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.iron-8abc { text-align: center; }
.large_4aeb { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.texture-594e { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.notification-west-386f { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.active-active-1665 { margin: 2rem 0; }
.next-281f { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.next-281f h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.next-281f p, .next-281f ul { line-height: 1.7; }
.next-281f ul { list-style: none; padding-left: 0; }
.next-281f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.next-281f ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.center-28d3 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.light-1a87 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.sidebar_orange_3c1e { text-align: center; }
.new-b7ee { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.mask-bb09 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.filter_center_38f1 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.slow_ad60 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.plasma_6f89 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.plasma_6f89:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.plasma_6f89 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.plasma_6f89 p, .plasma_6f89 ul { line-height: 1.7; }
.plasma_6f89 ul { list-style: none; padding-left: 0; }
.plasma_6f89 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.plasma_6f89 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: fc19 */
.shadow-element-m9 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.0;
}
