/* ============================================
   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 */
.thumbnail-fixed-05f0 p,
.feature-9a1e,
.overlay-lower-1283,
.primary-bright-b2e9,
.shadow_tiny_c695,
.carousel_e056,
.tertiary-out-5edb,
.pagination-ea30 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.aside_cold_7ee4 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.aside_cold_7ee4 > *,
.aside_narrow_ad46,
.thumbnail-fixed-05f0,
.widget-white-7ee5 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .aside_cold_7ee4 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .aside_cold_7ee4 {
    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 === */
.pattern-df96 {
  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 */
.pattern-df96.list-middle-cebe {
  box-shadow: var(--shadow-md);
}

.accent_4d6e {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.grid-fluid-9a4a img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.wrapper_over_6037 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.text_gas_2357 {
  display: none;
}

/* Hide mobile actions on desktop */
.pro-6c0e {
  display: none;
}

.thumbnail_72c5 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.thumbnail_72c5 a:hover,
.thumbnail_72c5 a.fn-active-396f {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.media-b0ee {
  margin-left: 1rem;
}

.gallery_paper_f46e {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.list-large-15a4,
.solid_9d7c {
  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;
}

.list-large-15a4 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.list-large-15a4: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;
}

.solid_9d7c {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.solid_9d7c: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;
}

.list-large-15a4 svg,
.solid_9d7c svg {
  flex-shrink: 0;
}

.heading_e3d7 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.slow-3e24 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.slow-3e24::before,
.slow-3e24::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.slow-3e24::before {
  top: -7px;
}

.slow-3e24::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.video_aff9 {
  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 === */
.box_81f3 {
  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);
}

.element-solid-76bb {
  margin: 0 0 2rem;
  text-align: center;
}

.widget_05b0 {
  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;
}

.widget_05b0:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.orange-68bc {
  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);
}

.orange-68bc strong {
  color: var(--primary-color);
  font-weight: 700;
}

.huge-9775 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.slider-9300 {
  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;
}

.slider-9300:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.text-e878 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tabs-68ae {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.paper_06c7 {
  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);
}

.paper_06c7 .under_798e {
  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;
}

.paper_06c7 .under_798e svg {
  flex-shrink: 0;
}

.paper_06c7 .glass-00b4 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.paper_06c7 .glass-00b4: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);
}

.paper_06c7 .summary-active-e09c {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.paper_06c7 .summary-active-e09c: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) {
  .box_81f3 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .widget_05b0 {
    max-width: 100%;
  }

  .huge-9775 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .slider-9300 {
    padding: 1rem;
  }

  .text-e878 {
    font-size: 1.5rem;
  }

  .tabs-68ae {
    font-size: 0.75rem;
  }

  .orange-68bc {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .paper_06c7 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .paper_06c7 .under_798e {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .huge-9775 {
    grid-template-columns: 1fr;
  }
}

.huge_309d {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.disabled-6ae5 {
  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 === */
.widget_selected_d8d7 {
  margin-bottom: 2.5rem;
}

.lower-8f6e {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.huge_309d {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.chip-steel-58b2 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.widget-outer-ec22 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.icon_7449 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.easy-332f {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.hidden_tiny_cd94 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.input-current-96bc {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.frame_copper_535d {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.frame_copper_535d svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.badge_0d3a {
  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);
}

.heading_845e {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.pagination-center-01a0 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.aside-3c38 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.aside_89d3 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.sidebar-1f64 {
  display: grid;
  gap: 1rem;
}

.warm-69de {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.article-2c50 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.gas-2191 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.wide-32e4 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.sidebar-33e5 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.message-337b {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.message-337b p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.feature-9a1e {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.notice_5891 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.mask-pink-f71b {
  display: grid;
  gap: 2rem;
}

.surface_1e65 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.widget-outer-ec22 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.chip-steel-58b2 {
  flex: 1;
}

.easy-332f {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.easy-332f a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.module-139d {
  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;
}

.hidden_tiny_cd94 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.dynamic_f35c {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.dynamic_f35c span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.tag_prev_44c4 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.tag_prev_44c4 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.notification-788d {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.notification-788d strong {
  display: block;
  margin-bottom: 0.75rem;
}

.notification-788d ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.notification-788d li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.nav-clean-39ef {
  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 === */
.backdrop_6683 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.title-upper-d5aa {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.logo-2756 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.right_f5c4 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.right_f5c4 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.right_f5c4 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.right_f5c4 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;
}

.right_f5c4 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.right_f5c4 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.thumbnail-fixed-05f0 {
  padding: 3rem 0 5rem;
}

.widget-white-7ee5 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.widget-white-7ee5.title_5ff6 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.overlay-lower-1283 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.menu-yellow-e91f {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.input_152a {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.input_152a h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.hard-055b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.huge_4b3c {
  text-align: center;
}

.card_dynamic_d16f {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.primary-1c48 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.liquid-d8f5 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.carousel_e056 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.primary-bright-b2e9 {
  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;
}

.primary-bright-b2e9 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.primary-bright-b2e9:hover {
  box-shadow: var(--shadow-lg);
}

.primary-bright-b2e9.middle_6e54 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.primary-bright-b2e9 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.primary-bright-b2e9 ul {
  margin: 1rem 0;
}

.primary-bright-b2e9 li {
  margin-bottom: 0.75rem;
}

.gradient-slow-3e31 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.new_02cb {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.new_02cb a {
  font-weight: 600;
}

/* === Data Tables === */
.motion_29b8 {
  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;
}

.motion_29b8 table {
  width: 100%;
  min-width: 600px;
}

.motion_29b8 thead {
  background-color: var(--primary-color);
  color: white;
}

.motion_29b8 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.motion_29b8 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.motion_29b8 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.motion_29b8 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.tag-thick-862a {
  list-style: none;
  margin: 1.5rem 0;
}

.tag-thick-862a li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.tag-thick-862a li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.menu_basic_8b06::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-396f::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 === */
.block-focused-1f6f {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.component_d0ef {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.component_d0ef img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.component_d0ef strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.component_d0ef span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.block-focused-1f6f blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.tertiary-out-5edb {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.tertiary-out-5edb::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.form-hard-bdd4 {
  position: relative;
  margin-bottom: 3rem;
}

.easy-4588 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.easy-4588 .advanced-fd93 {
  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;
}

.notice-basic-8b54 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.notice-basic-8b54 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.notice-basic-8b54 ul {
  margin: 1rem 0;
}

.notice-basic-8b54 li {
  margin-bottom: 0.75rem;
}

.badge-57ce {
  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 === */
.modal_5312 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.modal_5312 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.avatar-old-8b46 {
  list-style: none;
  margin: 1.5rem 0;
}

.avatar-old-8b46 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.avatar-old-8b46 a {
  font-weight: 600;
}

.medium_4e19 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.pagination-ea30 {
  margin: 2.5rem 0;
}

.row-6cc5 {
  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;
}

.row-6cc5:hover {
  box-shadow: var(--shadow-lg);
}

.row-6cc5.border_9575 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.lower_6489 {
  flex-shrink: 0;
}

.lower_6489 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);
}

.smooth-45dd h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.hidden-bdbb,
.cool_6d97,
.picture_41a4 {
  width: 100%;
  margin: 1.5rem 0;
}

.brown_f06e {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.brown_f06e strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.table_7689 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.table_7689 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.popup_902d {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.popup_902d strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.filter-yellow-7d86 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.list-black-1e74 {
  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;
}

.list-black-1e74:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.list-black-1e74.surface-focused-a1f9 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.list-black-1e74 .label_over_6f21 {
  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;
}

.list-black-1e74 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.bright-f757 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.out-a81b {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.out-a81b label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.right-6af0 {
  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 === */
.under_798e {
  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;
}

.glass-00b4 {
  background-color: var(--primary-color);
  color: white;
}

.glass-00b4:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.summary-active-e09c {
  background-color: var(--text-secondary);
  color: white;
}

.summary-active-e09c:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.texture_887d {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.texture_887d:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.icon-tall-ebd8 {
  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;
}

.icon-tall-ebd8:hover {
  background-color: var(--primary-dark);
}

.container_0024 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.background-bb1f {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.image-30df {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.tooltip-5d19 {
  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 === */
.tertiary_north_7d70 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.widget_4f5a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.widget_4f5a h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.box-6539 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.notice-bright-4863 {
  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;
}

.tag_15bb {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.primary-complex-1b39 {
  list-style: none;
  counter-reset: rank-counter;
}

.primary-complex-1b39 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.primary-complex-1b39 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;
}

.clean_daa2 {
  list-style: none;
}

.clean_daa2 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.wide_1901 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.row_2d45 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.row_2d45 .article_b54e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.row_2d45 .card-c574 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.surface_solid_ab89 {
  margin-top: 3rem;
}

.heading-1440 {
  width: 100%;
}

.element_573c {
  background-color: #fef3c7;
}

.lower-4e05 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.aside-cold-cc84 {
  margin: 3rem 0;
}

.component_37c6 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.title_hard_038d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.title_hard_038d:hover {
  box-shadow: var(--shadow-lg);
}

.title_hard_038d.black-556a {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.photo_steel_f17e {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.container_short_4f1f strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.container_short_4f1f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.gradient_6c5e {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.title_hard_038d blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.breadcrumb_rough_73e9 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.image_huge_8d00 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.in-22d8 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.hidden-3a90 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.dropdown-dirty-060b {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.warm-8470 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.tall-8da3 {
  max-width: 900px;
  margin: 0 auto;
}

.primary-a3bc {
  margin: 2rem 0;
}

.aside_14a7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.aside_14a7 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.aside_14a7 summary::-webkit-details-marker {
  display: none;
}

.aside_14a7 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.white_89be {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.aside_14a7[open] .white_89be {
  transform: rotate(45deg);
}

.icon-b7d1 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.icon-b7d1 p:last-child {
  margin-bottom: 0;
}

.avatar-4e20 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.brown-98ee {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.accent-0fac {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.accent-0fac p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.accent-0fac .under_798e {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.title-north-6092 {
  max-width: 900px;
  margin: 0 auto;
}

.background-dynamic-65ea {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.alert-f3cb {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.alert-f3cb.fn-success-396f {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.container-warm-162c {
  font-size: 3rem;
  line-height: 1;
}

.nav_2abb h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.hard_22ae {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.popup-2aec,
.input-3df1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.popup-2aec h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.input-3df1 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.texture-1a07,
.soft_b2bb {
  margin: 1.5rem 0;
}

.texture-1a07 li,
.soft_b2bb li {
  margin-bottom: 1rem;
}

.plasma_5ae1 {
  margin: 3rem 0;
}

.focus-7395 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.focus-7395 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.focus-7395 ol {
  margin: 1rem 0;
}

.focus-7395 li {
  margin-bottom: 0.75rem;
}

.overlay-336b {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.shade_wood_fba3 {
  margin: 2rem 0;
}

.banner-plasma-0f6a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.chip-tall-9d23 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.heading_b2ba {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.border-east-296b {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.gold-8051 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.light-1105 {
  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;
}

.light-1105 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.icon_7449 {
  flex: 1;
}

.icon_7449 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.panel-cold-d109 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.smooth_216d p {
  margin-bottom: 1rem;
}

.secondary-efba {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.overlay-069c {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.liquid_472c {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.liquid_472c a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.tooltip_rough_30d1 h3 {
  margin-bottom: 1.5rem;
}

.nav-d1f8 {
  display: grid;
  gap: 2rem;
}

.hover-red-5782 {
  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;
}

.hover-red-5782 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.hover-red-5782 h4 {
  margin: 0 0 0.25rem;
}

.hover-red-5782 p {
  margin: 0;
  font-size: 0.9375rem;
}

.easy_3b30 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.hidden_e569 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.hidden_e569 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.hidden_e569 ul {
  margin: 1.5rem 0;
}

.hidden_e569 li {
  margin-bottom: 0.75rem;
}

.progress-focused-aeb4 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.thumbnail-e8d1 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.chip_bright_ec46 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.article-94aa h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.article-94aa p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.old_387b {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.old_387b a {
  color: rgba(255, 255, 255, 0.8);
}

.primary-next-9618 {
  list-style: none;
}

.primary-next-9618 li {
  margin-bottom: 0.75rem;
}

.primary-next-9618 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.primary-next-9618 a:hover {
  color: white;
}

.column_ef66 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.middle-c0d8 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.accordion-6bd4 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.north-c8a5 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.under-79e2 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .aside_cold_7ee4 {
    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;
  }

  .panel-right-5142 {
    font-size: 1.5rem !important;
  }

  .lower-8f6e {
    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 */
  .primary-bright-b2e9,
  .shadow_tiny_c695,
  .notice-basic-8b54,
  .smooth-45dd,
  .photo_steel_f17e,
  .title_hard_038d,
  .icon-b7d1,
  .orange-68bc,
  .feature-9a1e,
  .overlay-lower-1283 {
    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 */
  .huge_309d {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .chip-steel-58b2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .widget-outer-ec22 {
    flex-shrink: 0;
  }

  .icon_7449 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .easy-332f,
  .hidden_tiny_cd94 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hidden_tiny_cd94 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .wrapper_over_6037 {
    display: none;
  }

  /* Show mobile actions */
  .pro-6c0e {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .info_c7bc {
    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;
  }

  .info_c7bc svg {
    flex-shrink: 0;
  }

  .info_c7bc .text-south-fec7 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .info_c7bc .search-pro-cd1b {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .modal-orange-8b95 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .frame-last-2f25 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .info_c7bc:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .text_gas_2357 {
    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;
  }

  .text_gas_2357.fn-active-396f {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .text_gas_2357 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .text_gas_2357 li:last-child {
    border-bottom: none;
  }

  .text_gas_2357 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .thumbnail_72c5 {
    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;
  }

  .thumbnail_72c5 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .thumbnail_72c5 li:last-child {
    border-bottom: none;
  }

  .thumbnail_72c5 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .media-b0ee {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .gallery_paper_f46e {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .list-large-15a4,
  .solid_9d7c {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .list-large-15a4 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .solid_9d7c {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .thumbnail_72c5.fn-active-396f {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .heading_e3d7 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .pattern-df96 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .accent_4d6e {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .video_aff9 {
    margin-top: 0;
  }

  /* Hero section */
  .video_aff9 {
    padding: 2rem 0 1.5rem;
  }

  .lower-8f6e {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .feature-9a1e {
    font-size: 1rem;
  }

  /* Hero brand image */
  .box_81f3 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .widget_05b0 {
    max-width: 100%;
    border-radius: 8px;
  }

  .huge-9775 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .slider-9300 {
    padding: 1rem;
  }

  .text-e878 {
    font-size: 1.5rem;
  }

  .tabs-68ae {
    font-size: 0.75rem;
  }

  .orange-68bc {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .paper_06c7 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .paper_06c7 .under_798e {
    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 */
  .logo-2756 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .row-6cc5 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .lower_6489 {
    margin-bottom: 1rem;
  }

  /* Author */
  .surface_1e65 {
    flex-direction: column;
  }

  .light-1105 {
    flex-direction: column;
  }

  /* Quotes */
  .photo_steel_f17e {
    flex-direction: column;
  }

  /* Pros/Cons */
  .hard_22ae {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .border-east-296b {
    flex-direction: column;
  }

  .border-east-296b .under_798e {
    width: 100%;
  }

  /* Version comparison */
  .filter-yellow-7d86 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .tertiary_north_7d70 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .chip_bright_ec46 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .accordion-6bd4 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .motion_29b8,
  .cool_6d97,
  .highlight-purple-f278,
  .heading-1440,
  .hidden-bdbb,
  .picture_41a4 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .motion_29b8 table,
  .cool_6d97 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .right-6af0 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .aside_cold_7ee4 {
    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;
  }

  .panel-right-5142 {
    font-size: 1.25rem !important;
  }

  .lower-8f6e {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .pattern-df96 {
    position: fixed;
  }

  .accent_4d6e {
    padding: 0.625rem 0;
  }

  .grid-fluid-9a4a img {
    height: 26px;
  }

  .thumbnail_72c5 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .text_gas_2357 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .info_c7bc {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .info_c7bc svg {
    width: 18px;
    height: 18px;
  }

  .info_c7bc .text-south-fec7 {
    font-size: 0.7rem;
  }

  .info_c7bc .search-pro-cd1b {
    font-size: 0.65rem;
  }

  .list-large-15a4,
  .solid_9d7c {
    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, .aside_cold_7ee4, .aside_narrow_ad46, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .box_81f3 {
    padding: 1rem;
  }

  .huge-9775 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .slider-9300 {
    padding: 0.875rem;
  }

  .text-e878 {
    font-size: 1.25rem;
  }

  .paper_06c7 .under_798e {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .lower-8f6e {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .under_798e {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .container_0024 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .row-6cc5 {
    padding: 1rem;
  }

  .lower_6489 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .primary-bright-b2e9,
  .wrapper-simple-5a13,
  .mask_wood_9c4f,
  .warm-cc7b {
    padding: 1rem;
  }
}

@media print {
  .pattern-df96,
  .backdrop_6683,
  .heading_e3d7,
  .under_798e,
  .thumbnail-e8d1 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .aside_cold_7ee4 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.dynamic-6cf3 {
  margin-bottom: 3rem;
  text-align: center;
}

.panel-right-5142 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.middle-9977 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.overlay-short-ad83,
.filter-static-51ea {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.border-fresh-74dd {
  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;
}

.border-fresh-74dd:hover {
  transform: translateY(-5px);
}

.border-fresh-74dd strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.border-fresh-74dd span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.tabs-upper-e747 {
  margin: 3rem 0;
}

.glass_9154 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.over-d4a4 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.over-d4a4:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.shade_soft_04d6 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.main-rough-bf6b {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.east_16fc {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.shadow_dark_9e66 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.thick-a683 {
  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;
}

.thick-a683:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.thick-a683.cool-c021 {
  border-left: 4px solid var(--primary-color);
}

.feature_soft_0369 {
  flex-shrink: 0;
}

.feature_soft_0369 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.pattern_selected_184d {
  flex: 1;
}

.pattern_selected_184d h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.dropdown_f08b {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.fixed-10af,
.filter-bottom-470b,
.hero-tall-6273 {
  margin-bottom: 1.5rem;
}

.fixed-10af h4,
.filter-bottom-470b h4,
.hero-tall-6273 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fixed-10af ul,
.filter-bottom-470b ul,
.hero-tall-6273 ul {
  list-style: none;
  padding: 0;
}

.fixed-10af li,
.filter-bottom-470b li,
.hero-tall-6273 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.fixed-10af li:before,
.filter-bottom-470b li:before,
.hero-tall-6273 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.copper_107c {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.copper_107c 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;
}

.copper_107c a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.label-cold-1977 { margin: 2rem 0; }
.detail-wood-7a40 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.detail-wood-7a40 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.narrow_b182 p { margin-bottom: 1rem; line-height: 1.7; }
.narrow_b182 strong { color: var(--text-primary); }
.narrow_b182 ul { list-style: none; padding-left: 0; }
.narrow_b182 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.narrow_b182 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.steel_f05e { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.pagination-bottom-7eae { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.pagination-bottom-7eae:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.secondary_clean_93e7 { font-size: 3rem; margin-bottom: 1rem; }
.pagination-bottom-7eae h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.pagination-bottom-7eae p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.input-fresh-230e { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.input-fresh-230e span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.breadcrumb_old_c329 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.text-outer-e4af { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.preview_c4e7 { text-align: center; }
.paper_0196 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.active_purple_e44c { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.over-dc11 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.stale_42cc { margin: 2rem 0; }
.frame-out-7af4 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.frame-out-7af4 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.frame-out-7af4 p, .frame-out-7af4 ul { line-height: 1.7; }
.frame-out-7af4 ul { list-style: none; padding-left: 0; }
.frame-out-7af4 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.frame-out-7af4 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.in-92c0 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.pink_835f { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.carousel-f8ab { text-align: center; }
.tooltip-a2bf { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.pagination_9a78 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.shadow_ada0 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.card_old_abbd { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.gas-6b43 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.gas-6b43:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.gas-6b43 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.gas-6b43 p, .gas-6b43 ul { line-height: 1.7; }
.gas-6b43 ul { list-style: none; padding-left: 0; }
.gas-6b43 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.gas-6b43 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 9196 */
.promo-block-w5 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.1;
}
