/* ============================================
   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 */
.dropdown-narrow-d79c p,
.fixed-33fe,
.shadow_8c1a,
.prev_56db,
.wide-a9db,
.grid-a5df,
.nav_old_2490,
.out-1f88 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.article_545c {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.article_545c > *,
.detail_plasma_d22f,
.dropdown-narrow-d79c,
.wrapper-fluid-b5db {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .article_545c {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .article_545c {
    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 === */
.banner_hot_3c90 {
  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 */
.banner_hot_3c90.active_f9f4 {
  box-shadow: var(--shadow-md);
}

.simple-159a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.label-gas-8e31 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.short-70f1 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.secondary-7002 {
  display: none;
}

/* Hide mobile actions on desktop */
.article-43df {
  display: none;
}

.solid-96f8 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.solid-96f8 a:hover,
.solid-96f8 a.fn-active-2fbc {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.hero-smooth-5b8d {
  margin-left: 1rem;
}

.nav_motion_853d {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.hot-08b9,
.complex-f406 {
  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;
}

.hot-08b9 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.hot-08b9: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;
}

.complex-f406 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.complex-f406: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;
}

.hot-08b9 svg,
.complex-f406 svg {
  flex-shrink: 0;
}

.shadow_down_f476 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.label_tiny_de82 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.label_tiny_de82::before,
.label_tiny_de82::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.label_tiny_de82::before {
  top: -7px;
}

.label_tiny_de82::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.outer_e602 {
  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 === */
.widget-68de {
  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);
}

.tall_3160 {
  margin: 0 0 2rem;
  text-align: center;
}

.short_5ead {
  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;
}

.short_5ead:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.media-6b09 {
  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);
}

.media-6b09 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.component_soft_4e36 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.list-7ca2 {
  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;
}

.list-7ca2:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.block_f939 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hover-4258 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.yellow-99f8 {
  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);
}

.yellow-99f8 .pagination_6eb8 {
  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;
}

.yellow-99f8 .pagination_6eb8 svg {
  flex-shrink: 0;
}

.yellow-99f8 .basic-883e {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.yellow-99f8 .basic-883e: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);
}

.yellow-99f8 .secondary_fe96 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.yellow-99f8 .secondary_fe96: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) {
  .widget-68de {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .short_5ead {
    max-width: 100%;
  }

  .component_soft_4e36 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .list-7ca2 {
    padding: 1rem;
  }

  .block_f939 {
    font-size: 1.5rem;
  }

  .hover-4258 {
    font-size: 0.75rem;
  }

  .media-6b09 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .yellow-99f8 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .yellow-99f8 .pagination_6eb8 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .component_soft_4e36 {
    grid-template-columns: 1fr;
  }
}

.yellow-f63a {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hover_fast_773d {
  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 === */
.widget_eec3 {
  margin-bottom: 2.5rem;
}

.feature_52a8 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.yellow-f63a {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.middle-5c05 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pattern_b4ff {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.footer_fresh_61c8 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.media-cool-44e2 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.frame_da79 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.notice_8f4e {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.badge-iron-dec7 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.badge-iron-dec7 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.shade-hovered-2f07 {
  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);
}

.picture-a873 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.accent-80fc {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.description-901d {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.under-36b1 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.gallery_out_36bd {
  display: grid;
  gap: 1rem;
}

.section_inner_5113 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.bottom-ebfb {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.tooltip_mini_8a09 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.tiny_8c03 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.feature-1e4c {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.tertiary_white_dadc {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.tertiary_white_dadc p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.fixed-33fe {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.accordion_7739 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.action-625f {
  display: grid;
  gap: 2rem;
}

.frame-52ab {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.pattern_b4ff {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.middle-5c05 {
  flex: 1;
}

.media-cool-44e2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.media-cool-44e2 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.shade_adad {
  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;
}

.frame_da79 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.sidebar_36fb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.sidebar_36fb span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.fast-2c8d {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.fast-2c8d a {
  font-size: 0.875rem;
  font-weight: 500;
}

.orange-7075 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.orange-7075 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.orange-7075 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.orange-7075 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.icon_south_59b0 {
  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 === */
.table-hard-2090 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.item_tiny_3b13 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.paper_139a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.hard-ff54 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.hard-ff54 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.hard-ff54 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.hard-ff54 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;
}

.hard-ff54 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.hard-ff54 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.dropdown-narrow-d79c {
  padding: 3rem 0 5rem;
}

.wrapper-fluid-b5db {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.wrapper-fluid-b5db.description_bc64 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.shadow_8c1a {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.frame_1049 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.grid_98b5 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.grid_98b5 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.old-17ac {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.label-178b {
  text-align: center;
}

.hard-c491 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pattern-c6fa {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.thumbnail-ca17 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.grid-a5df {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.prev_56db {
  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;
}

.prev_56db * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.prev_56db:hover {
  box-shadow: var(--shadow-lg);
}

.prev_56db.slider_bd13 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.prev_56db h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.prev_56db ul {
  margin: 1rem 0;
}

.prev_56db li {
  margin-bottom: 0.75rem;
}

.new_708c {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.motion_8b95 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.motion_8b95 a {
  font-weight: 600;
}

/* === Data Tables === */
.section-medium-29c1 {
  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;
}

.section-medium-29c1 table {
  width: 100%;
  min-width: 600px;
}

.section-medium-29c1 thead {
  background-color: var(--primary-color);
  color: white;
}

.section-medium-29c1 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.section-medium-29c1 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.section-medium-29c1 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.section-medium-29c1 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.gallery_old_b04d {
  list-style: none;
  margin: 1.5rem 0;
}

.gallery_old_b04d li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.gallery_old_b04d li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.logo_wood_8576::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-2fbc::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 === */
.texture_huge_6560 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.filter-5150 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.filter-5150 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.filter-5150 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.filter-5150 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.texture_huge_6560 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.nav_old_2490 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.nav_old_2490::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.border-wood-3b6f {
  position: relative;
  margin-bottom: 3rem;
}

.focused-786d {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.focused-786d .block-in-ede5 {
  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;
}

.tertiary_slow_3876 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.tertiary_slow_3876 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.tertiary_slow_3876 ul {
  margin: 1rem 0;
}

.tertiary_slow_3876 li {
  margin-bottom: 0.75rem;
}

.caption-first-4a11 {
  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 === */
.avatar_tall_042a {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.avatar_tall_042a h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.avatar-middle-83f0 {
  list-style: none;
  margin: 1.5rem 0;
}

.avatar-middle-83f0 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.avatar-middle-83f0 a {
  font-weight: 600;
}

.paragraph_first_8279 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.out-1f88 {
  margin: 2.5rem 0;
}

.new-788a {
  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;
}

.new-788a:hover {
  box-shadow: var(--shadow-lg);
}

.new-788a.outer_b8df {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.text_next_4b34 {
  flex-shrink: 0;
}

.text_next_4b34 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);
}

.heading_clean_ddf4 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.item-inner-57c1,
.white-9ab0,
.block-d6f7 {
  width: 100%;
  margin: 1.5rem 0;
}

.label_selected_08d7 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.label_selected_08d7 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.border-hovered-de62 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.border-hovered-de62 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.glass_e907 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.glass_e907 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.table_dirty_7af6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.carousel-092b {
  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;
}

.carousel-092b:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.carousel-092b.action-1b87 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.carousel-092b .red_d971 {
  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;
}

.carousel-092b h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.pressed-8b90 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.pattern-dynamic-f1a6 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.pattern-dynamic-f1a6 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.hard_5bdc {
  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 === */
.pagination_6eb8 {
  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;
}

.basic-883e {
  background-color: var(--primary-color);
  color: white;
}

.basic-883e:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.secondary_fe96 {
  background-color: var(--text-secondary);
  color: white;
}

.secondary_fe96:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.black-940a {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.black-940a:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.pattern-narrow-0ca7 {
  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;
}

.pattern-narrow-0ca7:hover {
  background-color: var(--primary-dark);
}

.prev_c99a {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.summary_1826 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.slider-fluid-767f {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.form-edc5 {
  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 === */
.action-38df {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.filter_red_c881 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.filter_red_c881 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.pagination-over-e3d0 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.south_c996 {
  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;
}

.pink-1354 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.cool-8b5e {
  list-style: none;
  counter-reset: rank-counter;
}

.cool-8b5e li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.cool-8b5e 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;
}

.grid-d262 {
  list-style: none;
}

.grid-d262 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.banner_50c1 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.table_steel_2012 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.table_steel_2012 .video-focused-5198 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.table_steel_2012 .mask_plasma_3253 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.prev-a621 {
  margin-top: 3rem;
}

.avatar_07dc {
  width: 100%;
}

.middle-c917 {
  background-color: #fef3c7;
}

.surface_c1b7 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.item-south-70c9 {
  margin: 3rem 0;
}

.module_stale_e1c1 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.up-fb8f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.up-fb8f:hover {
  box-shadow: var(--shadow-lg);
}

.up-fb8f.mask-first-30de {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.current-29b5 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.soft-4cef strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.soft-4cef span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.accent_small_ac82 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.up-fb8f blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.dynamic-62fc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.complex-f333 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.pro-307c {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.up_f66f {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.pagination_6358 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.background_bronze_1e48 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.in-dfef {
  max-width: 900px;
  margin: 0 auto;
}

.wood_a592 {
  margin: 2rem 0;
}

.photo-gas-3ffe {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.photo-gas-3ffe summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.photo-gas-3ffe summary::-webkit-details-marker {
  display: none;
}

.photo-gas-3ffe summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.red_d8d6 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.photo-gas-3ffe[open] .red_d8d6 {
  transform: rotate(45deg);
}

.shade_5aeb {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.shade_5aeb p:last-child {
  margin-bottom: 0;
}

.filter-short-c314 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.banner-22e9 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.progress_6acf {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.progress_6acf p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.progress_6acf .pagination_6eb8 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.middle_fd3e {
  max-width: 900px;
  margin: 0 auto;
}

.badge_96aa {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.mini_08b1 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.mini_08b1.fn-success-2fbc {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.selected_fcf6 {
  font-size: 3rem;
  line-height: 1;
}

.border_cb2f h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.tag_bd02 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.photo-motion-fdc3,
.complex-e29d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.photo-motion-fdc3 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.complex-e29d h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.shadow_aa34,
.heading_42fd {
  margin: 1.5rem 0;
}

.shadow_aa34 li,
.heading_42fd li {
  margin-bottom: 1rem;
}

.center_1b5b {
  margin: 3rem 0;
}

.module_huge_229c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.module_huge_229c h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.module_huge_229c ol {
  margin: 1rem 0;
}

.module_huge_229c li {
  margin-bottom: 0.75rem;
}

.clean_0489 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.fast-dd27 {
  margin: 2rem 0;
}

.last-35bd {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.steel_a203 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.background_steel_4e9e {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.info-6a88 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.gas_909b {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.carousel_pressed_5fe6 {
  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;
}

.carousel_pressed_5fe6 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.footer_fresh_61c8 {
  flex: 1;
}

.footer_fresh_61c8 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.lite-a57a {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.medium-54a4 p {
  margin-bottom: 1rem;
}

.thumbnail_a708 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.alert_551a {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.border-8228 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.border-8228 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.widget_30c1 h3 {
  margin-bottom: 1.5rem;
}

.alert-easy-3e2b {
  display: grid;
  gap: 2rem;
}

.stale_da5d {
  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;
}

.stale_da5d img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.stale_da5d h4 {
  margin: 0 0 0.25rem;
}

.stale_da5d p {
  margin: 0;
  font-size: 0.9375rem;
}

.hover_tiny_5994 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.sidebar-4718 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.sidebar-4718 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.sidebar-4718 ul {
  margin: 1.5rem 0;
}

.sidebar-4718 li {
  margin-bottom: 0.75rem;
}

.photo_pro_ac11 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.border-a280 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.input_small_9d61 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.orange-6fb4 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.orange-6fb4 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.title_eda3 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.title_eda3 a {
  color: rgba(255, 255, 255, 0.8);
}

.simple_d3d5 {
  list-style: none;
}

.simple_d3d5 li {
  margin-bottom: 0.75rem;
}

.simple_d3d5 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.simple_d3d5 a:hover {
  color: white;
}

.photo-thick-b9a3 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.black-d6f4 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.chip_fast_75c0 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.component_3099 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.footer-cool-ca6c {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .article_545c {
    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;
  }

  .clean_93d7 {
    font-size: 1.5rem !important;
  }

  .feature_52a8 {
    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 */
  .prev_56db,
  .wide-a9db,
  .tertiary_slow_3876,
  .heading_clean_ddf4,
  .current-29b5,
  .up-fb8f,
  .shade_5aeb,
  .media-6b09,
  .fixed-33fe,
  .shadow_8c1a {
    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 */
  .yellow-f63a {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .middle-5c05 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .pattern_b4ff {
    flex-shrink: 0;
  }

  .footer_fresh_61c8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .media-cool-44e2,
  .frame_da79 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .frame_da79 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .short-70f1 {
    display: none;
  }

  /* Show mobile actions */
  .article-43df {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .component_east_444a {
    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;
  }

  .component_east_444a svg {
    flex-shrink: 0;
  }

  .component_east_444a .fluid-455f {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .component_east_444a .pro_8366 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .video-76f0 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .title_bd54 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .component_east_444a:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .secondary-7002 {
    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;
  }

  .secondary-7002.fn-active-2fbc {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .secondary-7002 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .secondary-7002 li:last-child {
    border-bottom: none;
  }

  .secondary-7002 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .solid-96f8 {
    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;
  }

  .solid-96f8 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .solid-96f8 li:last-child {
    border-bottom: none;
  }

  .solid-96f8 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .hero-smooth-5b8d {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .nav_motion_853d {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .hot-08b9,
  .complex-f406 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .hot-08b9 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .complex-f406 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .solid-96f8.fn-active-2fbc {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .shadow_down_f476 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .banner_hot_3c90 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .simple-159a {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .outer_e602 {
    margin-top: 0;
  }

  /* Hero section */
  .outer_e602 {
    padding: 2rem 0 1.5rem;
  }

  .feature_52a8 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .fixed-33fe {
    font-size: 1rem;
  }

  /* Hero brand image */
  .widget-68de {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .short_5ead {
    max-width: 100%;
    border-radius: 8px;
  }

  .component_soft_4e36 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .list-7ca2 {
    padding: 1rem;
  }

  .block_f939 {
    font-size: 1.5rem;
  }

  .hover-4258 {
    font-size: 0.75rem;
  }

  .media-6b09 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .yellow-99f8 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .yellow-99f8 .pagination_6eb8 {
    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 */
  .paper_139a {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .new-788a {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .text_next_4b34 {
    margin-bottom: 1rem;
  }

  /* Author */
  .frame-52ab {
    flex-direction: column;
  }

  .carousel_pressed_5fe6 {
    flex-direction: column;
  }

  /* Quotes */
  .current-29b5 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .tag_bd02 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .info-6a88 {
    flex-direction: column;
  }

  .info-6a88 .pagination_6eb8 {
    width: 100%;
  }

  /* Version comparison */
  .table_dirty_7af6 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .action-38df {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .input_small_9d61 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .chip_fast_75c0 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .section-medium-29c1,
  .white-9ab0,
  .hard-6119,
  .avatar_07dc,
  .item-inner-57c1,
  .block-d6f7 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .section-medium-29c1 table,
  .white-9ab0 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .hard_5bdc {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .article_545c {
    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;
  }

  .clean_93d7 {
    font-size: 1.25rem !important;
  }

  .feature_52a8 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .banner_hot_3c90 {
    position: fixed;
  }

  .simple-159a {
    padding: 0.625rem 0;
  }

  .label-gas-8e31 img {
    height: 26px;
  }

  .solid-96f8 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .secondary-7002 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .component_east_444a {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .component_east_444a svg {
    width: 18px;
    height: 18px;
  }

  .component_east_444a .fluid-455f {
    font-size: 0.7rem;
  }

  .component_east_444a .pro_8366 {
    font-size: 0.65rem;
  }

  .hot-08b9,
  .complex-f406 {
    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, .article_545c, .detail_plasma_d22f, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .widget-68de {
    padding: 1rem;
  }

  .component_soft_4e36 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .list-7ca2 {
    padding: 0.875rem;
  }

  .block_f939 {
    font-size: 1.25rem;
  }

  .yellow-99f8 .pagination_6eb8 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .feature_52a8 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .pagination_6eb8 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .prev_c99a {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .new-788a {
    padding: 1rem;
  }

  .text_next_4b34 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .prev_56db,
  .picture-bright-dc29,
  .white-ea9c,
  .medium-1859 {
    padding: 1rem;
  }
}

@media print {
  .banner_hot_3c90,
  .table-hard-2090,
  .shadow_down_f476,
  .pagination_6eb8,
  .border-a280 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .article_545c {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.link-down-4723 {
  margin-bottom: 3rem;
  text-align: center;
}

.clean_93d7 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.gas-4b3d {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.button-small-c718,
.content-dynamic-5f96 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.wide_01f6 {
  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;
}

.wide_01f6:hover {
  transform: translateY(-5px);
}

.wide_01f6 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.wide_01f6 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.progress-4cc5 {
  margin: 3rem 0;
}

.tertiary-next-54f3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.middle_7331 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.middle_7331:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.tertiary_a880 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.stone_5f6b {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.panel-bronze-2a3e {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.element-fff0 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.primary_dynamic_ca28 {
  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;
}

.primary_dynamic_ca28:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.primary_dynamic_ca28.focus_dynamic_2a13 {
  border-left: 4px solid var(--primary-color);
}

.active_933c {
  flex-shrink: 0;
}

.active_933c svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.in-f1b1 {
  flex: 1;
}

.in-f1b1 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.chip_d3f0 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.tooltip_middle_47bd,
.title_next_883e,
.component_1362 {
  margin-bottom: 1.5rem;
}

.tooltip_middle_47bd h4,
.title_next_883e h4,
.component_1362 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tooltip_middle_47bd ul,
.title_next_883e ul,
.component_1362 ul {
  list-style: none;
  padding: 0;
}

.tooltip_middle_47bd li,
.title_next_883e li,
.component_1362 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.tooltip_middle_47bd li:before,
.title_next_883e li:before,
.component_1362 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.tertiary_b28b {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.tertiary_b28b 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;
}

.tertiary_b28b a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.search_gold_e454 { margin: 2rem 0; }
.hot_4745 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.hot_4745 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.content_cb28 p { margin-bottom: 1rem; line-height: 1.7; }
.content_cb28 strong { color: var(--text-primary); }
.content_cb28 ul { list-style: none; padding-left: 0; }
.content_cb28 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.content_cb28 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.panel-fast-f453 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.summary-top-62d3 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.summary-top-62d3:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.dynamic_4d2d { font-size: 3rem; margin-bottom: 1rem; }
.summary-top-62d3 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.summary-top-62d3 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.video-bae3 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.video-bae3 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.background_inner_b218 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.small_09a0 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.purple_9339 { text-align: center; }
.message-green-55ce { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.dropdown-under-7a6a { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.rough_43d8 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.modal_0430 { margin: 2rem 0; }
.clean_5e91 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.clean_5e91 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.clean_5e91 p, .clean_5e91 ul { line-height: 1.7; }
.clean_5e91 ul { list-style: none; padding-left: 0; }
.clean_5e91 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.clean_5e91 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.gas_8ff6 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.photo_fad6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.glass-269c { text-align: center; }
.title_af2a { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.active-611d { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.search-narrow-1d76 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.message-brown-1367 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.photo_2406 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.photo_2406:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.photo_2406 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.photo_2406 p, .photo_2406 ul { line-height: 1.7; }
.photo_2406 ul { list-style: none; padding-left: 0; }
.photo_2406 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.photo_2406 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: a1b8 */
.promo-block-i6 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.3;
}
