/* ============================================
   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 */
.north_c50a p,
.label_020c,
.sort-b346,
.modal-85d7,
.status_white_d446,
.black_8d3c,
.solid_c49c,
.dropdown-dirty-eaca {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.element_fixed_5e7d {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.element_fixed_5e7d > *,
.frame-2de6,
.north_c50a,
.slider-56d6 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .element_fixed_5e7d {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .element_fixed_5e7d {
    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 === */
.east-d632 {
  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 */
.east-d632.hard-c3a4 {
  box-shadow: var(--shadow-md);
}

.gas-711b {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.upper-228a img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.photo-3b72 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.backdrop-soft-c67f {
  display: none;
}

/* Hide mobile actions on desktop */
.avatar_23ba {
  display: none;
}

.accordion_2aa2 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.accordion_2aa2 a:hover,
.accordion_2aa2 a.fn-active-1105 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.tooltip-d260 {
  margin-left: 1rem;
}

.progress-lite-3f55 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.hot_cf57,
.hero-c8b9 {
  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;
}

.hot_cf57 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.hot_cf57: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;
}

.hero-c8b9 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.hero-c8b9: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;
}

.hot_cf57 svg,
.hero-c8b9 svg {
  flex-shrink: 0;
}

.detail_6258 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.south-2d50 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.south-2d50::before,
.south-2d50::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.south-2d50::before {
  top: -7px;
}

.south-2d50::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.hero_slow_6b8e {
  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 === */
.sort-prev-39a8 {
  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);
}

.purple_af62 {
  margin: 0 0 2rem;
  text-align: center;
}

.rough-cf18 {
  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;
}

.rough-cf18:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.cool_7923 {
  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);
}

.cool_7923 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.detail-d9ab {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.middle-c777 {
  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;
}

.middle-c777:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.row-c197 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.label-warm-1e8f {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.paragraph-smooth-73c7 {
  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);
}

.paragraph-smooth-73c7 .title-cae8 {
  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;
}

.paragraph-smooth-73c7 .title-cae8 svg {
  flex-shrink: 0;
}

.paragraph-smooth-73c7 .sort-896c {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.paragraph-smooth-73c7 .sort-896c: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);
}

.paragraph-smooth-73c7 .gradient_solid_3b72 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.paragraph-smooth-73c7 .gradient_solid_3b72: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) {
  .sort-prev-39a8 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .rough-cf18 {
    max-width: 100%;
  }

  .detail-d9ab {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .middle-c777 {
    padding: 1rem;
  }

  .row-c197 {
    font-size: 1.5rem;
  }

  .label-warm-1e8f {
    font-size: 0.75rem;
  }

  .cool_7923 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .paragraph-smooth-73c7 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .paragraph-smooth-73c7 .title-cae8 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .detail-d9ab {
    grid-template-columns: 1fr;
  }
}

.container_cc26 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.caption-f125 {
  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 === */
.huge-f17d {
  margin-bottom: 2.5rem;
}

.label-9dcd {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.container_cc26 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.gallery_red_0454 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.aside_mini_7745 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.upper_fd49 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.status-b779 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.focused-4ca1 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.action_0d74 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.avatar-advanced-0169 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.avatar-advanced-0169 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.modal-north-1534 {
  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);
}

.active_9d74 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.footer-ee17 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.heading-dark-f797 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.huge_c497 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.container-active-97f2 {
  display: grid;
  gap: 1rem;
}

.status-glass-6280 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.texture_5dcb {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.static-679c {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.black-a83a {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.blue-85f1 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.image-full-9b93 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.image-full-9b93 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.label_020c {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.link-9c89 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.input_in_cf6c {
  display: grid;
  gap: 2rem;
}

.surface_south_f03c {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.aside_mini_7745 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.gallery_red_0454 {
  flex: 1;
}

.status-b779 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.status-b779 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.gallery-brown-459d {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
}

.focused-4ca1 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.banner-085b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.banner-085b span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.dynamic-cc0a {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.dynamic-cc0a a {
  font-size: 0.875rem;
  font-weight: 500;
}

.content-large-6ebb {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.content-large-6ebb strong {
  display: block;
  margin-bottom: 0.75rem;
}

.content-large-6ebb ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.content-large-6ebb li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.surface_motion_e52c {
  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 === */
.status-blue-4720 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.carousel-silver-4928 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.nav-1b3e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.hero-4e93 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.hero-4e93 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.hero-4e93 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.hero-4e93 ol li a {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.hero-4e93 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.hero-4e93 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.north_c50a {
  padding: 3rem 0 5rem;
}

.slider-56d6 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.slider-56d6.container_cb58 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.sort-b346 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.breadcrumb-5141 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.smooth_1e25 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.smooth_1e25 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.modal-7f11 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.tooltip_center_c1ae {
  text-align: center;
}

.surface-black-8d7e {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.layout-next-454f {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.steel_e63a {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.black_8d3c {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.modal-85d7 {
  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;
}

.modal-85d7 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.modal-85d7:hover {
  box-shadow: var(--shadow-lg);
}

.modal-85d7.steel_101d {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.modal-85d7 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.modal-85d7 ul {
  margin: 1rem 0;
}

.modal-85d7 li {
  margin-bottom: 0.75rem;
}

.right_328e {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.focus_07d3 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.focus_07d3 a {
  font-weight: 600;
}

/* === Data Tables === */
.image_right_df96 {
  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;
}

.image_right_df96 table {
  width: 100%;
  min-width: 600px;
}

.image_right_df96 thead {
  background-color: var(--primary-color);
  color: white;
}

.image_right_df96 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.image_right_df96 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.image_right_df96 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.image_right_df96 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.solid-a574 {
  list-style: none;
  margin: 1.5rem 0;
}

.solid-a574 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.solid-a574 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.video_first_71bf::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-1105::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 === */
.notice-4895 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.accent_complex_3536 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.accent_complex_3536 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.accent_complex_3536 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.accent_complex_3536 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.notice-4895 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.solid_c49c {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.solid_c49c::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.slider-f4de {
  position: relative;
  margin-bottom: 3rem;
}

.preview-9123 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.preview-9123 .status_bf9b {
  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;
}

.card-liquid-bbe5 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.card-liquid-bbe5 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.card-liquid-bbe5 ul {
  margin: 1rem 0;
}

.card-liquid-bbe5 li {
  margin-bottom: 0.75rem;
}

.popup-66dc {
  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 === */
.container_bafd {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.container_bafd h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.accent-faa4 {
  list-style: none;
  margin: 1.5rem 0;
}

.accent-faa4 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.accent-faa4 a {
  font-weight: 600;
}

.link_lite_47dc {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.dropdown-dirty-eaca {
  margin: 2.5rem 0;
}

.main_static_98fc {
  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;
}

.main_static_98fc:hover {
  box-shadow: var(--shadow-lg);
}

.main_static_98fc.backdrop_green_3297 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.sidebar-action-6a55 {
  flex-shrink: 0;
}

.sidebar-action-6a55 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);
}

.media_west_c1c9 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.primary-299f,
.hot_dff0,
.hard-e3e1 {
  width: 100%;
  margin: 1.5rem 0;
}

.next_979b {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.next_979b strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.stale_3b4c {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.stale_3b4c strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.list_35be {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.list_35be strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.paper-85a5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.frame_pro_edc7 {
  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;
}

.frame_pro_edc7:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.frame_pro_edc7.notice-5df7 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.frame_pro_edc7 .dirty_5650 {
  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;
}

.frame_pro_edc7 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.carousel_medium_5f3c {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.form_0c71 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.form_0c71 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.tag-brown-ea98 {
  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-cae8 {
  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;
}

.sort-896c {
  background-color: var(--primary-color);
  color: white;
}

.sort-896c:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.gradient_solid_3b72 {
  background-color: var(--text-secondary);
  color: white;
}

.gradient_solid_3b72:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.caption-fc2d {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.caption-fc2d:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.row-solid-1594 {
  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;
}

.row-solid-1594:hover {
  background-color: var(--primary-dark);
}

.row_a4b8 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.south_6994 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.header_bronze_c6b4 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.table_d3b1 {
  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 === */
.column_ff7e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.large-c5a6 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.large-c5a6 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.medium-d6ae {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.tall-b89e {
  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;
}

.widget_right_8678 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.fast_a8ea {
  list-style: none;
  counter-reset: rank-counter;
}

.fast_a8ea li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.fast_a8ea 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-hovered-fbd5 {
  list-style: none;
}

.carousel-hovered-fbd5 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.modal-73b9 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.picture-wide-fd57 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.picture-wide-fd57 .video-pressed-f5ee {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.picture-wide-fd57 .tag_soft_00cf {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.dropdown_0d91 {
  margin-top: 3rem;
}

.action_fb72 {
  width: 100%;
}

.section-0623 {
  background-color: #fef3c7;
}

.hero_light_2236 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.border_stale_46f1 {
  margin: 3rem 0;
}

.secondary_2554 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.video-2b9e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.video-2b9e:hover {
  box-shadow: var(--shadow-lg);
}

.video-2b9e.overlay_soft_a0b6 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.middle-3332 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.black-784b strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.black-784b span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.card_stale_f6d1 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.video-2b9e blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.backdrop_selected_8fed {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.last-bfcc {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.texture_east_3b67 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.hover_b8b2 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.clean-2659 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.tertiary-9f99 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.hero-a8d3 {
  max-width: 900px;
  margin: 0 auto;
}

.carousel-1824 {
  margin: 2rem 0;
}

.photo-gas-e23b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.photo-gas-e23b summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.photo-gas-e23b summary::-webkit-details-marker {
  display: none;
}

.photo-gas-e23b summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.logo-ba23 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.photo-gas-e23b[open] .logo-ba23 {
  transform: rotate(45deg);
}

.accordion-6b9b {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.accordion-6b9b p:last-child {
  margin-bottom: 0;
}

.grid-under-5b13 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.picture_7271 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.cool-53e4 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.cool-53e4 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.cool-53e4 .title-cae8 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.steel-3674 {
  max-width: 900px;
  margin: 0 auto;
}

.under_a80a {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.banner_1aa5 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.banner_1aa5.fn-success-1105 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.modal_cold_1d48 {
  font-size: 3rem;
  line-height: 1;
}

.texture_lower_c504 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.cold-534c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.dirty-4dd1,
.warm-5749 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.dirty-4dd1 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.warm-5749 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.avatar-3269,
.blue_b65b {
  margin: 1.5rem 0;
}

.avatar-3269 li,
.blue_b65b li {
  margin-bottom: 1rem;
}

.container-over-1989 {
  margin: 3rem 0;
}

.aside_gas_0f06 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.aside_gas_0f06 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.aside_gas_0f06 ol {
  margin: 1rem 0;
}

.aside_gas_0f06 li {
  margin-bottom: 0.75rem;
}

.container_d2b4 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.summary-static-f71a {
  margin: 2rem 0;
}

.main_dark_4ce3 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.avatar-b49c {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.shadow_south_6f15 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.tabs_8fc8 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.steel-777c {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.rough-8517 {
  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;
}

.rough-8517 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.upper_fd49 {
  flex: 1;
}

.upper_fd49 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.upper_2ec9 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.title-9221 p {
  margin-bottom: 1rem;
}

.active_under_8027 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.up_726f {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.paper-4a26 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.paper-4a26 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.link-brown-9b80 h3 {
  margin-bottom: 1.5rem;
}

.photo_clean_48ce {
  display: grid;
  gap: 2rem;
}

.bottom-866f {
  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;
}

.bottom-866f img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.bottom-866f h4 {
  margin: 0 0 0.25rem;
}

.bottom-866f p {
  margin: 0;
  font-size: 0.9375rem;
}

.liquid_4c3a {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.caption_03e1 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.caption_03e1 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.caption_03e1 ul {
  margin: 1.5rem 0;
}

.caption_03e1 li {
  margin-bottom: 0.75rem;
}

.avatar-524d {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.container_4e26 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.outer-fdc9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.inner_9d2c h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.inner_9d2c p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.hover-north-ac7f {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.hover-north-ac7f a {
  color: rgba(255, 255, 255, 0.8);
}

.soft_f3f1 {
  list-style: none;
}

.soft_f3f1 li {
  margin-bottom: 0.75rem;
}

.soft_f3f1 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.soft_f3f1 a:hover {
  color: white;
}

.lite_e28c {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.pro_211d {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.fast-75f9 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.paper-14ec {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.short_7b4a {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .element_fixed_5e7d {
    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;
  }

  .row_4ab6 {
    font-size: 1.5rem !important;
  }

  .label-9dcd {
    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 */
  .modal-85d7,
  .status_white_d446,
  .card-liquid-bbe5,
  .media_west_c1c9,
  .middle-3332,
  .video-2b9e,
  .accordion-6b9b,
  .cool_7923,
  .label_020c,
  .sort-b346 {
    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 */
  .container_cc26 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .gallery_red_0454 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .aside_mini_7745 {
    flex-shrink: 0;
  }

  .upper_fd49 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .status-b779,
  .focused-4ca1 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .focused-4ca1 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .photo-3b72 {
    display: none;
  }

  /* Show mobile actions */
  .avatar_23ba {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .mask_pro_1f53 {
    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;
  }

  .mask_pro_1f53 svg {
    flex-shrink: 0;
  }

  .mask_pro_1f53 .bottom-d236 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .mask_pro_1f53 .panel_6da5 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .description_37d3 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .narrow-ccfd {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .mask_pro_1f53:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .backdrop-soft-c67f {
    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;
  }

  .backdrop-soft-c67f.fn-active-1105 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .backdrop-soft-c67f li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .backdrop-soft-c67f li:last-child {
    border-bottom: none;
  }

  .backdrop-soft-c67f a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .accordion_2aa2 {
    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;
  }

  .accordion_2aa2 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .accordion_2aa2 li:last-child {
    border-bottom: none;
  }

  .accordion_2aa2 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .tooltip-d260 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .progress-lite-3f55 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .hot_cf57,
  .hero-c8b9 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .hot_cf57 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .hero-c8b9 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .accordion_2aa2.fn-active-1105 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .detail_6258 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .east-d632 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .gas-711b {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .hero_slow_6b8e {
    margin-top: 0;
  }

  /* Hero section */
  .hero_slow_6b8e {
    padding: 2rem 0 1.5rem;
  }

  .label-9dcd {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .label_020c {
    font-size: 1rem;
  }

  /* Hero brand image */
  .sort-prev-39a8 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .rough-cf18 {
    max-width: 100%;
    border-radius: 8px;
  }

  .detail-d9ab {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .middle-c777 {
    padding: 1rem;
  }

  .row-c197 {
    font-size: 1.5rem;
  }

  .label-warm-1e8f {
    font-size: 0.75rem;
  }

  .cool_7923 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .paragraph-smooth-73c7 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .paragraph-smooth-73c7 .title-cae8 {
    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 */
  .nav-1b3e {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .main_static_98fc {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .sidebar-action-6a55 {
    margin-bottom: 1rem;
  }

  /* Author */
  .surface_south_f03c {
    flex-direction: column;
  }

  .rough-8517 {
    flex-direction: column;
  }

  /* Quotes */
  .middle-3332 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .cold-534c {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .tabs_8fc8 {
    flex-direction: column;
  }

  .tabs_8fc8 .title-cae8 {
    width: 100%;
  }

  /* Version comparison */
  .paper-85a5 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .column_ff7e {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .outer-fdc9 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .fast-75f9 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .image_right_df96,
  .hot_dff0,
  .slider_ac1b,
  .action_fb72,
  .primary-299f,
  .hard-e3e1 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .image_right_df96 table,
  .hot_dff0 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .tag-brown-ea98 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .element_fixed_5e7d {
    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;
  }

  .row_4ab6 {
    font-size: 1.25rem !important;
  }

  .label-9dcd {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .east-d632 {
    position: fixed;
  }

  .gas-711b {
    padding: 0.625rem 0;
  }

  .upper-228a img {
    height: 26px;
  }

  .accordion_2aa2 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .backdrop-soft-c67f {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .mask_pro_1f53 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .mask_pro_1f53 svg {
    width: 18px;
    height: 18px;
  }

  .mask_pro_1f53 .bottom-d236 {
    font-size: 0.7rem;
  }

  .mask_pro_1f53 .panel_6da5 {
    font-size: 0.65rem;
  }

  .hot_cf57,
  .hero-c8b9 {
    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, .element_fixed_5e7d, .frame-2de6, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .sort-prev-39a8 {
    padding: 1rem;
  }

  .detail-d9ab {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .middle-c777 {
    padding: 0.875rem;
  }

  .row-c197 {
    font-size: 1.25rem;
  }

  .paragraph-smooth-73c7 .title-cae8 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .label-9dcd {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .title-cae8 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .row_a4b8 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .main_static_98fc {
    padding: 1rem;
  }

  .sidebar-action-6a55 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .modal-85d7,
  .image-stone-8d21,
  .label_blue_04f9,
  .block_fdef {
    padding: 1rem;
  }
}

@media print {
  .east-d632,
  .status-blue-4720,
  .detail_6258,
  .title-cae8,
  .container_4e26 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .element_fixed_5e7d {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.wrapper_pressed_6dcb {
  margin-bottom: 3rem;
  text-align: center;
}

.row_4ab6 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.pattern_black_b684 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.feature_smooth_006d,
.prev_07c1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.tooltip_659a {
  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;
}

.tooltip_659a:hover {
  transform: translateY(-5px);
}

.tooltip_659a strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.tooltip_659a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.thumbnail-last-93ee {
  margin: 3rem 0;
}

.current_318c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.up-4f15 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.up-4f15:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.filter_slow_74f6 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.accordion_a220 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.gallery_967a {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.summary-cc84 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.photo_f9e6 {
  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;
}

.photo_f9e6:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.photo_f9e6.focus-medium-e21f {
  border-left: 4px solid var(--primary-color);
}

.glass-725c {
  flex-shrink: 0;
}

.glass-725c svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.description_36e8 {
  flex: 1;
}

.description_36e8 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.purple_65db {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.backdrop-dark-51c1,
.copper_f057,
.main-pressed-c931 {
  margin-bottom: 1.5rem;
}

.backdrop-dark-51c1 h4,
.copper_f057 h4,
.main-pressed-c931 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.backdrop-dark-51c1 ul,
.copper_f057 ul,
.main-pressed-c931 ul {
  list-style: none;
  padding: 0;
}

.backdrop-dark-51c1 li,
.copper_f057 li,
.main-pressed-c931 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.backdrop-dark-51c1 li:before,
.copper_f057 li:before,
.main-pressed-c931 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.prev-4512 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.prev-4512 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;
}

.prev-4512 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.label-52f1 { margin: 2rem 0; }
.header_huge_fdc2 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.header_huge_fdc2 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.pressed-c265 p { margin-bottom: 1rem; line-height: 1.7; }
.pressed-c265 strong { color: var(--text-primary); }
.pressed-c265 ul { list-style: none; padding-left: 0; }
.pressed-c265 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.pressed-c265 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.outer_3e90 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.wrapper-f985 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.wrapper-f985:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.mask-in-8c6d { font-size: 3rem; margin-bottom: 1rem; }
.wrapper-f985 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.wrapper-f985 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.south_6232 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.south_6232 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.accent-c1b0 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.east_5190 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.hidden-ba20 { text-align: center; }
.chip_f170 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.list-30e6 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.tag-easy-4e7c { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.outline-silver-048b { margin: 2rem 0; }
.pagination_motion_e7df { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.pagination_motion_e7df h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.pagination_motion_e7df p, .pagination_motion_e7df ul { line-height: 1.7; }
.pagination_motion_e7df ul { list-style: none; padding-left: 0; }
.pagination_motion_e7df ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.pagination_motion_e7df ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.backdrop-66df { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.menu_tiny_7775 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.soft_f51a { text-align: center; }
.picture_pink_2bf3 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.title_85af { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.description-6735 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.table-5028 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.progress-48e5 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.progress-48e5:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.progress-48e5 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.progress-48e5 p, .progress-48e5 ul { line-height: 1.7; }
.progress-48e5 ul { list-style: none; padding-left: 0; }
.progress-48e5 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.progress-48e5 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: f457 */
.ghost-box-e6 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.2;
}
