/* ============================================
   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 */
.motion_aeab p,
.text-a288,
.preview_purple_052e,
.shadow-over-5e54,
.west_6b5d,
.alert_86f3,
.menu_6743,
.container_thick_5fdf {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.gold-e01e {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.gold-e01e > *,
.gradient-left-9d5a,
.motion_aeab,
.badge_hard_680d {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .gold-e01e {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .gold-e01e {
    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 === */
.preview-first-a1c6 {
  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 */
.preview-first-a1c6.paragraph-57d7 {
  box-shadow: var(--shadow-md);
}

.middle_2017 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo_861a img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.last-0415 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.static-8357 {
  display: none;
}

/* Hide mobile actions on desktop */
.item-50a8 {
  display: none;
}

.picture-fc9a a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.picture-fc9a a:hover,
.picture-fc9a a.fn-active-1dac {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.carousel-glass-d47a {
  margin-left: 1rem;
}

.aside-west-3bcd {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.clean_035e,
.glass-8f96 {
  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;
}

.clean_035e {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.clean_035e: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;
}

.glass-8f96 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.glass-8f96: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;
}

.clean_035e svg,
.glass-8f96 svg {
  flex-shrink: 0;
}

.picture-north-d940 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.picture_lite_d76e {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.picture_lite_d76e::before,
.picture_lite_d76e::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.picture_lite_d76e::before {
  top: -7px;
}

.picture_lite_d76e::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.yellow-0664 {
  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 === */
.summary_cool_7166 {
  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);
}

.up_2185 {
  margin: 0 0 2rem;
  text-align: center;
}

.media_center_d8ec {
  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;
}

.media_center_d8ec:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.down-f3ec {
  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);
}

.down-f3ec strong {
  color: var(--primary-color);
  font-weight: 700;
}

.mask-static-f250 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.link-top-2f60 {
  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;
}

.link-top-2f60:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.iron-eb97 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.paragraph_13d7 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.box_last_0c38 {
  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);
}

.box_last_0c38 .title_c1f8 {
  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;
}

.box_last_0c38 .title_c1f8 svg {
  flex-shrink: 0;
}

.box_last_0c38 .column-524f {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.box_last_0c38 .column-524f: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);
}

.box_last_0c38 .top_5e73 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.box_last_0c38 .top_5e73: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) {
  .summary_cool_7166 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .media_center_d8ec {
    max-width: 100%;
  }

  .mask-static-f250 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .link-top-2f60 {
    padding: 1rem;
  }

  .iron-eb97 {
    font-size: 1.5rem;
  }

  .paragraph_13d7 {
    font-size: 0.75rem;
  }

  .down-f3ec {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .box_last_0c38 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .box_last_0c38 .title_c1f8 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .mask-static-f250 {
    grid-template-columns: 1fr;
  }
}

.status_stone_baaa {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.status-short-2ba9 {
  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 === */
.pink_7ada {
  margin-bottom: 2.5rem;
}

.left_07f9 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.status_stone_baaa {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.container_dirty_4bca {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.accordion_west_ca9d {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.hovered-7f06 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.photo_focused_0532 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.solid_392c {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.feature_fast_c998 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.summary-120d {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.summary-120d svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.element-down-57c7 {
  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);
}

.header_31cd {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.surface-simple-7fcf {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.avatar-narrow-6fec {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.avatar-7605 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.info_559f {
  display: grid;
  gap: 1rem;
}

.dark-df93 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.tooltip-70b4 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.feature-bc4d {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.overlay-in-4de0 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.accordion-down-0148 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.wrapper-black-7663 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.wrapper-black-7663 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.text-a288 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.feature_black_8159 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.logo_green_826c {
  display: grid;
  gap: 2rem;
}

.blue-ed33 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.accordion_west_ca9d {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.container_dirty_4bca {
  flex: 1;
}

.photo_focused_0532 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.photo_focused_0532 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.logo_liquid_3268 {
  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;
}

.solid_392c {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.accent-stale-abef {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.accent-stale-abef span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.disabled_hard_f239 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.disabled_hard_f239 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.paragraph_left_a9d3 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.paragraph_left_a9d3 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.paragraph_left_a9d3 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.paragraph_left_a9d3 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.solid-f4f6 {
  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 === */
.lite_28de {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.menu_fluid_5260 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.image_ace5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.hot_ac85 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.hot_ac85 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.hot_ac85 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.hot_ac85 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_ac85 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.hot_ac85 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.motion_aeab {
  padding: 3rem 0 5rem;
}

.badge_hard_680d {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.badge_hard_680d.link_stone_ac1a {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.preview_purple_052e {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.summary-1079 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.slider-746e {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.slider-746e h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.paragraph_outer_d3c9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.left-79f4 {
  text-align: center;
}

.aside_action_8c2d {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.new-f988 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.aside-warm-475d {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.alert_86f3 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.shadow-over-5e54 {
  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;
}

.shadow-over-5e54 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.shadow-over-5e54:hover {
  box-shadow: var(--shadow-lg);
}

.shadow-over-5e54.aside-in-21ac {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.shadow-over-5e54 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.shadow-over-5e54 ul {
  margin: 1rem 0;
}

.shadow-over-5e54 li {
  margin-bottom: 0.75rem;
}

.tag_180f {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.white-e032 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.white-e032 a {
  font-weight: 600;
}

/* === Data Tables === */
.item-6d19 {
  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;
}

.item-6d19 table {
  width: 100%;
  min-width: 600px;
}

.item-6d19 thead {
  background-color: var(--primary-color);
  color: white;
}

.item-6d19 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.item-6d19 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.item-6d19 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.item-6d19 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.list-34b7 {
  list-style: none;
  margin: 1.5rem 0;
}

.list-34b7 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.list-34b7 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.in-9025::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-1dac::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 === */
.disabled_308b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.table_01cb {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.table_01cb img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.table_01cb strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.table_01cb span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.disabled_308b blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.menu_6743 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.menu_6743::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.old_a57b {
  position: relative;
  margin-bottom: 3rem;
}

.tooltip-1664 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.tooltip-1664 .highlight_simple_2b20 {
  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;
}

.carousel_current_7f38 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.carousel_current_7f38 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.carousel_current_7f38 ul {
  margin: 1rem 0;
}

.carousel_current_7f38 li {
  margin-bottom: 0.75rem;
}

.filter_dim_bdc7 {
  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 === */
.pressed_b9cb {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.pressed_b9cb h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.feature_wood_abd9 {
  list-style: none;
  margin: 1.5rem 0;
}

.feature_wood_abd9 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.feature_wood_abd9 a {
  font-weight: 600;
}

.link_last_d397 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.container_thick_5fdf {
  margin: 2.5rem 0;
}

.short-a2a5 {
  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;
}

.short-a2a5:hover {
  box-shadow: var(--shadow-lg);
}

.short-a2a5.active-387b {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.title-lower-d5c0 {
  flex-shrink: 0;
}

.title-lower-d5c0 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);
}

.tooltip_d30e h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.list-wood-039b,
.first-564b,
.menu-be3a {
  width: 100%;
  margin: 1.5rem 0;
}

.solid-00a9 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.solid-00a9 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.hard_772a {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.hard_772a strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.out_0b12 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.out_0b12 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.gradient-08f9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.wood-a835 {
  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;
}

.wood-a835:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.wood-a835.backdrop_huge_7138 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.wood-a835 .frame_7915 {
  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;
}

.wood-a835 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.logo_medium_433e {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.chip_gas_29e3 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.chip_gas_29e3 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.content_cool_82c8 {
  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 === */
.title_c1f8 {
  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;
}

.column-524f {
  background-color: var(--primary-color);
  color: white;
}

.column-524f:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.top_5e73 {
  background-color: var(--text-secondary);
  color: white;
}

.top_5e73:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.header_gas_afe7 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.header_gas_afe7:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.progress_first_6f36 {
  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;
}

.progress_first_6f36:hover {
  background-color: var(--primary-dark);
}

.popup-b044 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.content_5c9e {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.aside-1372 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.huge-de09 {
  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 === */
.focused_d498 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.component_slow_731c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.component_slow_731c h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.bottom_c9b4 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.main_south_aec4 {
  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;
}

.current_26c3 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.title_cold_c167 {
  list-style: none;
  counter-reset: rank-counter;
}

.title_cold_c167 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.title_cold_c167 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;
}

.panel_aa32 {
  list-style: none;
}

.panel_aa32 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.accent_0bb8 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.overlay_63e1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.overlay_63e1 .tertiary-fluid-89c1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.overlay_63e1 .pro-f8ed {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.white_03d4 {
  margin-top: 3rem;
}

.widget-dark-5e4b {
  width: 100%;
}

.surface_first_3d4a {
  background-color: #fef3c7;
}

.table_first_2cce {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.box_green_5bca {
  margin: 3rem 0;
}

.list_8cc3 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.box-9dab {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.box-9dab:hover {
  box-shadow: var(--shadow-lg);
}

.box-9dab.thick_dfdc {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.hover-41a7 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.label-2c3e strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.label-2c3e span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.sidebar-yellow-ea9c {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.box-9dab blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.plasma_e815 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tertiary-56d4 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.tabs-d800 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.element-first-2fc0 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.detail-fresh-4c6e {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.detail_23c1 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.fixed_2dc7 {
  max-width: 900px;
  margin: 0 auto;
}

.tooltip-complex-c183 {
  margin: 2rem 0;
}

.thumbnail_pressed_9aec {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.thumbnail_pressed_9aec summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.thumbnail_pressed_9aec summary::-webkit-details-marker {
  display: none;
}

.thumbnail_pressed_9aec summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.carousel-smooth-c2ba {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.thumbnail_pressed_9aec[open] .carousel-smooth-c2ba {
  transform: rotate(45deg);
}

.shade-9e5d {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.shade-9e5d p:last-child {
  margin-bottom: 0;
}

.mask_fresh_929b {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.caption-5177 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.tertiary_selected_4627 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.tertiary_selected_4627 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.tertiary_selected_4627 .title_c1f8 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.link_large_4d7a {
  max-width: 900px;
  margin: 0 auto;
}

.mini_54c1 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.bottom-4355 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.bottom-4355.fn-success-1dac {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.detail-focused-7580 {
  font-size: 3rem;
  line-height: 1;
}

.element_medium_4818 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.hard_3160 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.cool_3b91,
.hero-93f6 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.cool_3b91 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.hero-93f6 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.search_1f4a,
.small-530c {
  margin: 1.5rem 0;
}

.search_1f4a li,
.small-530c li {
  margin-bottom: 1rem;
}

.silver-d627 {
  margin: 3rem 0;
}

.action_6c81 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.action_6c81 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.action_6c81 ol {
  margin: 1rem 0;
}

.action_6c81 li {
  margin-bottom: 0.75rem;
}

.footer_f7ae {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.heading-805e {
  margin: 2rem 0;
}

.wrapper_old_f4e3 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.outline_a32c {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.panel_f9e2 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.component_medium_ae5d {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.avatar-c1f8 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.text-548f {
  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;
}

.text-548f img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.hovered-7f06 {
  flex: 1;
}

.hovered-7f06 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.wood_264d {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.middle_3b33 p {
  margin-bottom: 1rem;
}

.list_900a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.tooltip_green_7473 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.dark-4fd7 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.dark-4fd7 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.wide_7079 h3 {
  margin-bottom: 1.5rem;
}

.paragraph-soft-94f5 {
  display: grid;
  gap: 2rem;
}

.video_basic_9789 {
  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;
}

.video_basic_9789 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.video_basic_9789 h4 {
  margin: 0 0 0.25rem;
}

.video_basic_9789 p {
  margin: 0;
  font-size: 0.9375rem;
}

.slow-3320 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.caption_advanced_b2a3 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.caption_advanced_b2a3 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.caption_advanced_b2a3 ul {
  margin: 1.5rem 0;
}

.caption_advanced_b2a3 li {
  margin-bottom: 0.75rem;
}

.block_a8f3 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.texture_de15 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.feature_5172 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.gradient_slow_5830 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.gradient_slow_5830 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.label-7880 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.label-7880 a {
  color: rgba(255, 255, 255, 0.8);
}

.last-014a {
  list-style: none;
}

.last-014a li {
  margin-bottom: 0.75rem;
}

.last-014a a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.last-014a a:hover {
  color: white;
}

.bronze_64ce {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.action_6e84 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.tag-east-6981 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.summary-8bca {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.element-09e7 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .gold-e01e {
    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;
  }

  .sort_2f4c {
    font-size: 1.5rem !important;
  }

  .left_07f9 {
    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 */
  .shadow-over-5e54,
  .west_6b5d,
  .carousel_current_7f38,
  .tooltip_d30e,
  .hover-41a7,
  .box-9dab,
  .shade-9e5d,
  .down-f3ec,
  .text-a288,
  .preview_purple_052e {
    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 */
  .status_stone_baaa {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .container_dirty_4bca {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .accordion_west_ca9d {
    flex-shrink: 0;
  }

  .hovered-7f06 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .photo_focused_0532,
  .solid_392c {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .solid_392c {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .last-0415 {
    display: none;
  }

  /* Show mobile actions */
  .item-50a8 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .north-f501 {
    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;
  }

  .north-f501 svg {
    flex-shrink: 0;
  }

  .north-f501 .table_smooth_b3a8 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .north-f501 .fixed_f679 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .feature_medium_4e94 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .disabled_3dcf {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .north-f501:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .static-8357 {
    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;
  }

  .static-8357.fn-active-1dac {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .static-8357 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .static-8357 li:last-child {
    border-bottom: none;
  }

  .static-8357 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .picture-fc9a {
    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;
  }

  .picture-fc9a li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .picture-fc9a li:last-child {
    border-bottom: none;
  }

  .picture-fc9a a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .carousel-glass-d47a {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .aside-west-3bcd {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .clean_035e,
  .glass-8f96 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .clean_035e {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .glass-8f96 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .picture-fc9a.fn-active-1dac {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .picture-north-d940 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .preview-first-a1c6 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .middle_2017 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .yellow-0664 {
    margin-top: 0;
  }

  /* Hero section */
  .yellow-0664 {
    padding: 2rem 0 1.5rem;
  }

  .left_07f9 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .text-a288 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .summary_cool_7166 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .media_center_d8ec {
    max-width: 100%;
    border-radius: 8px;
  }

  .mask-static-f250 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .link-top-2f60 {
    padding: 1rem;
  }

  .iron-eb97 {
    font-size: 1.5rem;
  }

  .paragraph_13d7 {
    font-size: 0.75rem;
  }

  .down-f3ec {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .box_last_0c38 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .box_last_0c38 .title_c1f8 {
    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 */
  .image_ace5 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .short-a2a5 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .title-lower-d5c0 {
    margin-bottom: 1rem;
  }

  /* Author */
  .blue-ed33 {
    flex-direction: column;
  }

  .text-548f {
    flex-direction: column;
  }

  /* Quotes */
  .hover-41a7 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .hard_3160 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .component_medium_ae5d {
    flex-direction: column;
  }

  .component_medium_ae5d .title_c1f8 {
    width: 100%;
  }

  /* Version comparison */
  .gradient-08f9 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .focused_d498 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .feature_5172 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tag-east-6981 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .item-6d19,
  .first-564b,
  .center_cdd5,
  .widget-dark-5e4b,
  .list-wood-039b,
  .menu-be3a {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .item-6d19 table,
  .first-564b table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .content_cool_82c8 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .gold-e01e {
    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;
  }

  .sort_2f4c {
    font-size: 1.25rem !important;
  }

  .left_07f9 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .preview-first-a1c6 {
    position: fixed;
  }

  .middle_2017 {
    padding: 0.625rem 0;
  }

  .logo_861a img {
    height: 26px;
  }

  .picture-fc9a {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .static-8357 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .north-f501 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .north-f501 svg {
    width: 18px;
    height: 18px;
  }

  .north-f501 .table_smooth_b3a8 {
    font-size: 0.7rem;
  }

  .north-f501 .fixed_f679 {
    font-size: 0.65rem;
  }

  .clean_035e,
  .glass-8f96 {
    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, .gold-e01e, .gradient-left-9d5a, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .summary_cool_7166 {
    padding: 1rem;
  }

  .mask-static-f250 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .link-top-2f60 {
    padding: 0.875rem;
  }

  .iron-eb97 {
    font-size: 1.25rem;
  }

  .box_last_0c38 .title_c1f8 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .left_07f9 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .title_c1f8 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .popup-b044 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .short-a2a5 {
    padding: 1rem;
  }

  .title-lower-d5c0 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .shadow-over-5e54,
  .clean-96e9,
  .thumbnail-glass-ee94,
  .basic_0d5b {
    padding: 1rem;
  }
}

@media print {
  .preview-first-a1c6,
  .lite_28de,
  .picture-north-d940,
  .title_c1f8,
  .texture_de15 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .gold-e01e {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.overlay_current_f976 {
  margin-bottom: 3rem;
  text-align: center;
}

.sort_2f4c {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hover-5109 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.hot_46e0,
.tabs_large_f7fb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.nav_wood_68df {
  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;
}

.nav_wood_68df:hover {
  transform: translateY(-5px);
}

.nav_wood_68df strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.nav_wood_68df span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.motion_b2c9 {
  margin: 3rem 0;
}

.hero_dcbe {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.chip_smooth_4311 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.chip_smooth_4311:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.middle-a336 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.alert_dim_fe10 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.badge-1d86 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.avatar-95c3 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.gold_949e {
  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;
}

.gold_949e:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.gold_949e.outer-12a0 {
  border-left: 4px solid var(--primary-color);
}

.tag-afae {
  flex-shrink: 0;
}

.tag-afae svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.block-acbd {
  flex: 1;
}

.block-acbd h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.banner-2f27 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pink_2add,
.out-ff19,
.tooltip_4fcd {
  margin-bottom: 1.5rem;
}

.pink_2add h4,
.out-ff19 h4,
.tooltip_4fcd h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pink_2add ul,
.out-ff19 ul,
.tooltip_4fcd ul {
  list-style: none;
  padding: 0;
}

.pink_2add li,
.out-ff19 li,
.tooltip_4fcd li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.pink_2add li:before,
.out-ff19 li:before,
.tooltip_4fcd li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.up_2f4e {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.up_2f4e 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;
}

.up_2f4e a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.full-cd6f { margin: 2rem 0; }
.accent-small-b7b9 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.accent-small-b7b9 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.modal-0156 p { margin-bottom: 1rem; line-height: 1.7; }
.modal-0156 strong { color: var(--text-primary); }
.modal-0156 ul { list-style: none; padding-left: 0; }
.modal-0156 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.modal-0156 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.first-ae7b { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.tabs-7624 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.tabs-7624:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.logo-dirty-9b4a { font-size: 3rem; margin-bottom: 1rem; }
.tabs-7624 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.tabs-7624 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.feature-slow-4f34 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.feature-slow-4f34 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.tiny-336e { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.complex-c03d { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.medium-934a { text-align: center; }
.red_edcb { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.modal-old-6b01 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.filter-3634 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.content_silver_afe3 { margin: 2rem 0; }
.dim-7a13 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.dim-7a13 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.dim-7a13 p, .dim-7a13 ul { line-height: 1.7; }
.dim-7a13 ul { list-style: none; padding-left: 0; }
.dim-7a13 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.dim-7a13 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.stale-0df5 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.tall-adf8 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.dropdown-fb13 { text-align: center; }
.sidebar-down-6761 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.progress_upper_2876 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.accent_easy_32d5 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.card-inner-3362 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.image-7135 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.image-7135:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.image-7135 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.image-7135 p, .image-7135 ul { line-height: 1.7; }
.image-7135 ul { list-style: none; padding-left: 0; }
.image-7135 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.image-7135 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 50db */
.promo-block-y7 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.2;
}
