/* ============================================
   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 */
.badge_medium_0627 p,
.image_8706,
.list_60c3,
.container_pink_d623,
.steel-7761,
.small-1060,
.easy-8de9,
.title-over-21be {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.prev-8928 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.prev-8928 > *,
.modal_orange_4578,
.badge_medium_0627,
.fast_b96a {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .prev-8928 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .prev-8928 {
    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 === */
.main-paper-3140 {
  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 */
.main-paper-3140.accordion_4a35 {
  box-shadow: var(--shadow-md);
}

.nav_0b8a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.alert_5328 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.tabs-plasma-07bc {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.pink-91f3 {
  display: none;
}

/* Hide mobile actions on desktop */
.focused_fee4 {
  display: none;
}

.tiny-d6ce a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.tiny-d6ce a:hover,
.tiny-d6ce a.fn-active-8078 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.nav-outer-0eb7 {
  margin-left: 1rem;
}

.video-upper-850a {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.element-hard-6ad6,
.gas-4e46 {
  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;
}

.element-hard-6ad6 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.element-hard-6ad6: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;
}

.gas-4e46 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.gas-4e46: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;
}

.element-hard-6ad6 svg,
.gas-4e46 svg {
  flex-shrink: 0;
}

.thumbnail-ec1d {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.detail_next_621f {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.detail_next_621f::before,
.detail_next_621f::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.detail_next_621f::before {
  top: -7px;
}

.detail_next_621f::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.article-5399 {
  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 === */
.out_463f {
  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);
}

.grid-dde4 {
  margin: 0 0 2rem;
  text-align: center;
}

.active-10b2 {
  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;
}

.active-10b2:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.banner_002f {
  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);
}

.banner_002f strong {
  color: var(--primary-color);
  font-weight: 700;
}

.hero_f85b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.black-8dd6 {
  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;
}

.black-8dd6:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.up-9d05 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.popup_917a {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.grid_wood_6512 {
  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);
}

.grid_wood_6512 .heading-basic-146d {
  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;
}

.grid_wood_6512 .heading-basic-146d svg {
  flex-shrink: 0;
}

.grid_wood_6512 .dynamic_62a1 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.grid_wood_6512 .dynamic_62a1: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);
}

.grid_wood_6512 .breadcrumb_a7e2 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.grid_wood_6512 .breadcrumb_a7e2: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) {
  .out_463f {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .active-10b2 {
    max-width: 100%;
  }

  .hero_f85b {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .black-8dd6 {
    padding: 1rem;
  }

  .up-9d05 {
    font-size: 1.5rem;
  }

  .popup_917a {
    font-size: 0.75rem;
  }

  .banner_002f {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .grid_wood_6512 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .grid_wood_6512 .heading-basic-146d {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero_f85b {
    grid-template-columns: 1fr;
  }
}

.picture-black-39f9 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.highlight-166e {
  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 === */
.short-08ac {
  margin-bottom: 2.5rem;
}

.accent-first-ae9f {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.picture-black-39f9 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.basic_b314 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mask_f275 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.paragraph_left_a52e {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.breadcrumb-ce06 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.focused-8ea6 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.message_2120 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.gradient_8eb9 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.gradient_8eb9 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.old_fb6d {
  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);
}

.tertiary_selected_a278 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.black_d38c {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.background-hovered-e31d {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.picture-73ad {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.fast-615c {
  display: grid;
  gap: 1rem;
}

.heading-bc9c {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.plasma-a6bb {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.selected_3c5c {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.message-017d {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.silver-810a {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.box-c63c {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.box-c63c p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.image_8706 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.east-6dca {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.component_rough_a619 {
  display: grid;
  gap: 2rem;
}

.notice-d949 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.mask_f275 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.basic_b314 {
  flex: 1;
}

.breadcrumb-ce06 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.breadcrumb-ce06 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.orange-7855 {
  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;
}

.focused-8ea6 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.picture_8fa7 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.picture_8fa7 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.element-last-36b1 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.element-last-36b1 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.filter_e6fc {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.filter_e6fc strong {
  display: block;
  margin-bottom: 0.75rem;
}

.filter_e6fc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter_e6fc li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.gallery-fd33 {
  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 === */
.preview_over_a4fe {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.feature_upper_e520 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.pattern_bottom_f944 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.hero-bronze-80e7 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.hero-bronze-80e7 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.hero-bronze-80e7 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.hero-bronze-80e7 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;
}

.hero-bronze-80e7 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.hero-bronze-80e7 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.badge_medium_0627 {
  padding: 3rem 0 5rem;
}

.fast_b96a {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.fast_b96a.footer_ab1f {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.list_60c3 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.footer-e655 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.warm_e694 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.warm_e694 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.filter-first-2337 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.carousel_dfc6 {
  text-align: center;
}

.texture-simple-0184 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.complex_ca1f {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.last_6128 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.small-1060 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.container_pink_d623 {
  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;
}

.container_pink_d623 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.container_pink_d623:hover {
  box-shadow: var(--shadow-lg);
}

.container_pink_d623.thumbnail_a0c6 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.container_pink_d623 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.container_pink_d623 ul {
  margin: 1rem 0;
}

.container_pink_d623 li {
  margin-bottom: 0.75rem;
}

.top_ba67 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.hot_ca94 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.hot_ca94 a {
  font-weight: 600;
}

/* === Data Tables === */
.main-current-3dec {
  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;
}

.main-current-3dec table {
  width: 100%;
  min-width: 600px;
}

.main-current-3dec thead {
  background-color: var(--primary-color);
  color: white;
}

.main-current-3dec th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.main-current-3dec td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.main-current-3dec tbody tr:hover {
  background-color: var(--bg-secondary);
}

.main-current-3dec tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.right_ee64 {
  list-style: none;
  margin: 1.5rem 0;
}

.right_ee64 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.right_ee64 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.west_6fec::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-8078::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 === */
.progress_top_b962 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.badge-3ce7 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.badge-3ce7 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.badge-3ce7 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.badge-3ce7 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.progress_top_b962 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.easy-8de9 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.easy-8de9::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.title_6085 {
  position: relative;
  margin-bottom: 3rem;
}

.thumbnail_pink_d5c8 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.thumbnail_pink_d5c8 .outline-under-1964 {
  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;
}

.aside-280b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.aside-280b h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.aside-280b ul {
  margin: 1rem 0;
}

.aside-280b li {
  margin-bottom: 0.75rem;
}

.chip_58ac {
  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 === */
.focus_fast_20e6 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.focus_fast_20e6 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.text-right-99ea {
  list-style: none;
  margin: 1.5rem 0;
}

.text-right-99ea li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.text-right-99ea a {
  font-weight: 600;
}

.component_purple_e602 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.title-over-21be {
  margin: 2.5rem 0;
}

.fluid-4ff8 {
  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;
}

.fluid-4ff8:hover {
  box-shadow: var(--shadow-lg);
}

.fluid-4ff8.simple_f2ed {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.border_5a29 {
  flex-shrink: 0;
}

.border_5a29 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);
}

.tertiary_stone_73eb h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.backdrop-middle-277b,
.clean-5e97,
.pagination-a474 {
  width: 100%;
  margin: 1.5rem 0;
}

.info_ed8e {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.info_ed8e strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.button_focused_0754 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.button_focused_0754 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.sort_medium_6ff4 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.sort_medium_6ff4 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.text_black_26a0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.liquid_5450 {
  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;
}

.liquid_5450:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.liquid_5450.liquid_8b1b {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.liquid_5450 .sidebar-77f3 {
  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;
}

.liquid_5450 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.static-f238 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.nav-basic-59ac {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.nav-basic-59ac label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.badge-2981 {
  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 === */
.heading-basic-146d {
  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;
}

.dynamic_62a1 {
  background-color: var(--primary-color);
  color: white;
}

.dynamic_62a1:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.breadcrumb_a7e2 {
  background-color: var(--text-secondary);
  color: white;
}

.breadcrumb_a7e2:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.notice-7a5d {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.notice-7a5d:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.prev-e76e {
  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;
}

.prev-e76e:hover {
  background-color: var(--primary-dark);
}

.frame_narrow_c671 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.module_a638 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.static-645e {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.surface-0a81 {
  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 === */
.notification-aa27 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.carousel-6edf {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.carousel-6edf h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.cool_ac7b {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.progress-b9ab {
  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;
}

.white-d2f9 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.menu-aa70 {
  list-style: none;
  counter-reset: rank-counter;
}

.menu-aa70 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.menu-aa70 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;
}

.photo-gold-3ff9 {
  list-style: none;
}

.photo-gold-3ff9 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.thumbnail-dirty-ab34 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.thick_578b {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.thick_578b .preview_1c5c {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.thick_578b .static_e63f {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.menu-882a {
  margin-top: 3rem;
}

.column_8a48 {
  width: 100%;
}

.secondary-right-c73d {
  background-color: #fef3c7;
}

.outline-52cb {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.sidebar_right_0ba9 {
  margin: 3rem 0;
}

.wood_d3dc {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.paragraph_b8d4 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.paragraph_b8d4:hover {
  box-shadow: var(--shadow-lg);
}

.paragraph_b8d4.wrapper_blue_e28a {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.hidden_ffc2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.row_242f strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.row_242f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.gallery-cbd2 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.paragraph_b8d4 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.section_5ac0 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hovered-ae3f {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.chip_fluid_a371 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.out-0b7e {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.paragraph_soft_9ae8 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.sort_hard_8d33 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.secondary-caae {
  max-width: 900px;
  margin: 0 auto;
}

.primary-bf48 {
  margin: 2rem 0;
}

.dim-ae08 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.dim-ae08 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.dim-ae08 summary::-webkit-details-marker {
  display: none;
}

.dim-ae08 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.hover-f9cb {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.dim-ae08[open] .hover-f9cb {
  transform: rotate(45deg);
}

.gallery_9a47 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.gallery_9a47 p:last-child {
  margin-bottom: 0;
}

.dark-efb9 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.small_af47 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.pagination-smooth-aa8b {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.pagination-smooth-aa8b p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.pagination-smooth-aa8b .heading-basic-146d {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.right_285f {
  max-width: 900px;
  margin: 0 auto;
}

.over_02b7 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.sort-smooth-0ec1 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.sort-smooth-0ec1.fn-success-8078 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.pattern-e5a7 {
  font-size: 3rem;
  line-height: 1;
}

.sort-2461 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.primary-down-d2f5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.pro-d085,
.outline_fe0a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.pro-d085 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.outline_fe0a h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.breadcrumb-hard-4f31,
.disabled_1fe0 {
  margin: 1.5rem 0;
}

.breadcrumb-hard-4f31 li,
.disabled_1fe0 li {
  margin-bottom: 1rem;
}

.notice_6d30 {
  margin: 3rem 0;
}

.photo_4fda {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.photo_4fda h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.photo_4fda ol {
  margin: 1rem 0;
}

.photo_4fda li {
  margin-bottom: 0.75rem;
}

.liquid_017e {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.surface-outer-b82f {
  margin: 2rem 0;
}

.black-842b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.white_f88d {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.liquid_b365 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.plasma_9e64 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.old_5958 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.notification_fast_0afb {
  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;
}

.notification_fast_0afb img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.paragraph_left_a52e {
  flex: 1;
}

.paragraph_left_a52e h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.small_b25d {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.card-fresh-feb8 p {
  margin-bottom: 1rem;
}

.mask_584d {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.logo_1a28 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.chip_cool_c53c {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.chip_cool_c53c a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.short_004b h3 {
  margin-bottom: 1.5rem;
}

.menu-focused-b2f7 {
  display: grid;
  gap: 2rem;
}

.description_next_1b6d {
  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;
}

.description_next_1b6d img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.description_next_1b6d h4 {
  margin: 0 0 0.25rem;
}

.description_next_1b6d p {
  margin: 0;
  font-size: 0.9375rem;
}

.highlight-f375 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.steel_cc32 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.steel_cc32 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.steel_cc32 ul {
  margin: 1.5rem 0;
}

.steel_cc32 li {
  margin-bottom: 0.75rem;
}

.mini_1059 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.tertiary_7d6b {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.footer-white-5e8f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.hard-1c02 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.hard-1c02 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.easy-8044 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.easy-8044 a {
  color: rgba(255, 255, 255, 0.8);
}

.logo-fda2 {
  list-style: none;
}

.logo-fda2 li {
  margin-bottom: 0.75rem;
}

.logo-fda2 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.logo-fda2 a:hover {
  color: white;
}

.gold-6f85 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.advanced_704d {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.paper-bea3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.button-35df {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.bottom_dfd6 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .prev-8928 {
    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;
  }

  .backdrop-a948 {
    font-size: 1.5rem !important;
  }

  .accent-first-ae9f {
    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 */
  .container_pink_d623,
  .steel-7761,
  .aside-280b,
  .tertiary_stone_73eb,
  .hidden_ffc2,
  .paragraph_b8d4,
  .gallery_9a47,
  .banner_002f,
  .image_8706,
  .list_60c3 {
    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 */
  .picture-black-39f9 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .basic_b314 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .mask_f275 {
    flex-shrink: 0;
  }

  .paragraph_left_a52e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .breadcrumb-ce06,
  .focused-8ea6 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .focused-8ea6 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .tabs-plasma-07bc {
    display: none;
  }

  /* Show mobile actions */
  .focused_fee4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .thick_cb96 {
    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;
  }

  .thick_cb96 svg {
    flex-shrink: 0;
  }

  .thick_cb96 .label_dc7f {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .thick_cb96 .top_cc93 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .smooth_d784 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .component_current_9f7e {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .thick_cb96:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .pink-91f3 {
    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;
  }

  .pink-91f3.fn-active-8078 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .pink-91f3 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .pink-91f3 li:last-child {
    border-bottom: none;
  }

  .pink-91f3 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .tiny-d6ce {
    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;
  }

  .tiny-d6ce li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .tiny-d6ce li:last-child {
    border-bottom: none;
  }

  .tiny-d6ce a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .nav-outer-0eb7 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .video-upper-850a {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .element-hard-6ad6,
  .gas-4e46 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .element-hard-6ad6 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .gas-4e46 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .tiny-d6ce.fn-active-8078 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .thumbnail-ec1d {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .main-paper-3140 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .nav_0b8a {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .article-5399 {
    margin-top: 0;
  }

  /* Hero section */
  .article-5399 {
    padding: 2rem 0 1.5rem;
  }

  .accent-first-ae9f {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .image_8706 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .out_463f {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .active-10b2 {
    max-width: 100%;
    border-radius: 8px;
  }

  .hero_f85b {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .black-8dd6 {
    padding: 1rem;
  }

  .up-9d05 {
    font-size: 1.5rem;
  }

  .popup_917a {
    font-size: 0.75rem;
  }

  .banner_002f {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .grid_wood_6512 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .grid_wood_6512 .heading-basic-146d {
    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 */
  .pattern_bottom_f944 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .fluid-4ff8 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .border_5a29 {
    margin-bottom: 1rem;
  }

  /* Author */
  .notice-d949 {
    flex-direction: column;
  }

  .notification_fast_0afb {
    flex-direction: column;
  }

  /* Quotes */
  .hidden_ffc2 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .primary-down-d2f5 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .plasma_9e64 {
    flex-direction: column;
  }

  .plasma_9e64 .heading-basic-146d {
    width: 100%;
  }

  /* Version comparison */
  .text_black_26a0 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .notification-aa27 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-white-5e8f {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .paper-bea3 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .main-current-3dec,
  .clean-5e97,
  .hero_f7d8,
  .column_8a48,
  .backdrop-middle-277b,
  .pagination-a474 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-current-3dec table,
  .clean-5e97 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .badge-2981 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .prev-8928 {
    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;
  }

  .backdrop-a948 {
    font-size: 1.25rem !important;
  }

  .accent-first-ae9f {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .main-paper-3140 {
    position: fixed;
  }

  .nav_0b8a {
    padding: 0.625rem 0;
  }

  .alert_5328 img {
    height: 26px;
  }

  .tiny-d6ce {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .pink-91f3 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .thick_cb96 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .thick_cb96 svg {
    width: 18px;
    height: 18px;
  }

  .thick_cb96 .label_dc7f {
    font-size: 0.7rem;
  }

  .thick_cb96 .top_cc93 {
    font-size: 0.65rem;
  }

  .element-hard-6ad6,
  .gas-4e46 {
    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, .prev-8928, .modal_orange_4578, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .out_463f {
    padding: 1rem;
  }

  .hero_f85b {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .black-8dd6 {
    padding: 0.875rem;
  }

  .up-9d05 {
    font-size: 1.25rem;
  }

  .grid_wood_6512 .heading-basic-146d {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .accent-first-ae9f {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .heading-basic-146d {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .frame_narrow_c671 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .fluid-4ff8 {
    padding: 1rem;
  }

  .border_5a29 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .container_pink_d623,
  .status_9308,
  .video_c3a7,
  .status_39c9 {
    padding: 1rem;
  }
}

@media print {
  .main-paper-3140,
  .preview_over_a4fe,
  .thumbnail-ec1d,
  .heading-basic-146d,
  .tertiary_7d6b {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .prev-8928 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.paragraph_right_2c03 {
  margin-bottom: 3rem;
  text-align: center;
}

.backdrop-a948 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.list_0ed1 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.stone-6dde,
.surface-1eb2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.accent_narrow_4333 {
  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;
}

.accent_narrow_4333:hover {
  transform: translateY(-5px);
}

.accent_narrow_4333 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.accent_narrow_4333 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.middle_af45 {
  margin: 3rem 0;
}

.layout-out-95c4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.action_81b2 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.action_81b2:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.message_05c4 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pagination-0434 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.active_a03b {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.thick-a446 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.gas_615a {
  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;
}

.gas_615a:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.gas_615a.pagination_gas_731c {
  border-left: 4px solid var(--primary-color);
}

.widget-advanced-ccb8 {
  flex-shrink: 0;
}

.widget-advanced-ccb8 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.thumbnail-down-29fe {
  flex: 1;
}

.thumbnail-down-29fe h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.up_6e85 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.primary_clean_9a40,
.tiny-fc3e,
.card-1767 {
  margin-bottom: 1.5rem;
}

.primary_clean_9a40 h4,
.tiny-fc3e h4,
.card-1767 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.primary_clean_9a40 ul,
.tiny-fc3e ul,
.card-1767 ul {
  list-style: none;
  padding: 0;
}

.primary_clean_9a40 li,
.tiny-fc3e li,
.card-1767 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.primary_clean_9a40 li:before,
.tiny-fc3e li:before,
.card-1767 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.sort_b5ef {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.sort_b5ef 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;
}

.sort_b5ef a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.main-9aaf { margin: 2rem 0; }
.feature-e941 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.feature-e941 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.paper_98db p { margin-bottom: 1rem; line-height: 1.7; }
.paper_98db strong { color: var(--text-primary); }
.paper_98db ul { list-style: none; padding-left: 0; }
.paper_98db ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.paper_98db ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.shadow-yellow-f544 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.north-154e { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.north-154e:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.overlay-adda { font-size: 3rem; margin-bottom: 1rem; }
.north-154e h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.north-154e p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.progress-205f { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.progress-205f span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.lite-9352 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.south-848e { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.backdrop_ab25 { text-align: center; }
.aside-b9f3 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.warm-5133 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.shadow-8481 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.link-d80e { margin: 2rem 0; }
.dim_a1d6 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.dim_a1d6 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.dim_a1d6 p, .dim_a1d6 ul { line-height: 1.7; }
.dim_a1d6 ul { list-style: none; padding-left: 0; }
.dim_a1d6 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.dim_a1d6 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.highlight_f370 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.iron-42dd { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.box-dim-498f { text-align: center; }
.carousel_b299 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.overlay-a5b9 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.outline-dim-b6ed { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.over-0df3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.detail_bd8d { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.detail_bd8d:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.detail_bd8d h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.detail_bd8d p, .detail_bd8d ul { line-height: 1.7; }
.detail_bd8d ul { list-style: none; padding-left: 0; }
.detail_bd8d ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.detail_bd8d ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 0031 */
.widget-item-f4 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.0;
}
