/* ============================================
   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 */
.tiny_36fb p,
.fresh_47ee,
.full_e338,
.frame-cold-5969,
.yellow_5031,
.hover-short-ae66,
.medium_de9a,
.easy_f681 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.bronze_5bba {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.bronze_5bba > *,
.article-b6ce,
.tiny_36fb,
.gold_8cee {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .bronze_5bba {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .bronze_5bba {
    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 === */
.item_action_8bf7 {
  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 */
.item_action_8bf7.carousel_b351 {
  box-shadow: var(--shadow-md);
}

.shade_e657 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.black-2676 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.wrapper_complex_fb76 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.light-b656 {
  display: none;
}

/* Hide mobile actions on desktop */
.shadow_112e {
  display: none;
}

.highlight-small-bb90 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.highlight-small-bb90 a:hover,
.highlight-small-bb90 a.fn-active-9a97 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.list-e5a1 {
  margin-left: 1rem;
}

.list-3393 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.icon-8b6e,
.badge-01f8 {
  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;
}

.icon-8b6e {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.icon-8b6e: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;
}

.badge-01f8 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.badge-01f8: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;
}

.icon-8b6e svg,
.badge-01f8 svg {
  flex-shrink: 0;
}

.modal_4e95 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.stale-6817 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.stale-6817::before,
.stale-6817::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.stale-6817::before {
  top: -7px;
}

.stale-6817::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.table-green-ccbb {
  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 === */
.nav_bd87 {
  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);
}

.bottom_8c27 {
  margin: 0 0 2rem;
  text-align: center;
}

.pattern_246f {
  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;
}

.pattern_246f:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.frame-9ff8 {
  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);
}

.frame-9ff8 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.detail_9d19 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.active-d954 {
  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;
}

.active-d954:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.thumbnail-b338 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.easy-4bc1 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.modal-7936 {
  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);
}

.modal-7936 .simple-ed79 {
  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;
}

.modal-7936 .simple-ed79 svg {
  flex-shrink: 0;
}

.modal-7936 .layout_c075 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.modal-7936 .layout_c075: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);
}

.modal-7936 .tall_377c {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.modal-7936 .tall_377c: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) {
  .nav_bd87 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .pattern_246f {
    max-width: 100%;
  }

  .detail_9d19 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .active-d954 {
    padding: 1rem;
  }

  .thumbnail-b338 {
    font-size: 1.5rem;
  }

  .easy-4bc1 {
    font-size: 0.75rem;
  }

  .frame-9ff8 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .modal-7936 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .modal-7936 .simple-ed79 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .detail_9d19 {
    grid-template-columns: 1fr;
  }
}

.simple_954d {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.shadow_dark_3bb0 {
  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 === */
.section_inner_12e6 {
  margin-bottom: 2.5rem;
}

.paper_6bb7 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.simple_954d {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.notification_0d8b {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.clean_3f1b {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.nav-dirty-06db {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.button_f718 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.sidebar-d073 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.mask_bright_9b21 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.image-34ff {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.image-34ff svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.picture-huge-2e82 {
  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);
}

.label-red-0fb6 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.tertiary-next-f94d {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.element-ff84 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.orange-85c1 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.paper-6d3b {
  display: grid;
  gap: 1rem;
}

.highlight_312c {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.video-5e51 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.text-copper-d496 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.active-green-3657 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.search-d3e2 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.complex-04ff {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.complex-04ff p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.fresh_47ee {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.bronze_5072 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.medium-4fc5 {
  display: grid;
  gap: 2rem;
}

.accent-top-ff31 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.clean_3f1b {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.notification_0d8b {
  flex: 1;
}

.button_f718 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.button_f718 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.secondary-e858 {
  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;
}

.sidebar-d073 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.huge_16e5 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.huge_16e5 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.pagination-01e6 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.pagination-01e6 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.item_liquid_e930 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.item_liquid_e930 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.item_liquid_e930 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.item_liquid_e930 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.thick-90cb {
  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 === */
.chip-up-543f {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.gas-2189 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.button-a265 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.caption-a5bd h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.caption-a5bd ol {
  list-style: none;
  counter-reset: toc-counter;
}

.caption-a5bd ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.caption-a5bd 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;
}

.caption-a5bd ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.caption-a5bd ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.tiny_36fb {
  padding: 3rem 0 5rem;
}

.gold_8cee {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.gold_8cee.list-current-4dd2 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.full_e338 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.west_b754 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.hovered-3bc4 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.hovered-3bc4 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.aside_clean_7c91 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.frame-8f7b {
  text-align: center;
}

.purple_34dc {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.picture-action-542e {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.link-down-1a5b {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.hover-short-ae66 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.frame-cold-5969 {
  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;
}

.frame-cold-5969 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.frame-cold-5969:hover {
  box-shadow: var(--shadow-lg);
}

.frame-cold-5969.media-ad68 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.frame-cold-5969 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.frame-cold-5969 ul {
  margin: 1rem 0;
}

.frame-cold-5969 li {
  margin-bottom: 0.75rem;
}

.caption-advanced-ca53 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.gallery_cc5b {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.gallery_cc5b a {
  font-weight: 600;
}

/* === Data Tables === */
.tabs_complex_8843 {
  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;
}

.tabs_complex_8843 table {
  width: 100%;
  min-width: 600px;
}

.tabs_complex_8843 thead {
  background-color: var(--primary-color);
  color: white;
}

.tabs_complex_8843 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.tabs_complex_8843 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.tabs_complex_8843 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.tabs_complex_8843 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.preview_ea39 {
  list-style: none;
  margin: 1.5rem 0;
}

.preview_ea39 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.preview_ea39 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.hovered_6d0d::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-9a97::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 === */
.outline_2720 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.mask-current-2429 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.mask-current-2429 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.mask-current-2429 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.mask-current-2429 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.outline_2720 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.medium_de9a {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.medium_de9a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.plasma_2ccf {
  position: relative;
  margin-bottom: 3rem;
}

.wrapper-5824 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.wrapper-5824 .shadow_6a4d {
  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;
}

.hot-6403 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.hot-6403 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.hot-6403 ul {
  margin: 1rem 0;
}

.hot-6403 li {
  margin-bottom: 0.75rem;
}

.lower_4a69 {
  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 === */
.picture_e233 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.picture_e233 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.chip_short_5259 {
  list-style: none;
  margin: 1.5rem 0;
}

.chip_short_5259 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.chip_short_5259 a {
  font-weight: 600;
}

.main-c4d1 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.easy_f681 {
  margin: 2.5rem 0;
}

.photo_solid_077a {
  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;
}

.photo_solid_077a:hover {
  box-shadow: var(--shadow-lg);
}

.photo_solid_077a.fresh-3a28 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.status_fixed_6e1a {
  flex-shrink: 0;
}

.status_fixed_6e1a 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);
}

.shade_3c67 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.grid_lite_8d72,
.advanced_29ed,
.tag_d36f {
  width: 100%;
  margin: 1.5rem 0;
}

.wide_7032 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.wide_7032 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.detail-hard-4cb4 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.detail-hard-4cb4 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.popup-action-f5f1 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.popup-action-f5f1 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.summary-hard-f8ff {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.overlay_bc56 {
  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;
}

.overlay_bc56:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.overlay_bc56.selected-72b9 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.overlay_bc56 .secondary_plasma_c120 {
  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;
}

.overlay_bc56 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.mini_6adc {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.column-full-0f19 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.column-full-0f19 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.first-d02d {
  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 === */
.simple-ed79 {
  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;
}

.layout_c075 {
  background-color: var(--primary-color);
  color: white;
}

.layout_c075:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.tall_377c {
  background-color: var(--text-secondary);
  color: white;
}

.tall_377c:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.hidden_0d6a {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.hidden_0d6a:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.texture-right-91bb {
  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;
}

.texture-right-91bb:hover {
  background-color: var(--primary-dark);
}

.block_28fe {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.filter-a05f {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.under_2366 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.large-2a33 {
  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 === */
.message_smooth_aca7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.green-2117 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.green-2117 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.box-bab1 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.component_west_e345 {
  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;
}

.bronze_db65 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.row-white-e156 {
  list-style: none;
  counter-reset: rank-counter;
}

.row-white-e156 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.row-white-e156 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;
}

.silver_8d73 {
  list-style: none;
}

.silver_8d73 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.block_hard_f591 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.aside_46cf {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.aside_46cf .pro_b895 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.aside_46cf .row-0f6e {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.video_east_6d7f {
  margin-top: 3rem;
}

.slow_6178 {
  width: 100%;
}

.left_2005 {
  background-color: #fef3c7;
}

.box-pressed-6995 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.easy-877f {
  margin: 3rem 0;
}

.avatar_737b {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.module-f36f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.module-f36f:hover {
  box-shadow: var(--shadow-lg);
}

.module-f36f.shadow_up_8973 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.up_0793 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.orange_5955 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.orange_5955 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.nav-wood-003d {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.module-f36f blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.middle_fbfa {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hero_selected_68ee {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.cool-edbb {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.accordion-8878 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.sidebar-fluid-ce3c {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.accent_617f {
  margin-top: 1rem;
}

/* === FAQ Section === */
.content-fixed-aa37 {
  max-width: 900px;
  margin: 0 auto;
}

.overlay_medium_8e79 {
  margin: 2rem 0;
}

.static-b22d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.static-b22d summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.static-b22d summary::-webkit-details-marker {
  display: none;
}

.static-b22d summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.bright_8f41 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.static-b22d[open] .bright_8f41 {
  transform: rotate(45deg);
}

.cool_323b {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.cool_323b p:last-child {
  margin-bottom: 0;
}

.tertiary-2a5c {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.old-2f19 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.dirty_4ad2 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.dirty_4ad2 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.dirty_4ad2 .simple-ed79 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.cold-14ba {
  max-width: 900px;
  margin: 0 auto;
}

.pattern-10a3 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.south_6108 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.south_6108.fn-success-9a97 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.wrapper_51d8 {
  font-size: 3rem;
  line-height: 1;
}

.new_4e8c h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.modal_pro_d13f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.west_81af,
.header_out_982f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.west_81af h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.header_out_982f h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.section-35cb,
.selected_6991 {
  margin: 1.5rem 0;
}

.section-35cb li,
.selected_6991 li {
  margin-bottom: 1rem;
}

.feature-stone-042e {
  margin: 3rem 0;
}

.label-0fc4 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.label-0fc4 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.label-0fc4 ol {
  margin: 1rem 0;
}

.label-0fc4 li {
  margin-bottom: 0.75rem;
}

.disabled_84b6 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.outline_over_697e {
  margin: 2rem 0;
}

.logo_north_ac6b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.gold-4dca {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.popup_d376 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.secondary-slow-8d7c {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.action-cf69 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.bright-b66f {
  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;
}

.bright-b66f img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.nav-dirty-06db {
  flex: 1;
}

.nav-dirty-06db h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.banner_582d {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.mask-a695 p {
  margin-bottom: 1rem;
}

.north_c700 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.backdrop-3f43 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.dirty-74df {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.dirty-74df a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.pink_fa06 h3 {
  margin-bottom: 1.5rem;
}

.narrow_5dd4 {
  display: grid;
  gap: 2rem;
}

.left-66a2 {
  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;
}

.left-66a2 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.left-66a2 h4 {
  margin: 0 0 0.25rem;
}

.left-66a2 p {
  margin: 0;
  font-size: 0.9375rem;
}

.slider-c2ba {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.notice_f49f {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.notice_f49f h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.notice_f49f ul {
  margin: 1.5rem 0;
}

.notice_f49f li {
  margin-bottom: 0.75rem;
}

.pattern-narrow-320f {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.tiny_a3c3 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.surface_bright_1d27 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.pink_24dd h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.pink_24dd p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.popup_yellow_ea9e {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.popup_yellow_ea9e a {
  color: rgba(255, 255, 255, 0.8);
}

.grid_fc75 {
  list-style: none;
}

.grid_fc75 li {
  margin-bottom: 0.75rem;
}

.grid_fc75 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.grid_fc75 a:hover {
  color: white;
}

.notification_in_4aae {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.box-65d0 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.secondary-284a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.message_43d0 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.column-upper-de72 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .bronze_5bba {
    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;
  }

  .alert_fe6d {
    font-size: 1.5rem !important;
  }

  .paper_6bb7 {
    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 */
  .frame-cold-5969,
  .yellow_5031,
  .hot-6403,
  .shade_3c67,
  .up_0793,
  .module-f36f,
  .cool_323b,
  .frame-9ff8,
  .fresh_47ee,
  .full_e338 {
    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 */
  .simple_954d {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .notification_0d8b {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .clean_3f1b {
    flex-shrink: 0;
  }

  .nav-dirty-06db {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .button_f718,
  .sidebar-d073 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .sidebar-d073 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .wrapper_complex_fb76 {
    display: none;
  }

  /* Show mobile actions */
  .shadow_112e {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .title_d47e {
    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;
  }

  .title_d47e svg {
    flex-shrink: 0;
  }

  .title_d47e .border-pressed-c0ca {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .title_d47e .complex-c2df {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .table_f4c8 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .steel-23cf {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .title_d47e:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .light-b656 {
    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;
  }

  .light-b656.fn-active-9a97 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .light-b656 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .light-b656 li:last-child {
    border-bottom: none;
  }

  .light-b656 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .highlight-small-bb90 {
    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;
  }

  .highlight-small-bb90 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .highlight-small-bb90 li:last-child {
    border-bottom: none;
  }

  .highlight-small-bb90 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .list-e5a1 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .list-3393 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .icon-8b6e,
  .badge-01f8 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .icon-8b6e {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .badge-01f8 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .highlight-small-bb90.fn-active-9a97 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .modal_4e95 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .item_action_8bf7 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .shade_e657 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .table-green-ccbb {
    margin-top: 0;
  }

  /* Hero section */
  .table-green-ccbb {
    padding: 2rem 0 1.5rem;
  }

  .paper_6bb7 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .fresh_47ee {
    font-size: 1rem;
  }

  /* Hero brand image */
  .nav_bd87 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .pattern_246f {
    max-width: 100%;
    border-radius: 8px;
  }

  .detail_9d19 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .active-d954 {
    padding: 1rem;
  }

  .thumbnail-b338 {
    font-size: 1.5rem;
  }

  .easy-4bc1 {
    font-size: 0.75rem;
  }

  .frame-9ff8 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .modal-7936 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .modal-7936 .simple-ed79 {
    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 */
  .button-a265 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .photo_solid_077a {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .status_fixed_6e1a {
    margin-bottom: 1rem;
  }

  /* Author */
  .accent-top-ff31 {
    flex-direction: column;
  }

  .bright-b66f {
    flex-direction: column;
  }

  /* Quotes */
  .up_0793 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .modal_pro_d13f {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .secondary-slow-8d7c {
    flex-direction: column;
  }

  .secondary-slow-8d7c .simple-ed79 {
    width: 100%;
  }

  /* Version comparison */
  .summary-hard-f8ff {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .message_smooth_aca7 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .surface_bright_1d27 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .secondary-284a {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .tabs_complex_8843,
  .advanced_29ed,
  .blue_d2a6,
  .slow_6178,
  .grid_lite_8d72,
  .tag_d36f {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tabs_complex_8843 table,
  .advanced_29ed table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .first-d02d {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .bronze_5bba {
    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;
  }

  .alert_fe6d {
    font-size: 1.25rem !important;
  }

  .paper_6bb7 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .item_action_8bf7 {
    position: fixed;
  }

  .shade_e657 {
    padding: 0.625rem 0;
  }

  .black-2676 img {
    height: 26px;
  }

  .highlight-small-bb90 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .light-b656 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .title_d47e {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .title_d47e svg {
    width: 18px;
    height: 18px;
  }

  .title_d47e .border-pressed-c0ca {
    font-size: 0.7rem;
  }

  .title_d47e .complex-c2df {
    font-size: 0.65rem;
  }

  .icon-8b6e,
  .badge-01f8 {
    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, .bronze_5bba, .article-b6ce, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .nav_bd87 {
    padding: 1rem;
  }

  .detail_9d19 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .active-d954 {
    padding: 0.875rem;
  }

  .thumbnail-b338 {
    font-size: 1.25rem;
  }

  .modal-7936 .simple-ed79 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .paper_6bb7 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .simple-ed79 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .block_28fe {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .photo_solid_077a {
    padding: 1rem;
  }

  .status_fixed_6e1a span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .frame-cold-5969,
  .carousel-complex-72b9,
  .summary_50e4,
  .title-easy-1414 {
    padding: 1rem;
  }
}

@media print {
  .item_action_8bf7,
  .chip-up-543f,
  .modal_4e95,
  .simple-ed79,
  .tiny_a3c3 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .bronze_5bba {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.cool-e617 {
  margin-bottom: 3rem;
  text-align: center;
}

.alert_fe6d {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.highlight-45de {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.border_yellow_e0a9,
.action-cd63 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.module-motion-da01 {
  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;
}

.module-motion-da01:hover {
  transform: translateY(-5px);
}

.module-motion-da01 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.module-motion-da01 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.small-2efc {
  margin: 3rem 0;
}

.dim_d481 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.fresh-02e7 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.fresh-02e7:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.over_f73c {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.shadow-large-afe1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.header_liquid_8567 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.avatar_center_0337 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.link_0a0c {
  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;
}

.link_0a0c:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.link_0a0c.top-3dc1 {
  border-left: 4px solid var(--primary-color);
}

.accent-e32a {
  flex-shrink: 0;
}

.accent-e32a svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.copper_00dc {
  flex: 1;
}

.copper_00dc h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.shade_b77b {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.dynamic-5727,
.accent-soft-fd1d,
.description-dim-a19b {
  margin-bottom: 1.5rem;
}

.dynamic-5727 h4,
.accent-soft-fd1d h4,
.description-dim-a19b h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dynamic-5727 ul,
.accent-soft-fd1d ul,
.description-dim-a19b ul {
  list-style: none;
  padding: 0;
}

.dynamic-5727 li,
.accent-soft-fd1d li,
.description-dim-a19b li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.dynamic-5727 li:before,
.accent-soft-fd1d li:before,
.description-dim-a19b li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.chip-2587 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.chip-2587 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;
}

.chip-2587 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.layout_8272 { margin: 2rem 0; }
.complex-58ef { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.complex-58ef h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.box_gold_3727 p { margin-bottom: 1rem; line-height: 1.7; }
.box_gold_3727 strong { color: var(--text-primary); }
.box_gold_3727 ul { list-style: none; padding-left: 0; }
.box_gold_3727 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.box_gold_3727 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.dropdown-75b9 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.silver_ac0e { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.silver_ac0e:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.carousel_bee6 { font-size: 3rem; margin-bottom: 1rem; }
.silver_ac0e h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.silver_ac0e p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.secondary-old-dac6 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.secondary-old-dac6 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.frame_d7c5 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.tooltip-left-fa1a { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.outline_0e16 { text-align: center; }
.popup-d6a4 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.old_2dc0 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.glass-3f29 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.search-9df6 { margin: 2rem 0; }
.menu_1a46 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.menu_1a46 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.menu_1a46 p, .menu_1a46 ul { line-height: 1.7; }
.menu_1a46 ul { list-style: none; padding-left: 0; }
.menu_1a46 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.menu_1a46 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.block_cold_7479 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.narrow_0ec2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.photo_hard_f9ce { text-align: center; }
.disabled_hovered_9d27 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.article_1d27 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.description_north_5487 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.video-b4ec { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.chip-64a2 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.chip-64a2:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.chip-64a2 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.chip-64a2 p, .chip-64a2 ul { line-height: 1.7; }
.chip-64a2 ul { list-style: none; padding-left: 0; }
.chip-64a2 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.chip-64a2 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 10f5 */
.phantom-card-v2 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.2;
}
