/* ============================================
   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 */
.blue-791e p,
.aside-9f35,
.primary_hard_317e,
.table-focused-a5c4,
.primary-533a,
.stale-11bd,
.first-7bef,
.grid-6c9c {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.item_2f15 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.item_2f15 > *,
.fixed-f2d6,
.blue-791e,
.gallery_3f4e {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .item_2f15 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .item_2f15 {
    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 === */
.hot-b788 {
  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 */
.hot-b788.pagination-lite-41c1 {
  box-shadow: var(--shadow-md);
}

.info_68cc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.secondary-dim-5d66 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.light_3fec {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.fast_f951 {
  display: none;
}

/* Hide mobile actions on desktop */
.background_8917 {
  display: none;
}

.pro-e49d a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.pro-e49d a:hover,
.pro-e49d a.fn-active-6d6a {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.thumbnail-yellow-b8b0 {
  margin-left: 1rem;
}

.active_3396 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.carousel_west_7b2c,
.footer-355f {
  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;
}

.carousel_west_7b2c {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.carousel_west_7b2c: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;
}

.footer-355f {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.footer-355f: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;
}

.carousel_west_7b2c svg,
.footer-355f svg {
  flex-shrink: 0;
}

.panel_11eb {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.wrapper-fa97 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.wrapper-fa97::before,
.wrapper-fa97::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.wrapper-fa97::before {
  top: -7px;
}

.wrapper-fa97::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.icon_57d1 {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border-color);
}

/* === Hero Brand Image - First Screen / Above the Fold === */
.nav-out-deb4 {
  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);
}

.header-364d {
  margin: 0 0 2rem;
  text-align: center;
}

.panel-b35d {
  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;
}

.panel-b35d:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.nav_7768 {
  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);
}

.nav_7768 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.form-focused-8036 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.carousel-3d71 {
  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;
}

.carousel-3d71:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.heading_slow_c1ab {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.texture-2a58 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.info-b3a7 {
  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);
}

.info-b3a7 .plasma_4b47 {
  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;
}

.info-b3a7 .plasma_4b47 svg {
  flex-shrink: 0;
}

.info-b3a7 .summary_new_0b5f {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.info-b3a7 .summary_new_0b5f: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);
}

.info-b3a7 .south_e72e {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.info-b3a7 .south_e72e:hover {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.4);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Mobile optimization for hero brand */
@media (max-width: 768px) {
  .nav-out-deb4 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .panel-b35d {
    max-width: 100%;
  }

  .form-focused-8036 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .carousel-3d71 {
    padding: 1rem;
  }

  .heading_slow_c1ab {
    font-size: 1.5rem;
  }

  .texture-2a58 {
    font-size: 0.75rem;
  }

  .nav_7768 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .info-b3a7 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .info-b3a7 .plasma_4b47 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .form-focused-8036 {
    grid-template-columns: 1fr;
  }
}

.active_12c6 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tabs_next_794e {
  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 === */
.table_south_8d64 {
  margin-bottom: 2.5rem;
}

.label-68a7 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.active_12c6 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.heading_hard_990a {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.label-204e {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.inner-50db {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.article-4922 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.gradient_selected_fb9a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.hero-9d38 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hidden_center_aff9 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hidden_center_aff9 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.upper-d0a2 {
  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);
}

.short-f9f2 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.fluid-bd9e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pagination-cool-6e2b {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.article_green_695d {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.footer-af31 {
  display: grid;
  gap: 1rem;
}

.disabled-advanced-f5fc {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.pro_04e5 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.block-e1d3 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.aside_31fd {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.article_a1ed {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.disabled_f667 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.disabled_f667 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.aside-9f35 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.grid_easy_45ad {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.form_outer_47c3 {
  display: grid;
  gap: 2rem;
}

.block_1e7d {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.label-204e {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.heading_hard_990a {
  flex: 1;
}

.article-4922 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.article-4922 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cold_45f0 {
  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;
}

.gradient_selected_fb9a {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.under_4425 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.under_4425 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.logo_thick_7644 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.logo_thick_7644 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.photo_complex_c33e {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.photo_complex_c33e strong {
  display: block;
  margin-bottom: 0.75rem;
}

.photo_complex_c33e ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.photo_complex_c33e li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.gallery_8972 {
  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 === */
.sort-over-fd10 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.hard_1cde {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.fast_c3fe {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.frame-e2ff h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.frame-e2ff ol {
  list-style: none;
  counter-reset: toc-counter;
}

.frame-e2ff ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.frame-e2ff 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;
}

.frame-e2ff ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.frame-e2ff ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.blue-791e {
  padding: 3rem 0 5rem;
}

.gallery_3f4e {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.gallery_3f4e.caption-bottom-9568 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.primary_hard_317e {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.avatar-selected-e94c {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.shadow_first_04e9 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.shadow_first_04e9 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.slider-1bfe {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.prev_f51b {
  text-align: center;
}

.paragraph_static_63ed {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.rough-5b1d {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.hard-a2ad {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.stale-11bd {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.table-focused-a5c4 {
  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;
}

.table-focused-a5c4 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.table-focused-a5c4:hover {
  box-shadow: var(--shadow-lg);
}

.table-focused-a5c4.mask_7f7c {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.table-focused-a5c4 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.table-focused-a5c4 ul {
  margin: 1rem 0;
}

.table-focused-a5c4 li {
  margin-bottom: 0.75rem;
}

.hidden-thick-fa80 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.iron-f696 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.iron-f696 a {
  font-weight: 600;
}

/* === Data Tables === */
.media_huge_e8bf {
  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;
}

.media_huge_e8bf table {
  width: 100%;
  min-width: 600px;
}

.media_huge_e8bf thead {
  background-color: var(--primary-color);
  color: white;
}

.media_huge_e8bf th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.media_huge_e8bf td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.media_huge_e8bf tbody tr:hover {
  background-color: var(--bg-secondary);
}

.media_huge_e8bf tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.media-df8c {
  list-style: none;
  margin: 1.5rem 0;
}

.media-df8c li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.media-df8c li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.frame-liquid-2347::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-6d6a::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 === */
.accent-pro-03b5 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.accordion-narrow-20a5 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.accordion-narrow-20a5 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.accordion-narrow-20a5 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.accordion-narrow-20a5 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.accent-pro-03b5 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.first-7bef {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.first-7bef::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.hot_a26b {
  position: relative;
  margin-bottom: 3rem;
}

.item-dim-47cc {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.item-dim-47cc .easy_d37c {
  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;
}

.component_46fc {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.component_46fc h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.component_46fc ul {
  margin: 1rem 0;
}

.component_46fc li {
  margin-bottom: 0.75rem;
}

.west_94ab {
  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 === */
.menu_acef {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.menu_acef h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.orange_189a {
  list-style: none;
  margin: 1.5rem 0;
}

.orange_189a li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.orange_189a a {
  font-weight: 600;
}

.tertiary-9ebd {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.grid-6c9c {
  margin: 2.5rem 0;
}

.cold-6513 {
  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;
}

.cold-6513:hover {
  box-shadow: var(--shadow-lg);
}

.cold-6513.element_3cab {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.north-3452 {
  flex-shrink: 0;
}

.north-3452 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);
}

.tabs_3152 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.fresh_e313,
.border_tiny_2aef,
.menu_6931 {
  width: 100%;
  margin: 1.5rem 0;
}

.form_stone_9c44 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.form_stone_9c44 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.focus_dark_c209 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.focus_dark_c209 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.article-large-485e {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.article-large-485e strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.summary-wood-0b98 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.link-current-c7a3 {
  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;
}

.link-current-c7a3:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.link-current-c7a3.large_04a7 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.link-current-c7a3 .accordion_f661 {
  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;
}

.link-current-c7a3 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.hover_focused_8c3d {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.steel-ff5d {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.steel-ff5d label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.liquid_c207 {
  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 === */
.plasma_4b47 {
  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;
}

.summary_new_0b5f {
  background-color: var(--primary-color);
  color: white;
}

.summary_new_0b5f:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.south_e72e {
  background-color: var(--text-secondary);
  color: white;
}

.south_e72e:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.tag-0be0 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.tag-0be0:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.carousel_a442 {
  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;
}

.carousel_a442:hover {
  background-color: var(--primary-dark);
}

.overlay_static_bdb6 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.menu_3809 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.banner_brown_6671 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.aside_594c {
  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 === */
.hero_solid_70cd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.shadow_steel_f8d0 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.shadow_steel_f8d0 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.disabled_cool_75a3 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.smooth-3ede {
  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;
}

.new_d24d {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.info_blue_090f {
  list-style: none;
  counter-reset: rank-counter;
}

.info_blue_090f li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.info_blue_090f 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;
}

.sidebar-stone-8bba {
  list-style: none;
}

.sidebar-stone-8bba li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.video_rough_6a24 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.tiny-ff15 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.tiny-ff15 .tertiary-lite-f021 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.tiny-ff15 .tooltip-small-9cf0 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.glass_9a68 {
  margin-top: 3rem;
}

.west_6017 {
  width: 100%;
}

.highlight_top_719b {
  background-color: #fef3c7;
}

.picture-a9cc {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.input-a76e {
  margin: 3rem 0;
}

.secondary-medium-6dbe {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.paragraph-94f7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.paragraph-94f7:hover {
  box-shadow: var(--shadow-lg);
}

.paragraph-94f7.accordion-gold-9161 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.mask-0d51 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.paper_0aa4 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.paper_0aa4 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.red-81c5 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.paragraph-94f7 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.hovered_9fae {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.sidebar-432a {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.tabs-13c1 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.layout-right-8796 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.tabs_0dad {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.lower-353c {
  margin-top: 1rem;
}

/* === FAQ Section === */
.dark_92bc {
  max-width: 900px;
  margin: 0 auto;
}

.widget-8cbc {
  margin: 2rem 0;
}

.header-short-4006 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.header-short-4006 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.header-short-4006 summary::-webkit-details-marker {
  display: none;
}

.header-short-4006 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.info_easy_43f8 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.header-short-4006[open] .info_easy_43f8 {
  transform: rotate(45deg);
}

.video-4ea5 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.video-4ea5 p:last-child {
  margin-bottom: 0;
}

.carousel_basic_ff47 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.pressed-b512 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.content_fresh_ab5a {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.content_fresh_ab5a p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.content_fresh_ab5a .plasma_4b47 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.texture_6c2a {
  max-width: 900px;
  margin: 0 auto;
}

.glass-db0d {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.green-180f {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.green-180f.fn-success-6d6a {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.lower-c1f5 {
  font-size: 3rem;
  line-height: 1;
}

.table_151f h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.old_f01c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.lower_4597,
.progress_glass_cb7d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.lower_4597 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.progress_glass_cb7d h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.purple-2cbf,
.cool-bdb1 {
  margin: 1.5rem 0;
}

.purple-2cbf li,
.cool-bdb1 li {
  margin-bottom: 1rem;
}

.paper_2337 {
  margin: 3rem 0;
}

.alert-f823 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.alert-f823 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.alert-f823 ol {
  margin: 1rem 0;
}

.alert-f823 li {
  margin-bottom: 0.75rem;
}

.media_158e {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.in_d09a {
  margin: 2rem 0;
}

.main-31b1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.photo_1fa3 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.green-0278 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.slider_copper_5368 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.frame-red-9a79 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.detail_37b5 {
  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;
}

.detail_37b5 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.inner-50db {
  flex: 1;
}

.inner-50db h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.accordion_fast_1778 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.accent-81aa p {
  margin-bottom: 1rem;
}

.hero-new-0e53 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.small_0bf3 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.tertiary-wide-f596 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.tertiary-wide-f596 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.notice-69ca h3 {
  margin-bottom: 1.5rem;
}

.content_huge_5bd5 {
  display: grid;
  gap: 2rem;
}

.new-2ca7 {
  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;
}

.new-2ca7 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.new-2ca7 h4 {
  margin: 0 0 0.25rem;
}

.new-2ca7 p {
  margin: 0;
  font-size: 0.9375rem;
}

.disabled-7ef3 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.caption-fast-8ec1 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.caption-fast-8ec1 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.caption-fast-8ec1 ul {
  margin: 1.5rem 0;
}

.caption-fast-8ec1 li {
  margin-bottom: 0.75rem;
}

.hard-c582 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.accordion_271f {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.menu-stale-69d3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-c585 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.footer-c585 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.badge_gas_d560 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.badge_gas_d560 a {
  color: rgba(255, 255, 255, 0.8);
}

.selected-795f {
  list-style: none;
}

.selected-795f li {
  margin-bottom: 0.75rem;
}

.selected-795f a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.selected-795f a:hover {
  color: white;
}

.warm_cae1 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.sidebar_c509 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.sidebar_a7de {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.input-inner-4098 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.table-ed90 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .item_2f15 {
    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;
  }

  .iron-a56f {
    font-size: 1.5rem !important;
  }

  .label-68a7 {
    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 */
  .table-focused-a5c4,
  .primary-533a,
  .component_46fc,
  .tabs_3152,
  .mask-0d51,
  .paragraph-94f7,
  .video-4ea5,
  .nav_7768,
  .aside-9f35,
  .primary_hard_317e {
    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 */
  .active_12c6 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .heading_hard_990a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .label-204e {
    flex-shrink: 0;
  }

  .inner-50db {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .article-4922,
  .gradient_selected_fb9a {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .gradient_selected_fb9a {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .light_3fec {
    display: none;
  }

  /* Show mobile actions */
  .background_8917 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .clean-35c5 {
    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;
  }

  .clean-35c5 svg {
    flex-shrink: 0;
  }

  .clean-35c5 .detail-up-309c {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .clean-35c5 .logo_light_b682 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .tabs_a8da {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .thumbnail_c68a {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .clean-35c5:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .fast_f951 {
    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;
  }

  .fast_f951.fn-active-6d6a {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .fast_f951 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .fast_f951 li:last-child {
    border-bottom: none;
  }

  .fast_f951 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .pro-e49d {
    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;
  }

  .pro-e49d li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .pro-e49d li:last-child {
    border-bottom: none;
  }

  .pro-e49d a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .thumbnail-yellow-b8b0 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .active_3396 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .carousel_west_7b2c,
  .footer-355f {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .carousel_west_7b2c {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .footer-355f {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .pro-e49d.fn-active-6d6a {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .panel_11eb {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .hot-b788 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .info_68cc {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .icon_57d1 {
    margin-top: 0;
  }

  /* Hero section */
  .icon_57d1 {
    padding: 2rem 0 1.5rem;
  }

  .label-68a7 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .aside-9f35 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .nav-out-deb4 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .panel-b35d {
    max-width: 100%;
    border-radius: 8px;
  }

  .form-focused-8036 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .carousel-3d71 {
    padding: 1rem;
  }

  .heading_slow_c1ab {
    font-size: 1.5rem;
  }

  .texture-2a58 {
    font-size: 0.75rem;
  }

  .nav_7768 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .info-b3a7 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .info-b3a7 .plasma_4b47 {
    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 */
  .fast_c3fe {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .cold-6513 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .north-3452 {
    margin-bottom: 1rem;
  }

  /* Author */
  .block_1e7d {
    flex-direction: column;
  }

  .detail_37b5 {
    flex-direction: column;
  }

  /* Quotes */
  .mask-0d51 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .old_f01c {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .slider_copper_5368 {
    flex-direction: column;
  }

  .slider_copper_5368 .plasma_4b47 {
    width: 100%;
  }

  /* Version comparison */
  .summary-wood-0b98 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .hero_solid_70cd {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .menu-stale-69d3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sidebar_a7de {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .media_huge_e8bf,
  .border_tiny_2aef,
  .alert-1dac,
  .west_6017,
  .fresh_e313,
  .menu_6931 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .media_huge_e8bf table,
  .border_tiny_2aef table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .liquid_c207 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .item_2f15 {
    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;
  }

  .iron-a56f {
    font-size: 1.25rem !important;
  }

  .label-68a7 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .hot-b788 {
    position: fixed;
  }

  .info_68cc {
    padding: 0.625rem 0;
  }

  .secondary-dim-5d66 img {
    height: 26px;
  }

  .pro-e49d {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .fast_f951 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .clean-35c5 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .clean-35c5 svg {
    width: 18px;
    height: 18px;
  }

  .clean-35c5 .detail-up-309c {
    font-size: 0.7rem;
  }

  .clean-35c5 .logo_light_b682 {
    font-size: 0.65rem;
  }

  .carousel_west_7b2c,
  .footer-355f {
    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, .item_2f15, .fixed-f2d6, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .nav-out-deb4 {
    padding: 1rem;
  }

  .form-focused-8036 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .carousel-3d71 {
    padding: 0.875rem;
  }

  .heading_slow_c1ab {
    font-size: 1.25rem;
  }

  .info-b3a7 .plasma_4b47 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .label-68a7 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .plasma_4b47 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .overlay_static_bdb6 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .cold-6513 {
    padding: 1rem;
  }

  .north-3452 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .table-focused-a5c4,
  .accordion_7cad,
  .layout-fc70,
  .pink_d3da {
    padding: 1rem;
  }
}

@media print {
  .hot-b788,
  .sort-over-fd10,
  .panel_11eb,
  .plasma_4b47,
  .accordion_271f {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .item_2f15 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.table_in_cd88 {
  margin-bottom: 3rem;
  text-align: center;
}

.iron-a56f {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.tabs-888d {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.form_fixed_4db1,
.row_purple_67f2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.sidebar-13ae {
  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;
}

.sidebar-13ae:hover {
  transform: translateY(-5px);
}

.sidebar-13ae strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.sidebar-13ae span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.element-fluid-3171 {
  margin: 3rem 0;
}

.icon_blue_9028 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.wide-e982 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.wide-e982:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.nav-48fb {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.focused-5da5 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.notification_lower_9153 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.up_9a6b {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.iron-b23f {
  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;
}

.iron-b23f:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.iron-b23f.gallery_0c3b {
  border-left: 4px solid var(--primary-color);
}

.layout_motion_c60c {
  flex-shrink: 0;
}

.layout_motion_c60c svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.detail-d37f {
  flex: 1;
}

.detail-d37f h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.active-f886 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.filter_c7a3,
.dirty-4ae9,
.full-1a7d {
  margin-bottom: 1.5rem;
}

.filter_c7a3 h4,
.dirty-4ae9 h4,
.full-1a7d h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter_c7a3 ul,
.dirty-4ae9 ul,
.full-1a7d ul {
  list-style: none;
  padding: 0;
}

.filter_c7a3 li,
.dirty-4ae9 li,
.full-1a7d li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.filter_c7a3 li:before,
.dirty-4ae9 li:before,
.full-1a7d li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.simple_14ad {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.simple_14ad 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;
}

.simple_14ad a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.pro-7e86 { margin: 2rem 0; }
.top-64e3 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.top-64e3 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.main-a5fc p { margin-bottom: 1rem; line-height: 1.7; }
.main-a5fc strong { color: var(--text-primary); }
.main-a5fc ul { list-style: none; padding-left: 0; }
.main-a5fc ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.main-a5fc ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.secondary-1f65 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.clean_6913 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.clean_6913:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.nav_4099 { font-size: 3rem; margin-bottom: 1rem; }
.clean_6913 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.clean_6913 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.notification-basic-5f2d { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.notification-basic-5f2d span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.media_hovered_aa35 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.background-orange-ec05 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.gradient-center-4b74 { text-align: center; }
.lower_ba81 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.media-warm-28d4 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.up-e11a { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.next_d8bc { margin: 2rem 0; }
.outline-pro-af7d { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.outline-pro-af7d h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.outline-pro-af7d p, .outline-pro-af7d ul { line-height: 1.7; }
.outline-pro-af7d ul { list-style: none; padding-left: 0; }
.outline-pro-af7d ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.outline-pro-af7d ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.shade-in-64f0 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.section_south_b43e { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.lite_4e5c { text-align: center; }
.element-0dc7 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.last-7201 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.west_d8f2 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.box-0c22 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.dim_5836 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.dim_5836:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.dim_5836 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.dim_5836 p, .dim_5836 ul { line-height: 1.7; }
.dim_5836 ul { list-style: none; padding-left: 0; }
.dim_5836 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.dim_5836 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: b29b */
.ghost-box-z0 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.3;
}
