/* ============================================
   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 */
.shade-32dd p,
.overlay-top-6533,
.liquid_5d3c,
.picture_next_e351,
.border_orange_38c6,
.logo_bronze_cadb,
.short_1ccc,
.thumbnail_ec3f {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.mini-018e {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.mini-018e > *,
.warm_9e2f,
.shade-32dd,
.warm_f98b {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .mini-018e {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .mini-018e {
    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 === */
.media_e937 {
  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 */
.media_e937.left_80e1 {
  box-shadow: var(--shadow-md);
}

.wide_bd0d {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.hard-9ab1 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.summary_wide_9f7b {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.hidden_011f {
  display: none;
}

/* Hide mobile actions on desktop */
.shade_dark_3d0b {
  display: none;
}

.backdrop-fc71 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.backdrop-fc71 a:hover,
.backdrop-fc71 a.fn-active-e8cd {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.grid_19e7 {
  margin-left: 1rem;
}

.pagination_f3fc {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.background-66ea,
.nav-f548 {
  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;
}

.background-66ea {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.background-66ea: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;
}

.nav-f548 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.nav-f548: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;
}

.background-66ea svg,
.nav-f548 svg {
  flex-shrink: 0;
}

.shadow-orange-eca3 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.tertiary-b6d7 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.tertiary-b6d7::before,
.tertiary-b6d7::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.tertiary-b6d7::before {
  top: -7px;
}

.tertiary-b6d7::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.carousel-9af4 {
  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 === */
.main_under_581b {
  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);
}

.texture_pink_4426 {
  margin: 0 0 2rem;
  text-align: center;
}

.wrapper-left-dd86 {
  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;
}

.wrapper-left-dd86:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.focused_8545 {
  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);
}

.focused_8545 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.form-2539 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.hovered-cff0 {
  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;
}

.hovered-cff0:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.border-09d1 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.nav-dynamic-d8e0 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.action-1bc8 {
  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);
}

.action-1bc8 .center-8c7b {
  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;
}

.action-1bc8 .center-8c7b svg {
  flex-shrink: 0;
}

.action-1bc8 .shadow-0879 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.action-1bc8 .shadow-0879: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);
}

.action-1bc8 .plasma_7890 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.action-1bc8 .plasma_7890: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) {
  .main_under_581b {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .wrapper-left-dd86 {
    max-width: 100%;
  }

  .form-2539 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hovered-cff0 {
    padding: 1rem;
  }

  .border-09d1 {
    font-size: 1.5rem;
  }

  .nav-dynamic-d8e0 {
    font-size: 0.75rem;
  }

  .focused_8545 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .action-1bc8 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .action-1bc8 .center-8c7b {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .form-2539 {
    grid-template-columns: 1fr;
  }
}

.main_d79d {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.label-dim-6647 {
  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 === */
.light-4557 {
  margin-bottom: 2.5rem;
}

.new_a321 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.main_d79d {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hover-00e8 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mask_paper_3da4 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.status-f855 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.breadcrumb_hovered_4a39 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.nav-cool-046d {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.copper_b871 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.dropdown-green-cfc2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.dropdown-green-cfc2 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.status-d40a {
  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);
}

.detail_d7e3 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.preview_gas_8663 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.fast-4c0c {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.smooth_c1ba {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.paragraph-in-9e6c {
  display: grid;
  gap: 1rem;
}

.primary-outer-6261 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.stone-851b {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.container_hovered_f375 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.right-8780 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.thumbnail_b13e {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.badge-north-7e1a {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.badge-north-7e1a p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.overlay-top-6533 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.tag-874c {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.hover-46f6 {
  display: grid;
  gap: 2rem;
}

.prev_9f09 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.mask_paper_3da4 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.hover-00e8 {
  flex: 1;
}

.breadcrumb_hovered_4a39 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.breadcrumb_hovered_4a39 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.table-gas-5812 {
  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;
}

.nav-cool-046d {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.overlay_13c5 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.overlay_13c5 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.border_80e3 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.border_80e3 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.block_b1c8 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.block_b1c8 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.block_b1c8 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.block_b1c8 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.pro_ab52 {
  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 === */
.green_d99a {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.logo_pink_9847 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.background_2823 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.popup_inner_a0f1 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.popup_inner_a0f1 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.popup_inner_a0f1 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.popup_inner_a0f1 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;
}

.popup_inner_a0f1 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.popup_inner_a0f1 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.shade-32dd {
  padding: 3rem 0 5rem;
}

.warm_f98b {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.warm_f98b.paper_adb7 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.liquid_5d3c {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.bronze_201a {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.gallery_pro_eb89 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.gallery_pro_eb89 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.link-12b9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.border_08bf {
  text-align: center;
}

.sort-basic-9c8b {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.frame-tall-72f9 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.table-7a3e {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.logo_bronze_cadb {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.picture_next_e351 {
  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;
}

.picture_next_e351 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.picture_next_e351:hover {
  box-shadow: var(--shadow-lg);
}

.picture_next_e351.pink-215e {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.picture_next_e351 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.picture_next_e351 ul {
  margin: 1rem 0;
}

.picture_next_e351 li {
  margin-bottom: 0.75rem;
}

.focused_a1b7 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.image-in-c5d4 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.image-in-c5d4 a {
  font-weight: 600;
}

/* === Data Tables === */
.fast_9dac {
  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;
}

.fast_9dac table {
  width: 100%;
  min-width: 600px;
}

.fast_9dac thead {
  background-color: var(--primary-color);
  color: white;
}

.fast_9dac th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.fast_9dac td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.fast_9dac tbody tr:hover {
  background-color: var(--bg-secondary);
}

.fast_9dac tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.badge_center_f657 {
  list-style: none;
  margin: 1.5rem 0;
}

.badge_center_f657 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.badge_center_f657 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.title_slow_e125::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-e8cd::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 === */
.button_focused_3122 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.tabs-1944 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.tabs-1944 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.tabs-1944 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.tabs-1944 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.button_focused_3122 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.short_1ccc {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.short_1ccc::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.hero-8652 {
  position: relative;
  margin-bottom: 3rem;
}

.table-9261 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.table-9261 .detail-paper-fe15 {
  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;
}

.caption_d36b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.caption_d36b h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.caption_d36b ul {
  margin: 1rem 0;
}

.caption_d36b li {
  margin-bottom: 0.75rem;
}

.paper_7073 {
  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 === */
.menu-hovered-f151 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.menu-hovered-f151 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.sidebar-dd55 {
  list-style: none;
  margin: 1.5rem 0;
}

.sidebar-dd55 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.sidebar-dd55 a {
  font-weight: 600;
}

.plasma_cbd4 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.thumbnail_ec3f {
  margin: 2.5rem 0;
}

.middle-ada5 {
  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;
}

.middle-ada5:hover {
  box-shadow: var(--shadow-lg);
}

.middle-ada5.wrapper-26e8 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.heading_20f8 {
  flex-shrink: 0;
}

.heading_20f8 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);
}

.highlight_motion_7570 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.last-eec3,
.short_dfcc,
.backdrop-purple-420e {
  width: 100%;
  margin: 1.5rem 0;
}

.complex-beb6 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.complex-beb6 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.tall_1a72 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.tall_1a72 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.column_d908 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.column_d908 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.header-8cd1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.paper_31a4 {
  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;
}

.paper_31a4:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.paper_31a4.grid_mini_c415 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.paper_31a4 .purple_6396 {
  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;
}

.paper_31a4 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.background_east_ab28 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.avatar_orange_490c {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.avatar_orange_490c label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.fixed_8e5f {
  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 === */
.center-8c7b {
  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;
}

.shadow-0879 {
  background-color: var(--primary-color);
  color: white;
}

.shadow-0879:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.plasma_7890 {
  background-color: var(--text-secondary);
  color: white;
}

.plasma_7890:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.shade_lower_64f6 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.shade_lower_64f6:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.brown_8b21 {
  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;
}

.brown_8b21:hover {
  background-color: var(--primary-dark);
}

.large_5052 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.summary-rough-7d1c {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.in_93f6 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.wood-683b {
  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 === */
.texture-motion-a71a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.progress-42a4 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.progress-42a4 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.background_47d1 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.tabs_hot_4410 {
  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;
}

.outline-4f62 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.feature_gas_3f5e {
  list-style: none;
  counter-reset: rank-counter;
}

.feature_gas_3f5e li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.feature_gas_3f5e 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;
}

.gallery-bronze-60c3 {
  list-style: none;
}

.gallery-bronze-60c3 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.shadow-prev-a0cf {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.west-b2f1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.west-b2f1 .over-6a7b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.west-b2f1 .pattern_east_952d {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.progress_a73e {
  margin-top: 3rem;
}

.accordion-orange-9981 {
  width: 100%;
}

.list-7235 {
  background-color: #fef3c7;
}

.narrow_cb0f {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.label_center_4fac {
  margin: 3rem 0;
}

.fresh-ca6f {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.video_purple_51ed {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.video_purple_51ed:hover {
  box-shadow: var(--shadow-lg);
}

.video_purple_51ed.top_269f {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.accent_a636 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.breadcrumb_a24b strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.breadcrumb_a24b span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.motion_b8ef {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.video_purple_51ed blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.media-fd96 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag_bb98 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.preview-e8d7 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.outline_9f95 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.logo-65b6 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.background-788c {
  margin-top: 1rem;
}

/* === FAQ Section === */
.focus-742d {
  max-width: 900px;
  margin: 0 auto;
}

.button_d0d8 {
  margin: 2rem 0;
}

.backdrop-cea2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.backdrop-cea2 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.backdrop-cea2 summary::-webkit-details-marker {
  display: none;
}

.backdrop-cea2 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.stone-f54b {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.backdrop-cea2[open] .stone-f54b {
  transform: rotate(45deg);
}

.focus-43cc {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.focus-43cc p:last-child {
  margin-bottom: 0;
}

.wide-8a2d {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.panel_orange_82f8 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.warm-aac6 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.warm-aac6 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.warm-aac6 .center-8c7b {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.tag-4506 {
  max-width: 900px;
  margin: 0 auto;
}

.pink_c242 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.widget-current-d0ec {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.widget-current-d0ec.fn-success-e8cd {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.label_down_6aac {
  font-size: 3rem;
  line-height: 1;
}

.image_motion_f20d h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.avatar_068d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.block-fixed-2574,
.large-badb {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.block-fixed-2574 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.large-badb h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.white-5da1,
.clean-0de6 {
  margin: 1.5rem 0;
}

.white-5da1 li,
.clean-0de6 li {
  margin-bottom: 1rem;
}

.medium-582b {
  margin: 3rem 0;
}

.lower-2b9f {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.lower-2b9f h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.lower-2b9f ol {
  margin: 1rem 0;
}

.lower-2b9f li {
  margin-bottom: 0.75rem;
}

.secondary-fluid-835f {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.thick-ed8e {
  margin: 2rem 0;
}

.shade-2a64 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.article-ed50 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.sidebar_top_e4cb {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.focused_823a {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.disabled-65f9 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.shadow_ca98 {
  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;
}

.shadow_ca98 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.status-f855 {
  flex: 1;
}

.status-f855 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.hot_1745 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.bronze_1996 p {
  margin-bottom: 1rem;
}

.shadow_green_d321 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.black_e464 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.surface_7cfd {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.surface_7cfd a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.grid_f683 h3 {
  margin-bottom: 1.5rem;
}

.photo_tall_891b {
  display: grid;
  gap: 2rem;
}

.dropdown-right-03d5 {
  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;
}

.dropdown-right-03d5 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.dropdown-right-03d5 h4 {
  margin: 0 0 0.25rem;
}

.dropdown-right-03d5 p {
  margin: 0;
  font-size: 0.9375rem;
}

.shadow_9f94 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.progress_b499 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.progress_b499 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.progress_b499 ul {
  margin: 1.5rem 0;
}

.progress_b499 li {
  margin-bottom: 0.75rem;
}

.left_fff1 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.element-small-35d4 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.active-0cdc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.link_dynamic_3efd h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.link_dynamic_3efd p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.container_1ea1 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.container_1ea1 a {
  color: rgba(255, 255, 255, 0.8);
}

.focused_8bdc {
  list-style: none;
}

.focused_8bdc li {
  margin-bottom: 0.75rem;
}

.focused_8bdc a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.focused_8bdc a:hover {
  color: white;
}

.picture_north_bf58 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.primary-9035 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.thick-fcbd {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.dirty_65f6 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.gallery_first_00b3 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .mini-018e {
    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;
  }

  .border_8a2e {
    font-size: 1.5rem !important;
  }

  .new_a321 {
    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 */
  .picture_next_e351,
  .border_orange_38c6,
  .caption_d36b,
  .highlight_motion_7570,
  .accent_a636,
  .video_purple_51ed,
  .focus-43cc,
  .focused_8545,
  .overlay-top-6533,
  .liquid_5d3c {
    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 */
  .main_d79d {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hover-00e8 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .mask_paper_3da4 {
    flex-shrink: 0;
  }

  .status-f855 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .breadcrumb_hovered_4a39,
  .nav-cool-046d {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .nav-cool-046d {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .summary_wide_9f7b {
    display: none;
  }

  /* Show mobile actions */
  .shade_dark_3d0b {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .menu_cool_b73b {
    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;
  }

  .menu_cool_b73b svg {
    flex-shrink: 0;
  }

  .menu_cool_b73b .highlight-99ed {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .menu_cool_b73b .badge-2fba {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .right-9828 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .next_82f8 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .menu_cool_b73b:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .hidden_011f {
    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;
  }

  .hidden_011f.fn-active-e8cd {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hidden_011f li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .hidden_011f li:last-child {
    border-bottom: none;
  }

  .hidden_011f a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .backdrop-fc71 {
    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;
  }

  .backdrop-fc71 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .backdrop-fc71 li:last-child {
    border-bottom: none;
  }

  .backdrop-fc71 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .grid_19e7 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .pagination_f3fc {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .background-66ea,
  .nav-f548 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .background-66ea {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .nav-f548 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .backdrop-fc71.fn-active-e8cd {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .shadow-orange-eca3 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .media_e937 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .wide_bd0d {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .carousel-9af4 {
    margin-top: 0;
  }

  /* Hero section */
  .carousel-9af4 {
    padding: 2rem 0 1.5rem;
  }

  .new_a321 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .overlay-top-6533 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .main_under_581b {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .wrapper-left-dd86 {
    max-width: 100%;
    border-radius: 8px;
  }

  .form-2539 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hovered-cff0 {
    padding: 1rem;
  }

  .border-09d1 {
    font-size: 1.5rem;
  }

  .nav-dynamic-d8e0 {
    font-size: 0.75rem;
  }

  .focused_8545 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .action-1bc8 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .action-1bc8 .center-8c7b {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }

  /* Typography */
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  /* TOC */
  .background_2823 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .middle-ada5 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .heading_20f8 {
    margin-bottom: 1rem;
  }

  /* Author */
  .prev_9f09 {
    flex-direction: column;
  }

  .shadow_ca98 {
    flex-direction: column;
  }

  /* Quotes */
  .accent_a636 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .avatar_068d {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .focused_823a {
    flex-direction: column;
  }

  .focused_823a .center-8c7b {
    width: 100%;
  }

  /* Version comparison */
  .header-8cd1 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .texture-motion-a71a {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .active-0cdc {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .thick-fcbd {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .fast_9dac,
  .short_dfcc,
  .grid_2cb2,
  .accordion-orange-9981,
  .last-eec3,
  .backdrop-purple-420e {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .fast_9dac table,
  .short_dfcc table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .fixed_8e5f {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .mini-018e {
    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;
  }

  .border_8a2e {
    font-size: 1.25rem !important;
  }

  .new_a321 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .media_e937 {
    position: fixed;
  }

  .wide_bd0d {
    padding: 0.625rem 0;
  }

  .hard-9ab1 img {
    height: 26px;
  }

  .backdrop-fc71 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .hidden_011f {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .menu_cool_b73b {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .menu_cool_b73b svg {
    width: 18px;
    height: 18px;
  }

  .menu_cool_b73b .highlight-99ed {
    font-size: 0.7rem;
  }

  .menu_cool_b73b .badge-2fba {
    font-size: 0.65rem;
  }

  .background-66ea,
  .nav-f548 {
    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, .mini-018e, .warm_9e2f, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .main_under_581b {
    padding: 1rem;
  }

  .form-2539 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hovered-cff0 {
    padding: 0.875rem;
  }

  .border-09d1 {
    font-size: 1.25rem;
  }

  .action-1bc8 .center-8c7b {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .new_a321 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .center-8c7b {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .large_5052 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .middle-ada5 {
    padding: 1rem;
  }

  .heading_20f8 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .picture_next_e351,
  .block_a995,
  .layout-over-08b2,
  .bronze-27f1 {
    padding: 1rem;
  }
}

@media print {
  .media_e937,
  .green_d99a,
  .shadow-orange-eca3,
  .center-8c7b,
  .element-small-35d4 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .mini-018e {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.hidden-9e81 {
  margin-bottom: 3rem;
  text-align: center;
}

.border_8a2e {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.dropdown_plasma_6cdb {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.hidden-60ae,
.large_b6b6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.wrapper_fast_69f0 {
  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;
}

.wrapper_fast_69f0:hover {
  transform: translateY(-5px);
}

.wrapper_fast_69f0 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.wrapper_fast_69f0 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.fluid-3788 {
  margin: 3rem 0;
}

.info-ffe8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.new-f2bc {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.new-f2bc:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.card-a27c {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.photo_solid_f26e {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.avatar-rough-dff7 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.pressed-0b6b {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.red-c021 {
  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;
}

.red-c021:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.red-c021.wood-9664 {
  border-left: 4px solid var(--primary-color);
}

.overlay-blue-ad9b {
  flex-shrink: 0;
}

.overlay-blue-ad9b svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.silver-46ba {
  flex: 1;
}

.silver-46ba h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.avatar_action_d33d {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.primary-a54e,
.wide_1f98,
.static_049f {
  margin-bottom: 1.5rem;
}

.primary-a54e h4,
.wide_1f98 h4,
.static_049f h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.primary-a54e ul,
.wide_1f98 ul,
.static_049f ul {
  list-style: none;
  padding: 0;
}

.primary-a54e li,
.wide_1f98 li,
.static_049f li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.primary-a54e li:before,
.wide_1f98 li:before,
.static_049f li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.active-advanced-59f4 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.active-advanced-59f4 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;
}

.active-advanced-59f4 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.video-87f5 { margin: 2rem 0; }
.focused_2273 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.focused_2273 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.blue-8ac1 p { margin-bottom: 1rem; line-height: 1.7; }
.blue-8ac1 strong { color: var(--text-primary); }
.blue-8ac1 ul { list-style: none; padding-left: 0; }
.blue-8ac1 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.blue-8ac1 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.label-complex-6253 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.panel_inner_3abd { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.panel_inner_3abd:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.overlay-over-dd99 { font-size: 3rem; margin-bottom: 1rem; }
.panel_inner_3abd h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.panel_inner_3abd p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.in_3d27 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.in_3d27 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.nav_0968 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.tag_brown_c8ae { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.popup-3a4c { text-align: center; }
.outer-6611 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.next_5e51 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.orange_06e5 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.notice_5d75 { margin: 2rem 0; }
.outline_brown_c02f { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.outline_brown_c02f h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.outline_brown_c02f p, .outline_brown_c02f ul { line-height: 1.7; }
.outline_brown_c02f ul { list-style: none; padding-left: 0; }
.outline_brown_c02f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.outline_brown_c02f ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.aside-69cc { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.prev_53e7 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.block_out_e4db { text-align: center; }
.dirty_b708 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.pink-1095 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.article-e44f { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.button-east-a73b { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.table_over_0ab9 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.table_over_0ab9:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.table_over_0ab9 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.table_over_0ab9 p, .table_over_0ab9 ul { line-height: 1.7; }
.table_over_0ab9 ul { list-style: none; padding-left: 0; }
.table_over_0ab9 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.table_over_0ab9 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 9de6 */
.ghost-box-i2 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.2;
}
