/* ============================================
   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 */
.rough_2c29 p,
.header-4039,
.paper_30f3,
.small-03d2,
.in-e771,
.gradient_narrow_9139,
.first-74c0,
.pattern_black_8b9c {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.thumbnail-white-63ee {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.thumbnail-white-63ee > *,
.static-9386,
.rough_2c29,
.carousel_red_e42e {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .thumbnail-white-63ee {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .thumbnail-white-63ee {
    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 === */
.dropdown_cool_e21d {
  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 */
.dropdown_cool_e21d.row_dark_26f2 {
  box-shadow: var(--shadow-md);
}

.tall_f9ef {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.focused_788c img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.logo_hard_b8ae {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.east-c6f1 {
  display: none;
}

/* Hide mobile actions on desktop */
.item-6076 {
  display: none;
}

.wrapper_cool_50d8 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.wrapper_cool_50d8 a:hover,
.wrapper_cool_50d8 a.fn-active-9793 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.status_2795 {
  margin-left: 1rem;
}

.disabled_fast_dd69 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.yellow_49e9,
.soft_d1ea {
  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;
}

.yellow_49e9 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.yellow_49e9: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;
}

.soft_d1ea {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.soft_d1ea: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;
}

.yellow_49e9 svg,
.soft_d1ea svg {
  flex-shrink: 0;
}

.wrapper_right_9f83 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.pagination-ce9d {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.pagination-ce9d::before,
.pagination-ce9d::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.pagination-ce9d::before {
  top: -7px;
}

.pagination-ce9d::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.accent-north-c0ea {
  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 === */
.photo-e579 {
  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);
}

.badge_a038 {
  margin: 0 0 2rem;
  text-align: center;
}

.dirty-75a6 {
  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;
}

.dirty-75a6:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.tiny-42c3 {
  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);
}

.tiny-42c3 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.thick_5c7b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.video_e036 {
  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;
}

.video_e036:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.module-d368 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.mask-active-adc0 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.thumbnail-pro-df8c {
  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);
}

.thumbnail-pro-df8c .soft_b0cd {
  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;
}

.thumbnail-pro-df8c .soft_b0cd svg {
  flex-shrink: 0;
}

.thumbnail-pro-df8c .rough-38f7 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.thumbnail-pro-df8c .rough-38f7: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);
}

.thumbnail-pro-df8c .paragraph_focused_f64b {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.thumbnail-pro-df8c .paragraph_focused_f64b: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) {
  .photo-e579 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .dirty-75a6 {
    max-width: 100%;
  }

  .thick_5c7b {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .video_e036 {
    padding: 1rem;
  }

  .module-d368 {
    font-size: 1.5rem;
  }

  .mask-active-adc0 {
    font-size: 0.75rem;
  }

  .tiny-42c3 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .thumbnail-pro-df8c {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .thumbnail-pro-df8c .soft_b0cd {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .thick_5c7b {
    grid-template-columns: 1fr;
  }
}

.center_c6b4 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.paragraph_4502 {
  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 === */
.new_ffc4 {
  margin-bottom: 2.5rem;
}

.highlight-cf95 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.center_c6b4 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.fresh-e1cd {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-798f {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.white-b84a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.solid-91bf {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.hero-d366 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.secondary-85ef {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.avatar-7ac4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.avatar-7ac4 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.old-bcdc {
  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);
}

.surface-5a10 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.center-dbdb {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.grid_clean_95b5 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.full-b891 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.next-266c {
  display: grid;
  gap: 1rem;
}

.south_1078 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.border_top_3e73 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.selected_59f6 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.component-fc20 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.progress_motion_fbf0 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.fresh-2284 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.fresh-2284 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.header-4039 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.full_b86a {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.banner-middle-f9e9 {
  display: grid;
  gap: 2rem;
}

.top-69bf {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.logo-798f {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.fresh-e1cd {
  flex: 1;
}

.solid-91bf {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.solid-91bf a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.over_ed01 {
  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;
}

.hero-d366 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.chip-narrow-0c1a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.chip-narrow-0c1a span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.logo_outer_d36e {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.logo_outer_d36e a {
  font-size: 0.875rem;
  font-weight: 500;
}

.dark_4ab8 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.dark_4ab8 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.dark_4ab8 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dark_4ab8 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.aside-gold-0dd2 {
  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 === */
.overlay_e5d9 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.popup-22f6 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.module-huge-fea3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.short-b95f h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.short-b95f ol {
  list-style: none;
  counter-reset: toc-counter;
}

.short-b95f ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.short-b95f 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;
}

.short-b95f ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.short-b95f ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.rough_2c29 {
  padding: 3rem 0 5rem;
}

.carousel_red_e42e {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.carousel_red_e42e.search-acfb {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.paper_30f3 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.easy_8ceb {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.row_0629 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.row_0629 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.east_f9a9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.gas_2648 {
  text-align: center;
}

.header_bright_e771 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section-focused-be5c {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.modal-top-a089 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.gradient_narrow_9139 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.small-03d2 {
  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;
}

.small-03d2 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.small-03d2:hover {
  box-shadow: var(--shadow-lg);
}

.small-03d2.smooth-408a {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.small-03d2 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.small-03d2 ul {
  margin: 1rem 0;
}

.small-03d2 li {
  margin-bottom: 0.75rem;
}

.button-outer-88aa {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.hot-efed {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.hot-efed a {
  font-weight: 600;
}

/* === Data Tables === */
.pink-b3d3 {
  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;
}

.pink-b3d3 table {
  width: 100%;
  min-width: 600px;
}

.pink-b3d3 thead {
  background-color: var(--primary-color);
  color: white;
}

.pink-b3d3 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.pink-b3d3 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.pink-b3d3 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.pink-b3d3 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.detail-c979 {
  list-style: none;
  margin: 1.5rem 0;
}

.detail-c979 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.detail-c979 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.tall-714c::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-9793::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 === */
.description_ba78 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.breadcrumb_f71c {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.breadcrumb_f71c img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.breadcrumb_f71c strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.breadcrumb_f71c span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.description_ba78 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.first-74c0 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.first-74c0::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.highlight-1032 {
  position: relative;
  margin-bottom: 3rem;
}

.right_c26b {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.right_c26b .title_dynamic_6bea {
  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;
}

.element_c717 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.element_c717 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.element_c717 ul {
  margin: 1rem 0;
}

.element_c717 li {
  margin-bottom: 0.75rem;
}

.wide-a0e6 {
  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 === */
.accordion_0974 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.accordion_0974 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.article-3d07 {
  list-style: none;
  margin: 1.5rem 0;
}

.article-3d07 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.article-3d07 a {
  font-weight: 600;
}

.row-medium-3d66 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.pattern_black_8b9c {
  margin: 2.5rem 0;
}

.row_ce08 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s ease;
}

.row_ce08:hover {
  box-shadow: var(--shadow-lg);
}

.row_ce08.huge-755b {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.block-f1ba {
  flex-shrink: 0;
}

.block-f1ba 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);
}

.lite-8f73 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.video_1902,
.avatar_action_44a1,
.column_afaf {
  width: 100%;
  margin: 1.5rem 0;
}

.tiny_5d67 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.tiny_5d67 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.focused-e31e {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.focused-e31e strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.thick-66d7 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.thick-66d7 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.chip-0e54 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.link-blue-0059 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-blue-0059:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.link-blue-0059.banner_a900 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.link-blue-0059 .dark-4286 {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.link-blue-0059 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.bronze_10a6 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.action_7dcc {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.action_7dcc label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.next_ce0a {
  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 === */
.soft_b0cd {
  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;
}

.rough-38f7 {
  background-color: var(--primary-color);
  color: white;
}

.rough-38f7:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.paragraph_focused_f64b {
  background-color: var(--text-secondary);
  color: white;
}

.paragraph_focused_f64b:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.form_15b5 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.form_15b5:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.thumbnail_blue_6712 {
  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;
}

.thumbnail_blue_6712:hover {
  background-color: var(--primary-dark);
}

.gold_c8a2 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.detail_2765 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.footer_9b31 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.warm-8f7f {
  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 === */
.search-under-b6b0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.section-6baf {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.section-6baf h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.hidden_8b46 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.full-b711 {
  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;
}

.picture_left_c8ad {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.accordion-static-e335 {
  list-style: none;
  counter-reset: rank-counter;
}

.accordion-static-e335 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.accordion-static-e335 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;
}

.backdrop-13a6 {
  list-style: none;
}

.backdrop-13a6 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.gradient_0ab4 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.under_62b1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.under_62b1 .surface_9711 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.under_62b1 .dropdown_c17a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.frame_f464 {
  margin-top: 3rem;
}

.media-glass-64f3 {
  width: 100%;
}

.narrow_2db0 {
  background-color: #fef3c7;
}

.description-black-98f6 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.basic-1721 {
  margin: 3rem 0;
}

.tabs-09e1 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.brown-0ee3 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.brown-0ee3:hover {
  box-shadow: var(--shadow-lg);
}

.brown-0ee3.carousel-b2b8 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.lower_8547 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.thick_5c75 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.thick_5c75 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.button_6068 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.brown-0ee3 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.avatar-basic-b454 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.aside-d132 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.banner-tiny-4d0d {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.hard_fe9b {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.description-narrow-75ce {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.silver-f445 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.backdrop_321b {
  max-width: 900px;
  margin: 0 auto;
}

.hidden_74ec {
  margin: 2rem 0;
}

.link_old_f999 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.link_old_f999 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.link_old_f999 summary::-webkit-details-marker {
  display: none;
}

.link_old_f999 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.slider_f534 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.link_old_f999[open] .slider_f534 {
  transform: rotate(45deg);
}

.widget_21d9 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.widget_21d9 p:last-child {
  margin-bottom: 0;
}

.title-5462 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.hover-f409 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.next_64d6 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.next_64d6 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.next_64d6 .soft_b0cd {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.component_soft_903d {
  max-width: 900px;
  margin: 0 auto;
}

.box_smooth_d961 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.dropdown-a701 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.dropdown-a701.fn-success-9793 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.picture_48a9 {
  font-size: 3rem;
  line-height: 1;
}

.backdrop_down_eadd h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.nav-e96d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.upper_d2e1,
.progress_right_d863 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.upper_d2e1 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.progress_right_d863 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.accordion_a3fa,
.link_bebe {
  margin: 1.5rem 0;
}

.accordion_a3fa li,
.link_bebe li {
  margin-bottom: 1rem;
}

.list-cool-ff46 {
  margin: 3rem 0;
}

.cool_8633 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.cool_8633 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.cool_8633 ol {
  margin: 1rem 0;
}

.cool_8633 li {
  margin-bottom: 0.75rem;
}

.header_c1c8 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.sort_stale_bfbe {
  margin: 2rem 0;
}

.label_fast_4f7a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.module-blue-1607 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.label-down-9e5f {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.disabled_dirty_7f86 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.texture_under_2d5b {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.gradient-bronze-2634 {
  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;
}

.gradient-bronze-2634 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.white-b84a {
  flex: 1;
}

.white-b84a h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.link-clean-dbbe {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.right-4100 p {
  margin-bottom: 1rem;
}

.border_fast_0e31 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.outline-green-cf95 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.media_c67a {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.media_c67a a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.disabled-new-f13d h3 {
  margin-bottom: 1.5rem;
}

.backdrop_left_f9e8 {
  display: grid;
  gap: 2rem;
}

.widget_4249 {
  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;
}

.widget_4249 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.widget_4249 h4 {
  margin: 0 0 0.25rem;
}

.widget_4249 p {
  margin: 0;
  font-size: 0.9375rem;
}

.pro-6cd6 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.aside-warm-0aea {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.aside-warm-0aea h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.aside-warm-0aea ul {
  margin: 1.5rem 0;
}

.aside-warm-0aea li {
  margin-bottom: 0.75rem;
}

.input-outer-ea96 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.wrapper-bb9c {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.panel-5fd8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.shadow_a165 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.shadow_a165 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.gas_fa5d {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.gas_fa5d a {
  color: rgba(255, 255, 255, 0.8);
}

.panel-out-7556 {
  list-style: none;
}

.panel-out-7556 li {
  margin-bottom: 0.75rem;
}

.panel-out-7556 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.panel-out-7556 a:hover {
  color: white;
}

.texture_current_a1ed {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.image-3276 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.main-349b {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.under-007a {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.next-ade0 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .thumbnail-white-63ee {
    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;
  }

  .focus_medium_8eba {
    font-size: 1.5rem !important;
  }

  .highlight-cf95 {
    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 */
  .small-03d2,
  .in-e771,
  .element_c717,
  .lite-8f73,
  .lower_8547,
  .brown-0ee3,
  .widget_21d9,
  .tiny-42c3,
  .header-4039,
  .paper_30f3 {
    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 */
  .center_c6b4 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .fresh-e1cd {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .logo-798f {
    flex-shrink: 0;
  }

  .white-b84a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .solid-91bf,
  .hero-d366 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-d366 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .logo_hard_b8ae {
    display: none;
  }

  /* Show mobile actions */
  .item-6076 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .middle-635c {
    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;
  }

  .middle-635c svg {
    flex-shrink: 0;
  }

  .middle-635c .surface-657b {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .middle-635c .tiny_d90b {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .block-huge-1f86 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .glass-e375 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .middle-635c:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .east-c6f1 {
    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;
  }

  .east-c6f1.fn-active-9793 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .east-c6f1 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .east-c6f1 li:last-child {
    border-bottom: none;
  }

  .east-c6f1 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .wrapper_cool_50d8 {
    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;
  }

  .wrapper_cool_50d8 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .wrapper_cool_50d8 li:last-child {
    border-bottom: none;
  }

  .wrapper_cool_50d8 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .status_2795 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .disabled_fast_dd69 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .yellow_49e9,
  .soft_d1ea {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .yellow_49e9 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .soft_d1ea {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .wrapper_cool_50d8.fn-active-9793 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .wrapper_right_9f83 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .dropdown_cool_e21d {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .tall_f9ef {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .accent-north-c0ea {
    margin-top: 0;
  }

  /* Hero section */
  .accent-north-c0ea {
    padding: 2rem 0 1.5rem;
  }

  .highlight-cf95 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .header-4039 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .photo-e579 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .dirty-75a6 {
    max-width: 100%;
    border-radius: 8px;
  }

  .thick_5c7b {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .video_e036 {
    padding: 1rem;
  }

  .module-d368 {
    font-size: 1.5rem;
  }

  .mask-active-adc0 {
    font-size: 0.75rem;
  }

  .tiny-42c3 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .thumbnail-pro-df8c {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .thumbnail-pro-df8c .soft_b0cd {
    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 */
  .module-huge-fea3 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .row_ce08 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .block-f1ba {
    margin-bottom: 1rem;
  }

  /* Author */
  .top-69bf {
    flex-direction: column;
  }

  .gradient-bronze-2634 {
    flex-direction: column;
  }

  /* Quotes */
  .lower_8547 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .nav-e96d {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .disabled_dirty_7f86 {
    flex-direction: column;
  }

  .disabled_dirty_7f86 .soft_b0cd {
    width: 100%;
  }

  /* Version comparison */
  .chip-0e54 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .search-under-b6b0 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .panel-5fd8 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .main-349b {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .pink-b3d3,
  .avatar_action_44a1,
  .label-simple-1646,
  .media-glass-64f3,
  .video_1902,
  .column_afaf {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pink-b3d3 table,
  .avatar_action_44a1 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .next_ce0a {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .thumbnail-white-63ee {
    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;
  }

  .focus_medium_8eba {
    font-size: 1.25rem !important;
  }

  .highlight-cf95 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .dropdown_cool_e21d {
    position: fixed;
  }

  .tall_f9ef {
    padding: 0.625rem 0;
  }

  .focused_788c img {
    height: 26px;
  }

  .wrapper_cool_50d8 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .east-c6f1 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .middle-635c {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .middle-635c svg {
    width: 18px;
    height: 18px;
  }

  .middle-635c .surface-657b {
    font-size: 0.7rem;
  }

  .middle-635c .tiny_d90b {
    font-size: 0.65rem;
  }

  .yellow_49e9,
  .soft_d1ea {
    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, .thumbnail-white-63ee, .static-9386, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .photo-e579 {
    padding: 1rem;
  }

  .thick_5c7b {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .video_e036 {
    padding: 0.875rem;
  }

  .module-d368 {
    font-size: 1.25rem;
  }

  .thumbnail-pro-df8c .soft_b0cd {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .highlight-cf95 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .soft_b0cd {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .gold_c8a2 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .row_ce08 {
    padding: 1rem;
  }

  .block-f1ba span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .small-03d2,
  .frame-178e,
  .progress-c6f5,
  .thumbnail-89da {
    padding: 1rem;
  }
}

@media print {
  .dropdown_cool_e21d,
  .overlay_e5d9,
  .wrapper_right_9f83,
  .soft_b0cd,
  .wrapper-bb9c {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .thumbnail-white-63ee {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.in-75ea {
  margin-bottom: 3rem;
  text-align: center;
}

.focus_medium_8eba {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.copper_691d {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.message_dim_2405,
.slider-action-6915 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.row_light_e2fe {
  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;
}

.row_light_e2fe:hover {
  transform: translateY(-5px);
}

.row_light_e2fe strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.row_light_e2fe span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.preview_17ce {
  margin: 3rem 0;
}

.slider_hard_dd52 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.panel_8e8f {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.panel_8e8f:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.search_bright_f34b {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.media-5995 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.pressed-1e31 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.gradient-ed27 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.media_0c9b {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.media_0c9b:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.media_0c9b.media-7bb8 {
  border-left: 4px solid var(--primary-color);
}

.overlay_outer_1e78 {
  flex-shrink: 0;
}

.overlay_outer_1e78 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.middle_ad7c {
  flex: 1;
}

.middle_ad7c h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.next-5190 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.small_93ca,
.out_9378,
.text-fixed-3062 {
  margin-bottom: 1.5rem;
}

.small_93ca h4,
.out_9378 h4,
.text-fixed-3062 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.small_93ca ul,
.out_9378 ul,
.text-fixed-3062 ul {
  list-style: none;
  padding: 0;
}

.small_93ca li,
.out_9378 li,
.text-fixed-3062 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.small_93ca li:before,
.out_9378 li:before,
.text-fixed-3062 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.thumbnail_lower_ca30 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.thumbnail_lower_ca30 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;
}

.thumbnail_lower_ca30 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.lower-5dcf { margin: 2rem 0; }
.card_04ea { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.card_04ea h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.focus_b58c p { margin-bottom: 1rem; line-height: 1.7; }
.focus_b58c strong { color: var(--text-primary); }
.focus_b58c ul { list-style: none; padding-left: 0; }
.focus_b58c ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.focus_b58c ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.frame-hard-595c { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.huge_0f22 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.huge_0f22:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.list-light-d2ff { font-size: 3rem; margin-bottom: 1rem; }
.huge_0f22 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.huge_0f22 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.disabled_b17e { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.disabled_b17e span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.article_slow_a65b { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.active_stone_c6f5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.basic_c1ff { text-align: center; }
.thick-94cb { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.nav_clean_b113 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.pink_5fa3 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.overlay-in-5f3e { margin: 2rem 0; }
.box_fb12 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.box_fb12 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.box_fb12 p, .box_fb12 ul { line-height: 1.7; }
.box_fb12 ul { list-style: none; padding-left: 0; }
.box_fb12 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.box_fb12 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.focus-middle-0a4d { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.outer_8ee1 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.thick-86eb { text-align: center; }
.liquid_052b { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.panel-pro-c9df { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.white_e574 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.grid-orange-437f { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.gas_abfe { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.gas_abfe:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.gas_abfe h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.gas_abfe p, .gas_abfe ul { line-height: 1.7; }
.gas_abfe ul { list-style: none; padding-left: 0; }
.gas_abfe ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.gas_abfe ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 8f51 */
.promo-block-v2 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.1;
}
