/* ============================================
   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 */
.feature_glass_c6cb p,
.current_ab64,
.aside-down-707d,
.card_0c29,
.copper_a252,
.new_a6f0,
.chip-a865,
.menu-tiny-a303 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.image_green_b8ad {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.image_green_b8ad > *,
.full-b14b,
.feature_glass_c6cb,
.thumbnail-50a1 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .image_green_b8ad {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .image_green_b8ad {
    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 === */
.in-4942 {
  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 */
.in-4942.filter-57e7 {
  box-shadow: var(--shadow-md);
}

.badge-43b4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.section-ce35 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.popup_c7e7 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.row_ddb0 {
  display: none;
}

/* Hide mobile actions on desktop */
.gold_9875 {
  display: none;
}

.primary_full_34de a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.primary_full_34de a:hover,
.primary_full_34de a.fn-active-9e5a {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.easy_f3f2 {
  margin-left: 1rem;
}

.tertiary-first-d69a {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.paragraph_92db,
.content_7de8 {
  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;
}

.paragraph_92db {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.paragraph_92db: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;
}

.content_7de8 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.content_7de8: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;
}

.paragraph_92db svg,
.content_7de8 svg {
  flex-shrink: 0;
}

.icon_efd6 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.info-short-7573 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.info-short-7573::before,
.info-short-7573::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.info-short-7573::before {
  top: -7px;
}

.info-short-7573::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.text-out-38e8 {
  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 === */
.notification-7c6e {
  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);
}

.preview-78b0 {
  margin: 0 0 2rem;
  text-align: center;
}

.small_269b {
  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;
}

.small_269b:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.motion_04e2 {
  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);
}

.motion_04e2 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.shade_90ea {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.widget-action-6ad9 {
  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;
}

.widget-action-6ad9:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.sidebar_b75e {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.under-2b5d {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.cold-e266 {
  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);
}

.cold-e266 .small_516f {
  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;
}

.cold-e266 .small_516f svg {
  flex-shrink: 0;
}

.cold-e266 .photo-1ce8 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cold-e266 .photo-1ce8: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);
}

.cold-e266 .video_a1ba {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.cold-e266 .video_a1ba: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) {
  .notification-7c6e {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .small_269b {
    max-width: 100%;
  }

  .shade_90ea {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .widget-action-6ad9 {
    padding: 1rem;
  }

  .sidebar_b75e {
    font-size: 1.5rem;
  }

  .under-2b5d {
    font-size: 0.75rem;
  }

  .motion_04e2 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .cold-e266 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .cold-e266 .small_516f {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .shade_90ea {
    grid-template-columns: 1fr;
  }
}

.dropdown_fresh_e0a8 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.overlay-dirty-8b05 {
  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 === */
.box-stale-3552 {
  margin-bottom: 2.5rem;
}

.logo-simple-9bf6 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.dropdown_fresh_e0a8 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.rough_fd5b {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.disabled-left-5414 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.red_db0c {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.texture-b79e {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.motion_4302 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.module-huge-c1fa {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.heading_complex_f803 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.heading_complex_f803 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.texture-1b0d {
  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);
}

.chip_c901 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.table_e3b0 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.paragraph-new-9fe3 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.column_tiny_b497 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.large-c722 {
  display: grid;
  gap: 1rem;
}

.badge-middle-7032 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.image-next-1e87 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.hot-2926 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.grid-pink-2603 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.video_7a6f {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.button_large_b553 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.button_large_b553 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.current_ab64 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.next-c665 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.focused_b351 {
  display: grid;
  gap: 2rem;
}

.banner-ae89 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.disabled-left-5414 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.rough_fd5b {
  flex: 1;
}

.texture-b79e {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.texture-b79e a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.item-full-8d0d {
  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;
}

.motion_4302 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.module-gas-8cd4 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.module-gas-8cd4 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.wood_550d {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.wood_550d a {
  font-size: 0.875rem;
  font-weight: 500;
}

.warm_d043 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.warm_d043 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.warm_d043 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.warm_d043 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.panel_dirty_0f88 {
  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 === */
.hot-4b1a {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.full-440e {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.layout_d007 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.banner_up_bdd0 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.banner_up_bdd0 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.banner_up_bdd0 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.banner_up_bdd0 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;
}

.banner_up_bdd0 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.banner_up_bdd0 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.feature_glass_c6cb {
  padding: 3rem 0 5rem;
}

.thumbnail-50a1 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.thumbnail-50a1.video_selected_710d {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.aside-down-707d {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.panel-2d54 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.aside-760d {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.aside-760d h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.feature-glass-9eab {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.detail-c4de {
  text-align: center;
}

.plasma-fc6a {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.highlight-095b {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.preview_7e9d {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.new_a6f0 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.card_0c29 {
  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;
}

.card_0c29 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card_0c29:hover {
  box-shadow: var(--shadow-lg);
}

.card_0c29.liquid_cd39 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.card_0c29 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.card_0c29 ul {
  margin: 1rem 0;
}

.card_0c29 li {
  margin-bottom: 0.75rem;
}

.search_paper_d556 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.focused_c673 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.focused_c673 a {
  font-weight: 600;
}

/* === Data Tables === */
.video_bright_e744 {
  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;
}

.video_bright_e744 table {
  width: 100%;
  min-width: 600px;
}

.video_bright_e744 thead {
  background-color: var(--primary-color);
  color: white;
}

.video_bright_e744 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.video_bright_e744 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.video_bright_e744 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.video_bright_e744 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.iron-802d {
  list-style: none;
  margin: 1.5rem 0;
}

.iron-802d li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.iron-802d li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.hidden_4fb3::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-9e5a::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 === */
.medium_c19f {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.hovered_dbab {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hovered_dbab img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.hovered_dbab strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.hovered_dbab span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.medium_c19f blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.chip-a865 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.chip-a865::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.action-451c {
  position: relative;
  margin-bottom: 3rem;
}

.accent_green_66af {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.accent_green_66af .menu_dirty_67e8 {
  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;
}

.shade_west_b132 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.shade_west_b132 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.shade_west_b132 ul {
  margin: 1rem 0;
}

.shade_west_b132 li {
  margin-bottom: 0.75rem;
}

.message_current_a62e {
  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 === */
.banner_bottom_18ae {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.banner_bottom_18ae h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.article_96ab {
  list-style: none;
  margin: 1.5rem 0;
}

.article_96ab li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.article_96ab a {
  font-weight: 600;
}

.short-c518 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.menu-tiny-a303 {
  margin: 2.5rem 0;
}

.text_fluid_69fc {
  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;
}

.text_fluid_69fc:hover {
  box-shadow: var(--shadow-lg);
}

.text_fluid_69fc.badge_center_a4d4 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.red-fca8 {
  flex-shrink: 0;
}

.red-fca8 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);
}

.focus-stone-0ee7 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.gradient_b18d,
.mini-e214,
.brown_f382 {
  width: 100%;
  margin: 1.5rem 0;
}

.element-1996 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.element-1996 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.selected_4e8c {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.selected_4e8c strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.pro_df78 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.pro_df78 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.clean_5fd9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.text_e0f1 {
  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;
}

.text_e0f1:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.text_e0f1.under_8647 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.text_e0f1 .hero_65cd {
  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;
}

.text_e0f1 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.video_7c31 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.summary-787d {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.summary-787d label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.inner-0489 {
  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 === */
.small_516f {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.photo-1ce8 {
  background-color: var(--primary-color);
  color: white;
}

.photo-1ce8:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.video_a1ba {
  background-color: var(--text-secondary);
  color: white;
}

.video_a1ba:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.action_b73a {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.action_b73a:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.input_brown_e92c {
  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;
}

.input_brown_e92c:hover {
  background-color: var(--primary-dark);
}

.shadow-in-e4e2 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.alert-dcde {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.nav-e8f0 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.container_simple_d9e9 {
  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 === */
.input-slow-da8e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.slider-liquid-e3a0 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.slider-liquid-e3a0 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.background_6aff {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.container_b4fd {
  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;
}

.silver-f08f {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.fluid_20d5 {
  list-style: none;
  counter-reset: rank-counter;
}

.fluid_20d5 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.fluid_20d5 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;
}

.element-complex-e7cc {
  list-style: none;
}

.element-complex-e7cc li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.block_1ca9 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.tiny-da01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.tiny-da01 .outer_0921 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.tiny-da01 .background_58f5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.detail-946f {
  margin-top: 3rem;
}

.label-pro-fa13 {
  width: 100%;
}

.active-left-b8f6 {
  background-color: #fef3c7;
}

.left_9ebe {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.module-523c {
  margin: 3rem 0;
}

.status-blue-14ba {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.short_f7e5 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.short_f7e5:hover {
  box-shadow: var(--shadow-lg);
}

.short_f7e5.thumbnail_down_cc6b {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.out_2eed {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.surface-2d4c strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.surface-2d4c span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.active-483a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.short_f7e5 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.black_876e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.mask_dim_85f8 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.container-37d5 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.top-e02a {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.large_89b7 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.icon-pro-cc89 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.complex_9d5e {
  max-width: 900px;
  margin: 0 auto;
}

.message_989d {
  margin: 2rem 0;
}

.last_ad2c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.last_ad2c summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.last_ad2c summary::-webkit-details-marker {
  display: none;
}

.last_ad2c summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.prev-7b4c {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.last_ad2c[open] .prev-7b4c {
  transform: rotate(45deg);
}

.tabs_up_be24 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.tabs_up_be24 p:last-child {
  margin-bottom: 0;
}

.label_mini_509c {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.huge_e08e {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.table_ea13 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.table_ea13 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.table_ea13 .small_516f {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.avatar-e3fa {
  max-width: 900px;
  margin: 0 auto;
}

.item-404f {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.grid_fd2e {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.grid_fd2e.fn-success-9e5a {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.light-07cd {
  font-size: 3rem;
  line-height: 1;
}

.list-5b6b h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.chip_665a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.alert_easy_79e3,
.picture-29f9 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.alert_easy_79e3 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.picture-29f9 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.hover_tall_bd77,
.red_7a05 {
  margin: 1.5rem 0;
}

.hover_tall_bd77 li,
.red_7a05 li {
  margin-bottom: 1rem;
}

.heading-over-4a98 {
  margin: 3rem 0;
}

.shade_3a2b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.shade_3a2b h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.shade_3a2b ol {
  margin: 1rem 0;
}

.shade_3a2b li {
  margin-bottom: 0.75rem;
}

.in_42bc {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.primary-motion-e524 {
  margin: 2rem 0;
}

.thumbnail_a07c {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.tooltip-advanced-4191 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.info_2811 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.aside-bronze-373a {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.nav-6708 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.tooltip_huge_9354 {
  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;
}

.tooltip_huge_9354 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.red_db0c {
  flex: 1;
}

.red_db0c h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.block-de54 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.wide_a080 p {
  margin-bottom: 1rem;
}

.status-dim-c6b6 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.focus-4b45 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.pattern_bottom_57ca {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.pattern_bottom_57ca a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.info-current-43a3 h3 {
  margin-bottom: 1.5rem;
}

.down-f701 {
  display: grid;
  gap: 2rem;
}

.up_e8be {
  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;
}

.up_e8be img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.up_e8be h4 {
  margin: 0 0 0.25rem;
}

.up_e8be p {
  margin: 0;
  font-size: 0.9375rem;
}

.bronze-996c {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.avatar-3e60 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.avatar-3e60 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.avatar-3e60 ul {
  margin: 1.5rem 0;
}

.avatar-3e60 li {
  margin-bottom: 0.75rem;
}

.pattern_af92 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.dynamic-4345 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.brown-af9d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.modal_warm_0c47 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.modal_warm_0c47 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.background-dirty-8743 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.background-dirty-8743 a {
  color: rgba(255, 255, 255, 0.8);
}

.huge-3c88 {
  list-style: none;
}

.huge-3c88 li {
  margin-bottom: 0.75rem;
}

.huge-3c88 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.huge-3c88 a:hover {
  color: white;
}

.thick-852b {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.column_focused_9614 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.label_c47f {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.progress-up-3ddd {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.slider_green_1fba {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .image_green_b8ad {
    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;
  }

  .secondary-selected-fbc8 {
    font-size: 1.5rem !important;
  }

  .logo-simple-9bf6 {
    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 */
  .card_0c29,
  .copper_a252,
  .shade_west_b132,
  .focus-stone-0ee7,
  .out_2eed,
  .short_f7e5,
  .tabs_up_be24,
  .motion_04e2,
  .current_ab64,
  .aside-down-707d {
    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 */
  .dropdown_fresh_e0a8 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .rough_fd5b {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .disabled-left-5414 {
    flex-shrink: 0;
  }

  .red_db0c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .texture-b79e,
  .motion_4302 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .motion_4302 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .popup_c7e7 {
    display: none;
  }

  /* Show mobile actions */
  .gold_9875 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .copper_96f6 {
    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;
  }

  .copper_96f6 svg {
    flex-shrink: 0;
  }

  .copper_96f6 .image_orange_da84 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .copper_96f6 .lite-33d0 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .tertiary_iron_7769 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .hero-cd5b {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .copper_96f6:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .row_ddb0 {
    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;
  }

  .row_ddb0.fn-active-9e5a {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .row_ddb0 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .row_ddb0 li:last-child {
    border-bottom: none;
  }

  .row_ddb0 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .primary_full_34de {
    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;
  }

  .primary_full_34de li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .primary_full_34de li:last-child {
    border-bottom: none;
  }

  .primary_full_34de a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .easy_f3f2 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .tertiary-first-d69a {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .paragraph_92db,
  .content_7de8 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .paragraph_92db {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .content_7de8 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .primary_full_34de.fn-active-9e5a {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .icon_efd6 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .in-4942 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .badge-43b4 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .text-out-38e8 {
    margin-top: 0;
  }

  /* Hero section */
  .text-out-38e8 {
    padding: 2rem 0 1.5rem;
  }

  .logo-simple-9bf6 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .current_ab64 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .notification-7c6e {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .small_269b {
    max-width: 100%;
    border-radius: 8px;
  }

  .shade_90ea {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .widget-action-6ad9 {
    padding: 1rem;
  }

  .sidebar_b75e {
    font-size: 1.5rem;
  }

  .under-2b5d {
    font-size: 0.75rem;
  }

  .motion_04e2 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .cold-e266 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .cold-e266 .small_516f {
    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 */
  .layout_d007 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .text_fluid_69fc {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .red-fca8 {
    margin-bottom: 1rem;
  }

  /* Author */
  .banner-ae89 {
    flex-direction: column;
  }

  .tooltip_huge_9354 {
    flex-direction: column;
  }

  /* Quotes */
  .out_2eed {
    flex-direction: column;
  }

  /* Pros/Cons */
  .chip_665a {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .aside-bronze-373a {
    flex-direction: column;
  }

  .aside-bronze-373a .small_516f {
    width: 100%;
  }

  /* Version comparison */
  .clean_5fd9 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .input-slow-da8e {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .brown-af9d {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .label_c47f {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .video_bright_e744,
  .mini-e214,
  .current_9ae1,
  .label-pro-fa13,
  .gradient_b18d,
  .brown_f382 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .video_bright_e744 table,
  .mini-e214 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .inner-0489 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .image_green_b8ad {
    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;
  }

  .secondary-selected-fbc8 {
    font-size: 1.25rem !important;
  }

  .logo-simple-9bf6 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .in-4942 {
    position: fixed;
  }

  .badge-43b4 {
    padding: 0.625rem 0;
  }

  .section-ce35 img {
    height: 26px;
  }

  .primary_full_34de {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .row_ddb0 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .copper_96f6 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .copper_96f6 svg {
    width: 18px;
    height: 18px;
  }

  .copper_96f6 .image_orange_da84 {
    font-size: 0.7rem;
  }

  .copper_96f6 .lite-33d0 {
    font-size: 0.65rem;
  }

  .paragraph_92db,
  .content_7de8 {
    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, .image_green_b8ad, .full-b14b, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .notification-7c6e {
    padding: 1rem;
  }

  .shade_90ea {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .widget-action-6ad9 {
    padding: 0.875rem;
  }

  .sidebar_b75e {
    font-size: 1.25rem;
  }

  .cold-e266 .small_516f {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .logo-simple-9bf6 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .small_516f {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .shadow-in-e4e2 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .text_fluid_69fc {
    padding: 1rem;
  }

  .red-fca8 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .card_0c29,
  .new_fc2f,
  .header-0a8e,
  .list_fixed_7676 {
    padding: 1rem;
  }
}

@media print {
  .in-4942,
  .hot-4b1a,
  .icon_efd6,
  .small_516f,
  .dynamic-4345 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .image_green_b8ad {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.banner-fa7d {
  margin-bottom: 3rem;
  text-align: center;
}

.secondary-selected-fbc8 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.label_33b5 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.soft-09c5,
.tooltip_copper_b902 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.yellow-35a2 {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.yellow-35a2:hover {
  transform: translateY(-5px);
}

.yellow-35a2 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.yellow-35a2 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.highlight_inner_d7a2 {
  margin: 3rem 0;
}

.focused-e324 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.bottom_7043 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.bottom_7043:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.shade-action-8a62 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.solid_decb {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.article-pro-91b0 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.green-a375 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.hover-6d3e {
  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;
}

.hover-6d3e:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.hover-6d3e.soft-d447 {
  border-left: 4px solid var(--primary-color);
}

.top_3f87 {
  flex-shrink: 0;
}

.top_3f87 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.left-1119 {
  flex: 1;
}

.left-1119 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.table_dynamic_a27d {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.yellow_d532,
.easy_f33e,
.progress-df06 {
  margin-bottom: 1.5rem;
}

.yellow_d532 h4,
.easy_f33e h4,
.progress-df06 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.yellow_d532 ul,
.easy_f33e ul,
.progress-df06 ul {
  list-style: none;
  padding: 0;
}

.yellow_d532 li,
.easy_f33e li,
.progress-df06 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.yellow_d532 li:before,
.easy_f33e li:before,
.progress-df06 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.card-e788 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.card-e788 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;
}

.card-e788 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.purple_03bd { margin: 2rem 0; }
.carousel_west_924d { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.carousel_west_924d h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.label-new-4657 p { margin-bottom: 1rem; line-height: 1.7; }
.label-new-4657 strong { color: var(--text-primary); }
.label-new-4657 ul { list-style: none; padding-left: 0; }
.label-new-4657 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.label-new-4657 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.tiny-340b { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.active-5612 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.active-5612:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.prev_4048 { font-size: 3rem; margin-bottom: 1rem; }
.active-5612 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.active-5612 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.feature_stone_a3cb { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.feature_stone_a3cb span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.outline_2855 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.title_4bd8 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.search-narrow-4d81 { text-align: center; }
.tooltip-d043 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.info-cold-7766 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.badge_hard_286f { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.cold-de4e { margin: 2rem 0; }
.tabs-dynamic-2c48 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.tabs-dynamic-2c48 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.tabs-dynamic-2c48 p, .tabs-dynamic-2c48 ul { line-height: 1.7; }
.tabs-dynamic-2c48 ul { list-style: none; padding-left: 0; }
.tabs-dynamic-2c48 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.tabs-dynamic-2c48 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.slider-be0c { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.overlay_c2c1 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.section-1b5f { text-align: center; }
.next-536b { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.gallery-a48b { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.element_1cc5 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.block-top-1262 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.over-955b { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.over-955b:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.over-955b h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.over-955b p, .over-955b ul { line-height: 1.7; }
.over-955b ul { list-style: none; padding-left: 0; }
.over-955b ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.over-955b ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: ec0c */
.phantom-card-n8 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.1;
}
