/* ============================================
   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 */
.banner-9f17 p,
.last_60aa,
.slider_664f,
.dynamic-2fc8,
.list_3273,
.in-6b32,
.easy_cab0,
.gradient-dba7 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.new_84a6 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.new_84a6 > *,
.section-new-59f3,
.banner-9f17,
.tooltip-0c98 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .new_84a6 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .new_84a6 {
    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 === */
.outer_6eba {
  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 */
.outer_6eba.slow-e546 {
  box-shadow: var(--shadow-md);
}

.small-aad8 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.overlay_medium_dbc2 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.clean_1cb8 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.banner-warm-12ed {
  display: none;
}

/* Hide mobile actions on desktop */
.bottom_2334 {
  display: none;
}

.layout_5135 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.layout_5135 a:hover,
.layout_5135 a.fn-active-94ca {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.next_61df {
  margin-left: 1rem;
}

.current_4a2f {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.orange-7e12,
.layout-a541 {
  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;
}

.orange-7e12 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.orange-7e12: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;
}

.layout-a541 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.layout-a541: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;
}

.orange-7e12 svg,
.layout-a541 svg {
  flex-shrink: 0;
}

.action_e440 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.gradient_9e4d {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.gradient_9e4d::before,
.gradient_9e4d::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.gradient_9e4d::before {
  top: -7px;
}

.gradient_9e4d::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.status-selected-08a2 {
  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 === */
.preview-fac1 {
  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);
}

.progress-east-a4d5 {
  margin: 0 0 2rem;
  text-align: center;
}

.bottom-1ae2 {
  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;
}

.bottom-1ae2:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.hover-3b46 {
  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);
}

.hover-3b46 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.section-plasma-2ed5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.overlay_fab0 {
  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;
}

.overlay_fab0:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.block-12d9 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pro-5260 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.tag_under_de2e {
  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);
}

.tag_under_de2e .hidden_green_9cb7 {
  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;
}

.tag_under_de2e .hidden_green_9cb7 svg {
  flex-shrink: 0;
}

.tag_under_de2e .photo_e8f7 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.tag_under_de2e .photo_e8f7: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);
}

.tag_under_de2e .pagination_5426 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.tag_under_de2e .pagination_5426: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) {
  .preview-fac1 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .bottom-1ae2 {
    max-width: 100%;
  }

  .section-plasma-2ed5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .overlay_fab0 {
    padding: 1rem;
  }

  .block-12d9 {
    font-size: 1.5rem;
  }

  .pro-5260 {
    font-size: 0.75rem;
  }

  .hover-3b46 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .tag_under_de2e {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .tag_under_de2e .hidden_green_9cb7 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-plasma-2ed5 {
    grid-template-columns: 1fr;
  }
}

.west_660e {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tooltip-9856 {
  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 === */
.tertiary-26c4 {
  margin-bottom: 2.5rem;
}

.menu-mini-9757 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.west_660e {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.middle-b44f {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mini-fe49 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.cold-6ed2 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.active-129c {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.sort-5d26 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.video-fixed-f74b {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.element-cc7b {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.element-cc7b svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.video-2d6f {
  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);
}

.caption_over_ad03 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.cold-f8d9 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.list_new_efc3 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.block-new-2b59 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.aside_ea5e {
  display: grid;
  gap: 1rem;
}

.last_9e86 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.wrapper-0368 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.article_737d {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.bronze_6f49 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.brown_ba18 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.message-c033 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.message-c033 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.last_60aa {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.pagination_2760 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.medium-0050 {
  display: grid;
  gap: 2rem;
}

.dark-fe6c {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.mini-fe49 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.middle-b44f {
  flex: 1;
}

.active-129c {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.active-129c a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.new_2abf {
  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;
}

.sort-5d26 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.paragraph-clean-b24e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.paragraph-clean-b24e span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.title-e7b0 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.title-e7b0 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.cool_5f4d {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.cool_5f4d strong {
  display: block;
  margin-bottom: 0.75rem;
}

.cool_5f4d ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cool_5f4d li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.summary-orange-586b {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #fef3c7;
  border-left: 4px solid var(--warning-color);
  border-radius: 4px;
  font-size: 0.9375rem;
}

/* === Table of Contents === */
.header-gas-a543 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.notice_d5d4 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.row_plasma_f347 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.shadow_e7cf h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.shadow_e7cf ol {
  list-style: none;
  counter-reset: toc-counter;
}

.shadow_e7cf ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.shadow_e7cf ol li a {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.shadow_e7cf ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.shadow_e7cf ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.banner-9f17 {
  padding: 3rem 0 5rem;
}

.tooltip-0c98 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.tooltip-0c98.carousel_dbea {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.slider_664f {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.main_dim_7599 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.panel-first-4aff {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.panel-first-4aff h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.east-38ae {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.picture_wood_7b0a {
  text-align: center;
}

.photo_hard_3a34 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.feature-5b6a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.texture_79f8 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.in-6b32 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.dynamic-2fc8 {
  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;
}

.dynamic-2fc8 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.dynamic-2fc8:hover {
  box-shadow: var(--shadow-lg);
}

.dynamic-2fc8.info_warm_6be2 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.dynamic-2fc8 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.dynamic-2fc8 ul {
  margin: 1rem 0;
}

.dynamic-2fc8 li {
  margin-bottom: 0.75rem;
}

.pagination_ee06 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.filter_inner_84a4 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.filter_inner_84a4 a {
  font-weight: 600;
}

/* === Data Tables === */
.shade_eeb7 {
  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;
}

.shade_eeb7 table {
  width: 100%;
  min-width: 600px;
}

.shade_eeb7 thead {
  background-color: var(--primary-color);
  color: white;
}

.shade_eeb7 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.shade_eeb7 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.shade_eeb7 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.shade_eeb7 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.tabs_8455 {
  list-style: none;
  margin: 1.5rem 0;
}

.tabs_8455 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.tabs_8455 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.header_866d::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-94ca::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 === */
.footer-cool-6f3d {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.video_c06e {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.video_c06e img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.video_c06e strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.video_c06e span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-cool-6f3d blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.easy_cab0 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.easy_cab0::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.dirty-e006 {
  position: relative;
  margin-bottom: 3rem;
}

.texture_down_8397 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.texture_down_8397 .gradient_hovered_138b {
  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;
}

.next-842e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.next-842e h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.next-842e ul {
  margin: 1rem 0;
}

.next-842e li {
  margin-bottom: 0.75rem;
}

.tertiary_260d {
  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 === */
.module-right-60ef {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.module-right-60ef h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.solid-7d71 {
  list-style: none;
  margin: 1.5rem 0;
}

.solid-7d71 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.solid-7d71 a {
  font-weight: 600;
}

.photo-pink-fb9f {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.gradient-dba7 {
  margin: 2.5rem 0;
}

.breadcrumb_east_0144 {
  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;
}

.breadcrumb_east_0144:hover {
  box-shadow: var(--shadow-lg);
}

.breadcrumb_east_0144.lower-817f {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.complex_8ac1 {
  flex-shrink: 0;
}

.complex_8ac1 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);
}

.up-d575 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.simple-dbbe,
.lower_c09c,
.box-static-ce97 {
  width: 100%;
  margin: 1.5rem 0;
}

.tag_left_3fd4 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.tag_left_3fd4 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.lite-582c {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.lite-582c strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.first-db6a {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.first-db6a strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.hidden-7a52 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.next-503c {
  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;
}

.next-503c:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.next-503c.sort-plasma-9e3d {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.next-503c .feature-stone-3d6b {
  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;
}

.next-503c h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.blue-2beb {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.old-1baf {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.old-1baf label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.black-196a {
  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 === */
.hidden_green_9cb7 {
  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;
}

.photo_e8f7 {
  background-color: var(--primary-color);
  color: white;
}

.photo_e8f7:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.pagination_5426 {
  background-color: var(--text-secondary);
  color: white;
}

.pagination_5426:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.solid-9d0c {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.solid-9d0c:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.grid_0319 {
  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;
}

.grid_0319:hover {
  background-color: var(--primary-dark);
}

.picture_7cbc {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.tabs_bright_4bbb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.carousel-short-f86c {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.description-35ad {
  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 === */
.stale_7d79 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.wide-7013 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.wide-7013 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.list_brown_00e2 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.label_f624 {
  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;
}

.wide-8aaf {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.basic-0fe4 {
  list-style: none;
  counter-reset: rank-counter;
}

.basic-0fe4 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.basic-0fe4 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;
}

.iron_13d8 {
  list-style: none;
}

.iron_13d8 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.medium-c790 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.progress_pro_6e6f {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.progress_pro_6e6f .purple_e457 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.progress_pro_6e6f .notice-pink-ac06 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.link-c532 {
  margin-top: 3rem;
}

.text_d668 {
  width: 100%;
}

.pro-3ea0 {
  background-color: #fef3c7;
}

.table_f0fa {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.video-steel-a42f {
  margin: 3rem 0;
}

.menu-8f6d {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.tabs-hard-826d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.tabs-hard-826d:hover {
  box-shadow: var(--shadow-lg);
}

.tabs-hard-826d.prev_52b1 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.heading_upper_1df5 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.gallery_fluid_44f4 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.gallery_fluid_44f4 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hidden-paper-7fc4 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tabs-hard-826d blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.summary_c308 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.orange_37f9 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.tooltip_a801 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.element_pink_a2dc {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.module_purple_2c27 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.focus-red-4e70 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.table-yellow-4321 {
  max-width: 900px;
  margin: 0 auto;
}

.backdrop_plasma_c43f {
  margin: 2rem 0;
}

.west-c6c2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.west-c6c2 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.west-c6c2 summary::-webkit-details-marker {
  display: none;
}

.west-c6c2 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.popup-dbb7 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.west-c6c2[open] .popup-dbb7 {
  transform: rotate(45deg);
}

.container-old-d317 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.container-old-d317 p:last-child {
  margin-bottom: 0;
}

.main-521e {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.next_69e9 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.badge_middle_0f2b {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.badge_middle_0f2b p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.badge_middle_0f2b .hidden_green_9cb7 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.video_wood_abe5 {
  max-width: 900px;
  margin: 0 auto;
}

.picture_in_5324 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.old_1352 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.old_1352.fn-success-94ca {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.first-01c7 {
  font-size: 3rem;
  line-height: 1;
}

.plasma_1bb0 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.sort_copper_cb5f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.table-80f5,
.row-37e1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.table-80f5 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.row-37e1 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.mask-53ba,
.paragraph-3126 {
  margin: 1.5rem 0;
}

.mask-53ba li,
.paragraph-3126 li {
  margin-bottom: 1rem;
}

.search-motion-5ecf {
  margin: 3rem 0;
}

.box_ec14 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.box_ec14 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.box_ec14 ol {
  margin: 1rem 0;
}

.box_ec14 li {
  margin-bottom: 0.75rem;
}

.modal_huge_5623 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.carousel_liquid_a3c6 {
  margin: 2rem 0;
}

.header-simple-8333 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.sidebar-east-219f {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.outline_2bfd {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.table-lite-100f {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.filter_lower_c5b7 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.frame-iron-221c {
  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;
}

.frame-iron-221c img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.cold-6ed2 {
  flex: 1;
}

.cold-6ed2 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.block-upper-5561 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.prev-f402 p {
  margin-bottom: 1rem;
}

.gallery_paper_abf8 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.summary-fixed-da73 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.over_6ff2 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.over_6ff2 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.clean_e6e6 h3 {
  margin-bottom: 1.5rem;
}

.heading_rough_b358 {
  display: grid;
  gap: 2rem;
}

.hard-f195 {
  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;
}

.hard-f195 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.hard-f195 h4 {
  margin: 0 0 0.25rem;
}

.hard-f195 p {
  margin: 0;
  font-size: 0.9375rem;
}

.huge_3bd8 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.advanced-a4d7 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.advanced-a4d7 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.advanced-a4d7 ul {
  margin: 1.5rem 0;
}

.advanced-a4d7 li {
  margin-bottom: 0.75rem;
}

.modal-pink-6e51 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.content_green_b4a0 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.tooltip-26a8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.sidebar_68a6 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.sidebar_68a6 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.module-6a2f {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.module-6a2f a {
  color: rgba(255, 255, 255, 0.8);
}

.gold-ca8d {
  list-style: none;
}

.gold-ca8d li {
  margin-bottom: 0.75rem;
}

.gold-ca8d a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.gold-ca8d a:hover {
  color: white;
}

.short-5377 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.icon_dark_d016 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.slider-5b4a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.info_cc53 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.center-f832 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .new_84a6 {
    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;
  }

  .input_bright_43ba {
    font-size: 1.5rem !important;
  }

  .menu-mini-9757 {
    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 */
  .dynamic-2fc8,
  .list_3273,
  .next-842e,
  .up-d575,
  .heading_upper_1df5,
  .tabs-hard-826d,
  .container-old-d317,
  .hover-3b46,
  .last_60aa,
  .slider_664f {
    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 */
  .west_660e {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .middle-b44f {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .mini-fe49 {
    flex-shrink: 0;
  }

  .cold-6ed2 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .active-129c,
  .sort-5d26 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .sort-5d26 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .clean_1cb8 {
    display: none;
  }

  /* Show mobile actions */
  .bottom_2334 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .dropdown_0dec {
    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;
  }

  .dropdown_0dec svg {
    flex-shrink: 0;
  }

  .dropdown_0dec .background_253e {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .dropdown_0dec .backdrop-out-3513 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .hidden_42f7 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .component_silver_65cb {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .dropdown_0dec:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .banner-warm-12ed {
    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;
  }

  .banner-warm-12ed.fn-active-94ca {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .banner-warm-12ed li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .banner-warm-12ed li:last-child {
    border-bottom: none;
  }

  .banner-warm-12ed a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .layout_5135 {
    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;
  }

  .layout_5135 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .layout_5135 li:last-child {
    border-bottom: none;
  }

  .layout_5135 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .next_61df {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .current_4a2f {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .orange-7e12,
  .layout-a541 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .orange-7e12 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .layout-a541 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .layout_5135.fn-active-94ca {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .action_e440 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .outer_6eba {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .small-aad8 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .status-selected-08a2 {
    margin-top: 0;
  }

  /* Hero section */
  .status-selected-08a2 {
    padding: 2rem 0 1.5rem;
  }

  .menu-mini-9757 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .last_60aa {
    font-size: 1rem;
  }

  /* Hero brand image */
  .preview-fac1 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .bottom-1ae2 {
    max-width: 100%;
    border-radius: 8px;
  }

  .section-plasma-2ed5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .overlay_fab0 {
    padding: 1rem;
  }

  .block-12d9 {
    font-size: 1.5rem;
  }

  .pro-5260 {
    font-size: 0.75rem;
  }

  .hover-3b46 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .tag_under_de2e {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .tag_under_de2e .hidden_green_9cb7 {
    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 */
  .row_plasma_f347 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .breadcrumb_east_0144 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .complex_8ac1 {
    margin-bottom: 1rem;
  }

  /* Author */
  .dark-fe6c {
    flex-direction: column;
  }

  .frame-iron-221c {
    flex-direction: column;
  }

  /* Quotes */
  .heading_upper_1df5 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .sort_copper_cb5f {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .table-lite-100f {
    flex-direction: column;
  }

  .table-lite-100f .hidden_green_9cb7 {
    width: 100%;
  }

  /* Version comparison */
  .hidden-7a52 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .stale_7d79 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .tooltip-26a8 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .slider-5b4a {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .shade_eeb7,
  .lower_c09c,
  .dropdown_green_3ec1,
  .text_d668,
  .simple-dbbe,
  .box-static-ce97 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .shade_eeb7 table,
  .lower_c09c table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .black-196a {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .new_84a6 {
    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;
  }

  .input_bright_43ba {
    font-size: 1.25rem !important;
  }

  .menu-mini-9757 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .outer_6eba {
    position: fixed;
  }

  .small-aad8 {
    padding: 0.625rem 0;
  }

  .overlay_medium_dbc2 img {
    height: 26px;
  }

  .layout_5135 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .banner-warm-12ed {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .dropdown_0dec {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .dropdown_0dec svg {
    width: 18px;
    height: 18px;
  }

  .dropdown_0dec .background_253e {
    font-size: 0.7rem;
  }

  .dropdown_0dec .backdrop-out-3513 {
    font-size: 0.65rem;
  }

  .orange-7e12,
  .layout-a541 {
    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, .new_84a6, .section-new-59f3, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .preview-fac1 {
    padding: 1rem;
  }

  .section-plasma-2ed5 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .overlay_fab0 {
    padding: 0.875rem;
  }

  .block-12d9 {
    font-size: 1.25rem;
  }

  .tag_under_de2e .hidden_green_9cb7 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .menu-mini-9757 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .hidden_green_9cb7 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .picture_7cbc {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .breadcrumb_east_0144 {
    padding: 1rem;
  }

  .complex_8ac1 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .dynamic-2fc8,
  .breadcrumb-5031,
  .status_wood_0cea,
  .upper_f32c {
    padding: 1rem;
  }
}

@media print {
  .outer_6eba,
  .header-gas-a543,
  .action_e440,
  .hidden_green_9cb7,
  .content_green_b4a0 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .new_84a6 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.shadow_15ff {
  margin-bottom: 3rem;
  text-align: center;
}

.input_bright_43ba {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.lite-41c4 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.text_6e23,
.disabled-active-97b7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.aside-wood-3f33 {
  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;
}

.aside-wood-3f33:hover {
  transform: translateY(-5px);
}

.aside-wood-3f33 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.aside-wood-3f33 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.hover-easy-1396 {
  margin: 3rem 0;
}

.element_purple_7537 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.aside-dark-fb93 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.aside-dark-fb93:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.active_light_6ea8 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.message_simple_7a2a {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.element-5274 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.full-2228 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.south-4d75 {
  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;
}

.south-4d75:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.south-4d75.tabs-8e00 {
  border-left: 4px solid var(--primary-color);
}

.content-2543 {
  flex-shrink: 0;
}

.content-2543 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.search_short_cceb {
  flex: 1;
}

.search_short_cceb h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.text_a477 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.icon_gas_e2f3,
.popup_83d7,
.hover-42d5 {
  margin-bottom: 1.5rem;
}

.icon_gas_e2f3 h4,
.popup_83d7 h4,
.hover-42d5 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon_gas_e2f3 ul,
.popup_83d7 ul,
.hover-42d5 ul {
  list-style: none;
  padding: 0;
}

.icon_gas_e2f3 li,
.popup_83d7 li,
.hover-42d5 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.icon_gas_e2f3 li:before,
.popup_83d7 li:before,
.hover-42d5 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.medium_b24d {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.medium_b24d 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;
}

.medium_b24d a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.item-in-e8ba { margin: 2rem 0; }
.paper-0360 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.paper-0360 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.warm_246e p { margin-bottom: 1rem; line-height: 1.7; }
.warm_246e strong { color: var(--text-primary); }
.warm_246e ul { list-style: none; padding-left: 0; }
.warm_246e ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.warm_246e ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.over-5fe4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.photo_8337 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.photo_8337:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.white_1b4d { font-size: 3rem; margin-bottom: 1rem; }
.photo_8337 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.photo_8337 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.gradient_805a { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.gradient_805a span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.chip_ec77 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.aside_19e4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.caption-clean-f344 { text-align: center; }
.hidden_paper_746f { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.search_lower_b434 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.photo-e42e { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.tag_fast_8ca2 { margin: 2rem 0; }
.slow-bf20 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.slow-bf20 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.slow-bf20 p, .slow-bf20 ul { line-height: 1.7; }
.slow-bf20 ul { list-style: none; padding-left: 0; }
.slow-bf20 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.slow-bf20 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.focus-dbd5 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.input-2e5e { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.last-8f00 { text-align: center; }
.card_motion_3d06 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.table-fast-f778 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.header_c06b { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.outline_930c { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.silver-0fb1 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.silver-0fb1:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.silver-0fb1 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.silver-0fb1 p, .silver-0fb1 ul { line-height: 1.7; }
.silver-0fb1 ul { list-style: none; padding-left: 0; }
.silver-0fb1 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.silver-0fb1 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: f99f */
.ghost-box-w8 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.2;
}
