/* ============================================
   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 */
.yellow-9c97 p,
.main_hard_0782,
.medium_0952,
.main-hot-c12f,
.progress_wood_e9ff,
.next-8eb3,
.link-bronze-1ebe,
.box_0f4c {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.hard_1895 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.hard_1895 > *,
.article_fresh_76bf,
.yellow-9c97,
.logo_b98b {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .hard_1895 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .hard_1895 {
    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 === */
.left-3959 {
  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 */
.left-3959.container-down-9ffb {
  box-shadow: var(--shadow-md);
}

.medium-c0c3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.hero-e90d img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.under_122f {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.thumbnail-445a {
  display: none;
}

/* Hide mobile actions on desktop */
.alert_7137 {
  display: none;
}

.old-e9de a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.old-e9de a:hover,
.old-e9de a.fn-active-42d6 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.module-a90c {
  margin-left: 1rem;
}

.preview-hovered-39fb {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.text_old_5135,
.up_6c62 {
  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;
}

.text_old_5135 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.text_old_5135: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;
}

.up_6c62 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.up_6c62: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;
}

.text_old_5135 svg,
.up_6c62 svg {
  flex-shrink: 0;
}

.large-ccb4 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.logo_7eab {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.logo_7eab::before,
.logo_7eab::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.logo_7eab::before {
  top: -7px;
}

.logo_7eab::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.module-easy-9c52 {
  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 === */
.dynamic-3c1e {
  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);
}

.table-warm-bb7c {
  margin: 0 0 2rem;
  text-align: center;
}

.sort-dim-3da5 {
  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;
}

.sort-dim-3da5:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.tabs_bffe {
  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);
}

.tabs_bffe strong {
  color: var(--primary-color);
  font-weight: 700;
}

.thumbnail-8217 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.action_7d89 {
  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;
}

.action_7d89:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.soft_58a8 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.image_middle_4e44 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.surface_in_f4a0 {
  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);
}

.surface_in_f4a0 .new-2770 {
  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;
}

.surface_in_f4a0 .new-2770 svg {
  flex-shrink: 0;
}

.surface_in_f4a0 .disabled-3ab9 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.surface_in_f4a0 .disabled-3ab9: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);
}

.surface_in_f4a0 .tag_dark_60a7 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.surface_in_f4a0 .tag_dark_60a7: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) {
  .dynamic-3c1e {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .sort-dim-3da5 {
    max-width: 100%;
  }

  .thumbnail-8217 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .action_7d89 {
    padding: 1rem;
  }

  .soft_58a8 {
    font-size: 1.5rem;
  }

  .image_middle_4e44 {
    font-size: 0.75rem;
  }

  .tabs_bffe {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .surface_in_f4a0 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .surface_in_f4a0 .new-2770 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .thumbnail-8217 {
    grid-template-columns: 1fr;
  }
}

.light_b1b1 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.video-3db8 {
  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 === */
.small-abdc {
  margin-bottom: 2.5rem;
}

.popup_fast_bc85 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.light_b1b1 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.box_hot_c7a5 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.preview_stale_f2ed {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.link-06c7 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.logo-d04d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.yellow_b728 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.thick_5791 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.east_ec66 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.east_ec66 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.row_6ef7 {
  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);
}

.gas-fdb7 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.dropdown_823d {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.widget_6606 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.bottom_2d6b {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.message-b2a5 {
  display: grid;
  gap: 1rem;
}

.outer-dad4 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.down-118e {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.breadcrumb_5c30 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.photo-action-0f01 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.wide-4666 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.photo_8f36 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.photo_8f36 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.main_hard_0782 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.layout_bottom_502f {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.gallery_hard_36de {
  display: grid;
  gap: 2rem;
}

.caption_dim_5d10 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.preview_stale_f2ed {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.box_hot_c7a5 {
  flex: 1;
}

.logo-d04d {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.logo-d04d a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.pink-c758 {
  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;
}

.yellow_b728 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.surface_simple_fb46 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.surface_simple_fb46 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.down_3a4d {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.down_3a4d a {
  font-size: 0.875rem;
  font-weight: 500;
}

.old_ee6e {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.old_ee6e strong {
  display: block;
  margin-bottom: 0.75rem;
}

.old_ee6e ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.old_ee6e li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.component-0028 {
  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 === */
.shadow-b770 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.table-full-b8b3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.avatar-517e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.backdrop_right_c542 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.backdrop_right_c542 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.backdrop_right_c542 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.backdrop_right_c542 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;
}

.backdrop_right_c542 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.backdrop_right_c542 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.yellow-9c97 {
  padding: 3rem 0 5rem;
}

.logo_b98b {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.logo_b98b.message-fluid-d3b6 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.medium_0952 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.over-2a0f {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.grid_upper_94da {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.grid_upper_94da h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.surface_wood_3443 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.element_cced {
  text-align: center;
}

.carousel_f8ac {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.dirty-5f23 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.copper-45f2 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.next-8eb3 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.main-hot-c12f {
  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;
}

.main-hot-c12f * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.main-hot-c12f:hover {
  box-shadow: var(--shadow-lg);
}

.main-hot-c12f.form_fresh_fd55 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.main-hot-c12f h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.main-hot-c12f ul {
  margin: 1rem 0;
}

.main-hot-c12f li {
  margin-bottom: 0.75rem;
}

.info-3dab {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.fixed-6725 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.fixed-6725 a {
  font-weight: 600;
}

/* === Data Tables === */
.notification-2e5b {
  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;
}

.notification-2e5b table {
  width: 100%;
  min-width: 600px;
}

.notification-2e5b thead {
  background-color: var(--primary-color);
  color: white;
}

.notification-2e5b th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.notification-2e5b td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.notification-2e5b tbody tr:hover {
  background-color: var(--bg-secondary);
}

.notification-2e5b tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.smooth-8d57 {
  list-style: none;
  margin: 1.5rem 0;
}

.smooth-8d57 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.smooth-8d57 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.title_slow_9780::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-42d6::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 === */
.article_focused_3fbc {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.icon-acb8 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.icon-acb8 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.icon-acb8 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.icon-acb8 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.article_focused_3fbc blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.link-bronze-1ebe {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.link-bronze-1ebe::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.card_wide_a321 {
  position: relative;
  margin-bottom: 3rem;
}

.list_59d0 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.list_59d0 .text-iron-2519 {
  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;
}

.selected-1ac9 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.selected-1ac9 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.selected-1ac9 ul {
  margin: 1rem 0;
}

.selected-1ac9 li {
  margin-bottom: 0.75rem;
}

.advanced_0a15 {
  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 === */
.active-small-0434 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.active-small-0434 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.sidebar-52a3 {
  list-style: none;
  margin: 1.5rem 0;
}

.sidebar-52a3 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.sidebar-52a3 a {
  font-weight: 600;
}

.feature-fluid-2351 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.box_0f4c {
  margin: 2.5rem 0;
}

.notice-eed6 {
  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;
}

.notice-eed6:hover {
  box-shadow: var(--shadow-lg);
}

.notice-eed6.inner_998e {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.button_2968 {
  flex-shrink: 0;
}

.button_2968 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);
}

.table-iron-6c86 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.photo-9c00,
.smooth_a067,
.button-old-1790 {
  width: 100%;
  margin: 1.5rem 0;
}

.header_e8ca {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.header_e8ca strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.border-f11b {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.border-f11b strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.title_07b2 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.title_07b2 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.hovered-5f39 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.plasma-7337 {
  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;
}

.plasma-7337:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.plasma-7337.video_hard_852a {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.plasma-7337 .video_focused_f53f {
  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;
}

.plasma-7337 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.modal-13df {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.shadow-selected-d2dd {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.shadow-selected-d2dd label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.component-clean-86ec {
  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 === */
.new-2770 {
  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;
}

.disabled-3ab9 {
  background-color: var(--primary-color);
  color: white;
}

.disabled-3ab9:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.tag_dark_60a7 {
  background-color: var(--text-secondary);
  color: white;
}

.tag_dark_60a7:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.preview_liquid_5e8d {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.preview_liquid_5e8d:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.breadcrumb_bbba {
  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;
}

.breadcrumb_bbba:hover {
  background-color: var(--primary-dark);
}

.bright-8ec7 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.progress_purple_2ecf {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.content-7243 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.popup_05f8 {
  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 === */
.caption_silver_38d8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.complex-d62a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.complex-d62a h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.middle_677c {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.center_557e {
  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;
}

.texture_yellow_6351 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.gold_a971 {
  list-style: none;
  counter-reset: rank-counter;
}

.gold_a971 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.gold_a971 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;
}

.progress-smooth-4919 {
  list-style: none;
}

.progress-smooth-4919 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.rough_d68a {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.focus_9c25 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.focus_9c25 .center-f1d9 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.focus_9c25 .section_small_35dc {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.accordion_caed {
  margin-top: 3rem;
}

.image_static_6309 {
  width: 100%;
}

.solid_c1aa {
  background-color: #fef3c7;
}

.easy_c0a8 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.image_solid_c5bb {
  margin: 3rem 0;
}

.header_d574 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.slider-b653 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.slider-b653:hover {
  box-shadow: var(--shadow-lg);
}

.slider-b653.backdrop_09df {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.avatar-0578 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.west_f9ea strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.west_f9ea span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.frame_dirty_1b3e {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.slider-b653 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.hover_up_b1da {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.section_static_95cf {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.shade_prev_d475 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.link-rough-2f8b {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.tooltip_e4ea {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.container-lower-83ca {
  margin-top: 1rem;
}

/* === FAQ Section === */
.top_79c7 {
  max-width: 900px;
  margin: 0 auto;
}

.purple_dc45 {
  margin: 2rem 0;
}

.mask-yellow-a121 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.mask-yellow-a121 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.mask-yellow-a121 summary::-webkit-details-marker {
  display: none;
}

.mask-yellow-a121 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.breadcrumb_copper_2412 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.mask-yellow-a121[open] .breadcrumb_copper_2412 {
  transform: rotate(45deg);
}

.gas_976d {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.gas_976d p:last-child {
  margin-bottom: 0;
}

.white_150e {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.caption-bright-2eb9 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.wrapper_577f {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.wrapper_577f p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.wrapper_577f .new-2770 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.footer_2b05 {
  max-width: 900px;
  margin: 0 auto;
}

.thumbnail_44f3 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.east-bf04 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.east-bf04.fn-success-42d6 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.form-focused-0987 {
  font-size: 3rem;
  line-height: 1;
}

.hero_c6a1 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.shadow-fluid-796f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.accent_easy_cff1,
.article_bottom_d3a6 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.accent_easy_cff1 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.article_bottom_d3a6 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.status_old_12f7,
.fresh_0fb7 {
  margin: 1.5rem 0;
}

.status_old_12f7 li,
.fresh_0fb7 li {
  margin-bottom: 1rem;
}

.slider-3367 {
  margin: 3rem 0;
}

.copper_1245 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.copper_1245 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.copper_1245 ol {
  margin: 1rem 0;
}

.copper_1245 li {
  margin-bottom: 0.75rem;
}

.column_96b7 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.pagination-cold-d52e {
  margin: 2rem 0;
}

.gas_5867 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.mask-motion-28c0 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.status_70da {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.thick-e934 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.box-yellow-efaa {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.hovered-ba8f {
  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;
}

.hovered-ba8f img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.link-06c7 {
  flex: 1;
}

.link-06c7 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.orange_3f36 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.bright_b0b0 p {
  margin-bottom: 1rem;
}

.column-38e8 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.hover-9f6e {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.grid-liquid-867c {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.grid-liquid-867c a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.paragraph-f957 h3 {
  margin-bottom: 1.5rem;
}

.frame-2a11 {
  display: grid;
  gap: 2rem;
}

.icon-soft-e9e8 {
  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;
}

.icon-soft-e9e8 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.icon-soft-e9e8 h4 {
  margin: 0 0 0.25rem;
}

.icon-soft-e9e8 p {
  margin: 0;
  font-size: 0.9375rem;
}

.column_easy_32cc {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.over-483f {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.over-483f h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.over-483f ul {
  margin: 1.5rem 0;
}

.over-483f li {
  margin-bottom: 0.75rem;
}

.caption-dim-b8de {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.gold-1d51 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.module-active-bd9f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.heading-9279 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.heading-9279 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.gradient-selected-40c8 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.gradient-selected-40c8 a {
  color: rgba(255, 255, 255, 0.8);
}

.dynamic-6f71 {
  list-style: none;
}

.dynamic-6f71 li {
  margin-bottom: 0.75rem;
}

.dynamic-6f71 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.dynamic-6f71 a:hover {
  color: white;
}

.aside-39b6 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.preview-liquid-e56b {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.notification_0473 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.link_west_6e2b {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.gradient-7615 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .hard_1895 {
    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;
  }

  .filter-out-c6ed {
    font-size: 1.5rem !important;
  }

  .popup_fast_bc85 {
    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 */
  .main-hot-c12f,
  .progress_wood_e9ff,
  .selected-1ac9,
  .table-iron-6c86,
  .avatar-0578,
  .slider-b653,
  .gas_976d,
  .tabs_bffe,
  .main_hard_0782,
  .medium_0952 {
    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 */
  .light_b1b1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .box_hot_c7a5 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .preview_stale_f2ed {
    flex-shrink: 0;
  }

  .link-06c7 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .logo-d04d,
  .yellow_b728 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .yellow_b728 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .under_122f {
    display: none;
  }

  /* Show mobile actions */
  .alert_7137 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .caption_out_43c8 {
    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;
  }

  .caption_out_43c8 svg {
    flex-shrink: 0;
  }

  .caption_out_43c8 .component-hovered-3609 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .caption_out_43c8 .thick-a52e {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .active_4600 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .table-north-e7d2 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .caption_out_43c8:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .thumbnail-445a {
    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;
  }

  .thumbnail-445a.fn-active-42d6 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .thumbnail-445a li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .thumbnail-445a li:last-child {
    border-bottom: none;
  }

  .thumbnail-445a a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .old-e9de {
    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;
  }

  .old-e9de li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .old-e9de li:last-child {
    border-bottom: none;
  }

  .old-e9de a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .module-a90c {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .preview-hovered-39fb {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .text_old_5135,
  .up_6c62 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .text_old_5135 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .up_6c62 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .old-e9de.fn-active-42d6 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .large-ccb4 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .left-3959 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .medium-c0c3 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .module-easy-9c52 {
    margin-top: 0;
  }

  /* Hero section */
  .module-easy-9c52 {
    padding: 2rem 0 1.5rem;
  }

  .popup_fast_bc85 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .main_hard_0782 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .dynamic-3c1e {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .sort-dim-3da5 {
    max-width: 100%;
    border-radius: 8px;
  }

  .thumbnail-8217 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .action_7d89 {
    padding: 1rem;
  }

  .soft_58a8 {
    font-size: 1.5rem;
  }

  .image_middle_4e44 {
    font-size: 0.75rem;
  }

  .tabs_bffe {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .surface_in_f4a0 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .surface_in_f4a0 .new-2770 {
    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 */
  .avatar-517e {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .notice-eed6 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .button_2968 {
    margin-bottom: 1rem;
  }

  /* Author */
  .caption_dim_5d10 {
    flex-direction: column;
  }

  .hovered-ba8f {
    flex-direction: column;
  }

  /* Quotes */
  .avatar-0578 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .shadow-fluid-796f {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .thick-e934 {
    flex-direction: column;
  }

  .thick-e934 .new-2770 {
    width: 100%;
  }

  /* Version comparison */
  .hovered-5f39 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .caption_silver_38d8 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .module-active-bd9f {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .notification_0473 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .notification-2e5b,
  .smooth_a067,
  .tabs-first-43b5,
  .image_static_6309,
  .photo-9c00,
  .button-old-1790 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .notification-2e5b table,
  .smooth_a067 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .component-clean-86ec {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hard_1895 {
    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;
  }

  .filter-out-c6ed {
    font-size: 1.25rem !important;
  }

  .popup_fast_bc85 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .left-3959 {
    position: fixed;
  }

  .medium-c0c3 {
    padding: 0.625rem 0;
  }

  .hero-e90d img {
    height: 26px;
  }

  .old-e9de {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .thumbnail-445a {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .caption_out_43c8 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .caption_out_43c8 svg {
    width: 18px;
    height: 18px;
  }

  .caption_out_43c8 .component-hovered-3609 {
    font-size: 0.7rem;
  }

  .caption_out_43c8 .thick-a52e {
    font-size: 0.65rem;
  }

  .text_old_5135,
  .up_6c62 {
    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, .hard_1895, .article_fresh_76bf, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .dynamic-3c1e {
    padding: 1rem;
  }

  .thumbnail-8217 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .action_7d89 {
    padding: 0.875rem;
  }

  .soft_58a8 {
    font-size: 1.25rem;
  }

  .surface_in_f4a0 .new-2770 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .popup_fast_bc85 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .new-2770 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .bright-8ec7 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .notice-eed6 {
    padding: 1rem;
  }

  .button_2968 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .main-hot-c12f,
  .card_liquid_2b35,
  .wood-91ae,
  .hero-up-0fa5 {
    padding: 1rem;
  }
}

@media print {
  .left-3959,
  .shadow-b770,
  .large-ccb4,
  .new-2770,
  .gold-1d51 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .hard_1895 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.card_next_2d5b {
  margin-bottom: 3rem;
  text-align: center;
}

.filter-out-c6ed {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.out_70eb {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.photo-43ec,
.gallery-05f5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.smooth-e3b5 {
  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;
}

.smooth-e3b5:hover {
  transform: translateY(-5px);
}

.smooth-e3b5 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.smooth-e3b5 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.heading_8001 {
  margin: 3rem 0;
}

.article-1d7c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.north-18c0 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.north-18c0:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.video-75f6 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.border-orange-897c {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.purple_4528 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.caption-9957 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.preview_b12a {
  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;
}

.preview_b12a:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.preview_b12a.button-hot-b8af {
  border-left: 4px solid var(--primary-color);
}

.container-e2c6 {
  flex-shrink: 0;
}

.container-e2c6 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.dirty-bd1e {
  flex: 1;
}

.dirty-bd1e h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.icon_action_ae56 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.gallery_4b26,
.header-prev-d25f,
.panel_8c7d {
  margin-bottom: 1.5rem;
}

.gallery_4b26 h4,
.header-prev-d25f h4,
.panel_8c7d h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gallery_4b26 ul,
.header-prev-d25f ul,
.panel_8c7d ul {
  list-style: none;
  padding: 0;
}

.gallery_4b26 li,
.header-prev-d25f li,
.panel_8c7d li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.gallery_4b26 li:before,
.header-prev-d25f li:before,
.panel_8c7d li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.menu-de0a {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.menu-de0a 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;
}

.menu-de0a a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.breadcrumb-44d5 { margin: 2rem 0; }
.tertiary_stone_4da1 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.tertiary_stone_4da1 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.south_99e9 p { margin-bottom: 1rem; line-height: 1.7; }
.south_99e9 strong { color: var(--text-primary); }
.south_99e9 ul { list-style: none; padding-left: 0; }
.south_99e9 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.south_99e9 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.prev_dd9e { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.easy_de83 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.easy_de83:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.next-b9eb { font-size: 3rem; margin-bottom: 1rem; }
.easy_de83 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.easy_de83 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.texture_pink_cc15 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.texture_pink_cc15 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.button-7349 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.widget_active_d5cf { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.static_8fa7 { text-align: center; }
.hard-9d22 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.table_red_aaf7 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.wrapper_060d { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.card_fast_6380 { margin: 2rem 0; }
.top-1c27 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.top-1c27 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.top-1c27 p, .top-1c27 ul { line-height: 1.7; }
.top-1c27 ul { list-style: none; padding-left: 0; }
.top-1c27 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.top-1c27 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.text_cdeb { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.picture-09e5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.element_mini_9850 { text-align: center; }
.feature-e5f4 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.shade_d3e5 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.video-604a { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.icon-c221 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.banner_upper_c9e0 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.banner_upper_c9e0:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.banner_upper_c9e0 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.banner_upper_c9e0 p, .banner_upper_c9e0 ul { line-height: 1.7; }
.banner_upper_c9e0 ul { list-style: none; padding-left: 0; }
.banner_upper_c9e0 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.banner_upper_c9e0 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: e6df */
.widget-item-t3 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.3;
}
