/* ============================================
   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 */
.white-96ce p,
.liquid-0b34,
.module-3e69,
.gold_53db,
.main_e4ca,
.small-4f96,
.disabled-gas-5811,
.hero_new_dbe1 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.list_af34 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.list_af34 > *,
.next_0597,
.white-96ce,
.hero_da29 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .list_af34 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .list_af34 {
    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 === */
.mini-05e9 {
  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 */
.mini-05e9.mask_2157 {
  box-shadow: var(--shadow-md);
}

.video_0033 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.disabled-middle-f9b4 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.primary_tall_8077 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.module_soft_b8a1 {
  display: none;
}

/* Hide mobile actions on desktop */
.gallery_627c {
  display: none;
}

.iron-b2c7 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.iron-b2c7 a:hover,
.iron-b2c7 a.fn-active-38fc {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.hard-e996 {
  margin-left: 1rem;
}

.component_9605 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.text-f738,
.pink_b9a1 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  color: white !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.text-f738 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.text-f738: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;
}

.pink_b9a1 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.pink_b9a1:hover {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  transform: translateY(-1px);
  text-decoration: none;
}

.text-f738 svg,
.pink_b9a1 svg {
  flex-shrink: 0;
}

.picture-6df6 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.thumbnail_red_e582 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.thumbnail_red_e582::before,
.thumbnail_red_e582::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.thumbnail_red_e582::before {
  top: -7px;
}

.thumbnail_red_e582::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.over_125d {
  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 === */
.section-west-97c3 {
  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);
}

.bottom-8ea8 {
  margin: 0 0 2rem;
  text-align: center;
}

.image-tiny-8e1e {
  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;
}

.image-tiny-8e1e:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.component-tall-4411 {
  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);
}

.component-tall-4411 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.liquid-2265 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.article_center_0bab {
  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;
}

.article_center_0bab:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.over_40e2 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hard_3d74 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.center_a16e {
  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);
}

.center_a16e .hovered-4a32 {
  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;
}

.center_a16e .hovered-4a32 svg {
  flex-shrink: 0;
}

.center_a16e .image_liquid_fe3c {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.center_a16e .image_liquid_fe3c: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);
}

.center_a16e .lite_cc5d {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.center_a16e .lite_cc5d: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) {
  .section-west-97c3 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .image-tiny-8e1e {
    max-width: 100%;
  }

  .liquid-2265 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .article_center_0bab {
    padding: 1rem;
  }

  .over_40e2 {
    font-size: 1.5rem;
  }

  .hard_3d74 {
    font-size: 0.75rem;
  }

  .component-tall-4411 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .center_a16e {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .center_a16e .hovered-4a32 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .liquid-2265 {
    grid-template-columns: 1fr;
  }
}

.layout-smooth-63da {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.text-0e43 {
  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 === */
.header-5b05 {
  margin-bottom: 2.5rem;
}

.full_2763 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.layout-smooth-63da {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.steel_c897 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hover-29c1 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.rough-2c75 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.main_wood_1eba {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.input-lite-194d {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.label-c440 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer_a702 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer_a702 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.modal-down-8b49 {
  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);
}

.aside-9018 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.input-79df {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.description_9498 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.first_cc76 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.next_5ca6 {
  display: grid;
  gap: 1rem;
}

.down_5309 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.carousel_mini_d89a {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.pattern_red_c11f {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.aside-f59c {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.iron-806a {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.list_a49a {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.list_a49a p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.liquid-0b34 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.pink_23c4 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.notice_dynamic_c43e {
  display: grid;
  gap: 2rem;
}

.texture_28b3 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.hover-29c1 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.steel_c897 {
  flex: 1;
}

.main_wood_1eba {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.main_wood_1eba a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-603b {
  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;
}

.input-lite-194d {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.pink_42d3 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.pink_42d3 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.sidebar-brown-2efe {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.sidebar-brown-2efe a {
  font-size: 0.875rem;
  font-weight: 500;
}

.tiny-d2e0 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.tiny-d2e0 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.tiny-d2e0 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tiny-d2e0 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.article_dd87 {
  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 === */
.next_b3b5 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.media-2d9f {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.smooth_d459 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.hot-2a4a h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.hot-2a4a ol {
  list-style: none;
  counter-reset: toc-counter;
}

.hot-2a4a ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.hot-2a4a 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;
}

.hot-2a4a ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.hot-2a4a ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.white-96ce {
  padding: 3rem 0 5rem;
}

.hero_da29 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.hero_da29.article-lower-f00d {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.module-3e69 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.east-1be7 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.popup-3dea {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.popup-3dea h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.east_2962 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.banner-narrow-b76e {
  text-align: center;
}

.static_4b68 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.wrapper_c41e {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.iron_d06c {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.small-4f96 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.gold_53db {
  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;
}

.gold_53db * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.gold_53db:hover {
  box-shadow: var(--shadow-lg);
}

.gold_53db.table-huge-7d93 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.gold_53db h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.gold_53db ul {
  margin: 1rem 0;
}

.gold_53db li {
  margin-bottom: 0.75rem;
}

.brown-7e71 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.sort_50a3 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.sort_50a3 a {
  font-weight: 600;
}

/* === Data Tables === */
.widget-gas-5130 {
  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;
}

.widget-gas-5130 table {
  width: 100%;
  min-width: 600px;
}

.widget-gas-5130 thead {
  background-color: var(--primary-color);
  color: white;
}

.widget-gas-5130 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.widget-gas-5130 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.widget-gas-5130 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.widget-gas-5130 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.content_clean_4b1c {
  list-style: none;
  margin: 1.5rem 0;
}

.content_clean_4b1c li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.content_clean_4b1c li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.tall_0f80::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-38fc::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 === */
.nav-stale-edd0 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.middle-9163 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.middle-9163 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.middle-9163 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.middle-9163 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.nav-stale-edd0 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.disabled-gas-5811 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.disabled-gas-5811::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.caption-287d {
  position: relative;
  margin-bottom: 3rem;
}

.pink-a757 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.pink-a757 .slow-491c {
  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;
}

.panel_e2e2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.panel_e2e2 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.panel_e2e2 ul {
  margin: 1rem 0;
}

.panel_e2e2 li {
  margin-bottom: 0.75rem;
}

.mask_6cf9 {
  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 === */
.avatar-huge-af67 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.avatar-huge-af67 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.slider-54b0 {
  list-style: none;
  margin: 1.5rem 0;
}

.slider-54b0 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.slider-54b0 a {
  font-weight: 600;
}

.thick_1749 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.hero_new_dbe1 {
  margin: 2.5rem 0;
}

.paper-d0da {
  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;
}

.paper-d0da:hover {
  box-shadow: var(--shadow-lg);
}

.paper-d0da.north-8d7c {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.hard-bd1a {
  flex-shrink: 0;
}

.hard-bd1a 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);
}

.layout-4c78 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.item_down_e183,
.first_c5a0,
.dropdown_54c7 {
  width: 100%;
  margin: 1.5rem 0;
}

.text-last-3532 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.text-last-3532 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.border_liquid_fb09 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.border_liquid_fb09 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.heading_612c {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.heading_612c strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.button-black-75b6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.purple_fff2 {
  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;
}

.purple_fff2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.purple_fff2.purple_92ad {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.purple_fff2 .advanced_c747 {
  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;
}

.purple_fff2 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.tertiary-2c47 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.avatar-steel-eba4 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.avatar-steel-eba4 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.dropdown-a49c {
  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 === */
.hovered-4a32 {
  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;
}

.image_liquid_fe3c {
  background-color: var(--primary-color);
  color: white;
}

.image_liquid_fe3c:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.lite_cc5d {
  background-color: var(--text-secondary);
  color: white;
}

.lite_cc5d:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.card_cool_6945 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.card_cool_6945:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.lower-a219 {
  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;
}

.lower-a219:hover {
  background-color: var(--primary-dark);
}

.glass_fa62 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.paper-d5cd {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.static-d283 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.accent-in-439b {
  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 === */
.wide_f761 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.active_200e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.active_200e h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.item_pressed_a040 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.wrapper-61bb {
  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;
}

.gallery-6fb3 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.next_e11e {
  list-style: none;
  counter-reset: rank-counter;
}

.next_e11e li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.next_e11e 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;
}

.carousel_a143 {
  list-style: none;
}

.carousel_a143 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.paper_3ee3 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.cold_6730 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cold_6730 .basic-2b88 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.cold_6730 .huge_9f1c {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.avatar-0e60 {
  margin-top: 3rem;
}

.notice-f9fe {
  width: 100%;
}

.small_b9a0 {
  background-color: #fef3c7;
}

.surface_over_22fb {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.basic_3384 {
  margin: 3rem 0;
}

.bottom_efd8 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.shade-outer-90c1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.shade-outer-90c1:hover {
  box-shadow: var(--shadow-lg);
}

.shade-outer-90c1.lower-9e12 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.shade-lower-1a84 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.item_c7b0 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.item_c7b0 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.liquid-d1b6 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.shade-outer-90c1 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.feature-green-e938 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.fixed-dba1 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.hard_6994 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.surface_2839 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.label-east-418b {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.feature_outer_ae89 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.blue_6787 {
  max-width: 900px;
  margin: 0 auto;
}

.outer_a1b8 {
  margin: 2rem 0;
}

.backdrop-down-5a36 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.backdrop-down-5a36 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.backdrop-down-5a36 summary::-webkit-details-marker {
  display: none;
}

.backdrop-down-5a36 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.paragraph_mini_2e11 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.backdrop-down-5a36[open] .paragraph_mini_2e11 {
  transform: rotate(45deg);
}

.article_6d92 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.article_6d92 p:last-child {
  margin-bottom: 0;
}

.paragraph_e1ef {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.slider-east-8ca7 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.hidden_bright_b8ba {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.hidden_bright_b8ba p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.hidden_bright_b8ba .hovered-4a32 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.text-first-895c {
  max-width: 900px;
  margin: 0 auto;
}

.smooth-8d00 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.aside_7239 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.aside_7239.fn-success-38fc {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.silver_1288 {
  font-size: 3rem;
  line-height: 1;
}

.backdrop_dc4b h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.main-bde8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.frame-static-4a10,
.fixed-362d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.frame-static-4a10 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.fixed-362d h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.last-39b1,
.item-next-7cc6 {
  margin: 1.5rem 0;
}

.last-39b1 li,
.item-next-7cc6 li {
  margin-bottom: 1rem;
}

.list_plasma_ca39 {
  margin: 3rem 0;
}

.background-259d {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.background-259d h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.background-259d ol {
  margin: 1rem 0;
}

.background-259d li {
  margin-bottom: 0.75rem;
}

.paragraph-down-d446 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.chip_brown_e612 {
  margin: 2rem 0;
}

.over_13db {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.dynamic_b5df {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.primary_down_1b62 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.hover-3082 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.section_7831 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.carousel-hot-8679 {
  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;
}

.carousel-hot-8679 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.rough-2c75 {
  flex: 1;
}

.rough-2c75 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.pattern-48d0 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.clean-213c p {
  margin-bottom: 1rem;
}

.shade_wood_aa5a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.backdrop_62c4 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.hover-pressed-a0f6 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.hover-pressed-a0f6 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.bottom_4703 h3 {
  margin-bottom: 1.5rem;
}

.wide_140f {
  display: grid;
  gap: 2rem;
}

.smooth-7bb1 {
  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;
}

.smooth-7bb1 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.smooth-7bb1 h4 {
  margin: 0 0 0.25rem;
}

.smooth-7bb1 p {
  margin: 0;
  font-size: 0.9375rem;
}

.next_0e19 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.shadow-right-c51e {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.shadow-right-c51e h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.shadow-right-c51e ul {
  margin: 1.5rem 0;
}

.shadow-right-c51e li {
  margin-bottom: 0.75rem;
}

.grid_motion_8715 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.pro-e2ce {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.dropdown-medium-4b6a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.tiny-a564 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.tiny-a564 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.summary-ae99 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.summary-ae99 a {
  color: rgba(255, 255, 255, 0.8);
}

.outer_acc5 {
  list-style: none;
}

.outer_acc5 li {
  margin-bottom: 0.75rem;
}

.outer_acc5 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.outer_acc5 a:hover {
  color: white;
}

.in_4e0c {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.active-ed0f {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.link-outer-7793 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.wrapper-8f50 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.bottom_2422 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .list_af34 {
    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;
  }

  .lite_6076 {
    font-size: 1.5rem !important;
  }

  .full_2763 {
    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 */
  .gold_53db,
  .main_e4ca,
  .panel_e2e2,
  .layout-4c78,
  .shade-lower-1a84,
  .shade-outer-90c1,
  .article_6d92,
  .component-tall-4411,
  .liquid-0b34,
  .module-3e69 {
    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 */
  .layout-smooth-63da {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .steel_c897 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .hover-29c1 {
    flex-shrink: 0;
  }

  .rough-2c75 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .main_wood_1eba,
  .input-lite-194d {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .input-lite-194d {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .primary_tall_8077 {
    display: none;
  }

  /* Show mobile actions */
  .gallery_627c {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .column-cold-8af7 {
    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;
  }

  .column-cold-8af7 svg {
    flex-shrink: 0;
  }

  .column-cold-8af7 .center-8dd4 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .column-cold-8af7 .video_out_d8f8 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .gallery-hot-a0eb {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .current-5663 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .column-cold-8af7:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .module_soft_b8a1 {
    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;
  }

  .module_soft_b8a1.fn-active-38fc {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .module_soft_b8a1 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .module_soft_b8a1 li:last-child {
    border-bottom: none;
  }

  .module_soft_b8a1 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .iron-b2c7 {
    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;
  }

  .iron-b2c7 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .iron-b2c7 li:last-child {
    border-bottom: none;
  }

  .iron-b2c7 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .hard-e996 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .component_9605 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .text-f738,
  .pink_b9a1 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .text-f738 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .pink_b9a1 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .iron-b2c7.fn-active-38fc {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .picture-6df6 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .mini-05e9 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .video_0033 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .over_125d {
    margin-top: 0;
  }

  /* Hero section */
  .over_125d {
    padding: 2rem 0 1.5rem;
  }

  .full_2763 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .liquid-0b34 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .section-west-97c3 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .image-tiny-8e1e {
    max-width: 100%;
    border-radius: 8px;
  }

  .liquid-2265 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .article_center_0bab {
    padding: 1rem;
  }

  .over_40e2 {
    font-size: 1.5rem;
  }

  .hard_3d74 {
    font-size: 0.75rem;
  }

  .component-tall-4411 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .center_a16e {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .center_a16e .hovered-4a32 {
    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 */
  .smooth_d459 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .paper-d0da {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .hard-bd1a {
    margin-bottom: 1rem;
  }

  /* Author */
  .texture_28b3 {
    flex-direction: column;
  }

  .carousel-hot-8679 {
    flex-direction: column;
  }

  /* Quotes */
  .shade-lower-1a84 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .main-bde8 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .hover-3082 {
    flex-direction: column;
  }

  .hover-3082 .hovered-4a32 {
    width: 100%;
  }

  /* Version comparison */
  .button-black-75b6 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .wide_f761 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .dropdown-medium-4b6a {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .link-outer-7793 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .widget-gas-5130,
  .first_c5a0,
  .upper_2a8a,
  .notice-f9fe,
  .item_down_e183,
  .dropdown_54c7 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .widget-gas-5130 table,
  .first_c5a0 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .dropdown-a49c {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .list_af34 {
    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;
  }

  .lite_6076 {
    font-size: 1.25rem !important;
  }

  .full_2763 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .mini-05e9 {
    position: fixed;
  }

  .video_0033 {
    padding: 0.625rem 0;
  }

  .disabled-middle-f9b4 img {
    height: 26px;
  }

  .iron-b2c7 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .module_soft_b8a1 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .column-cold-8af7 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .column-cold-8af7 svg {
    width: 18px;
    height: 18px;
  }

  .column-cold-8af7 .center-8dd4 {
    font-size: 0.7rem;
  }

  .column-cold-8af7 .video_out_d8f8 {
    font-size: 0.65rem;
  }

  .text-f738,
  .pink_b9a1 {
    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, .list_af34, .next_0597, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .section-west-97c3 {
    padding: 1rem;
  }

  .liquid-2265 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .article_center_0bab {
    padding: 0.875rem;
  }

  .over_40e2 {
    font-size: 1.25rem;
  }

  .center_a16e .hovered-4a32 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .full_2763 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .hovered-4a32 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .glass_fa62 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .paper-d0da {
    padding: 1rem;
  }

  .hard-bd1a span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .gold_53db,
  .item-mini-3b00,
  .hidden-soft-3172,
  .action-7f9f {
    padding: 1rem;
  }
}

@media print {
  .mini-05e9,
  .next_b3b5,
  .picture-6df6,
  .hovered-4a32,
  .pro-e2ce {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .list_af34 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.right_96c9 {
  margin-bottom: 3rem;
  text-align: center;
}

.lite_6076 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.dynamic_c07c {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.column_blue_27c5,
.pink_99b0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.component-c710 {
  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;
}

.component-c710:hover {
  transform: translateY(-5px);
}

.component-c710 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.component-c710 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.popup_de68 {
  margin: 3rem 0;
}

.tiny_f971 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.breadcrumb_697a {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.breadcrumb_697a:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.button_orange_eaff {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.article_d8ad {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.mask_fluid_7d48 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.dynamic_bbea {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.media-light-819d {
  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;
}

.media-light-819d:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.media-light-819d.glass_b9b3 {
  border-left: 4px solid var(--primary-color);
}

.pattern-outer-de56 {
  flex-shrink: 0;
}

.pattern-outer-de56 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.detail-265c {
  flex: 1;
}

.detail-265c h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.progress-008a {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.right-b0bf,
.text-pressed-3e7e,
.tabs-in-197c {
  margin-bottom: 1.5rem;
}

.right-b0bf h4,
.text-pressed-3e7e h4,
.tabs-in-197c h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.right-b0bf ul,
.text-pressed-3e7e ul,
.tabs-in-197c ul {
  list-style: none;
  padding: 0;
}

.right-b0bf li,
.text-pressed-3e7e li,
.tabs-in-197c li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.right-b0bf li:before,
.text-pressed-3e7e li:before,
.tabs-in-197c li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.liquid-98ed {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.liquid-98ed 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;
}

.liquid-98ed a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.status_c673 { margin: 2rem 0; }
.section_4c9d { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.section_4c9d h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.highlight-a3ee p { margin-bottom: 1rem; line-height: 1.7; }
.highlight-a3ee strong { color: var(--text-primary); }
.highlight-a3ee ul { list-style: none; padding-left: 0; }
.highlight-a3ee ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.highlight-a3ee ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.out_4adf { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.banner-41d9 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.banner-41d9:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.in-e237 { font-size: 3rem; margin-bottom: 1rem; }
.banner-41d9 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.banner-41d9 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.fast-ab97 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.fast-ab97 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.left_3caf { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.disabled-cold-1066 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.dropdown-soft-9b14 { text-align: center; }
.stone_1cb4 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.header_basic_f88e { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.header_1750 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.basic_05db { margin: 2rem 0; }
.wide_c98e { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.wide_c98e h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.wide_c98e p, .wide_c98e ul { line-height: 1.7; }
.wide_c98e ul { list-style: none; padding-left: 0; }
.wide_c98e ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.wide_c98e ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.down-da64 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.pressed_eea7 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.summary_328a { text-align: center; }
.complex_0721 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.layout_f4e7 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.module-23da { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.panel-0974 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.aside_in_3732 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.aside_in_3732:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.aside_in_3732 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.aside_in_3732 p, .aside_in_3732 ul { line-height: 1.7; }
.aside_in_3732 ul { list-style: none; padding-left: 0; }
.aside_in_3732 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.aside_in_3732 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 898b */
.shadow-element-v3 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.3;
}
