/* ============================================
   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 */
.title_last_4d9f p,
.pressed-7276,
.carousel-554d,
.background_hot_2423,
.thumbnail_0cc7,
.wood_cd51,
.description-old-a257,
.preview-fc3f {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.mask_4a22 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.mask_4a22 > *,
.photo_stone_1d8e,
.title_last_4d9f,
.texture-0343 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .mask_4a22 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .mask_4a22 {
    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 === */
.feature_129b {
  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 */
.feature_129b.hidden-west-f2e0 {
  box-shadow: var(--shadow-md);
}

.dim-e9bf {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.layout_4000 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.message-cool-9025 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.large-aa10 {
  display: none;
}

/* Hide mobile actions on desktop */
.progress-c586 {
  display: none;
}

.slider-rough-f816 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.slider-rough-f816 a:hover,
.slider-rough-f816 a.fn-active-f245 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.summary_4730 {
  margin-left: 1rem;
}

.paragraph_1922 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.pattern-85f5,
.description-soft-6c2a {
  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;
}

.pattern-85f5 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.pattern-85f5: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;
}

.description-soft-6c2a {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.description-soft-6c2a: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;
}

.pattern-85f5 svg,
.description-soft-6c2a svg {
  flex-shrink: 0;
}

.huge_d0fd {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.under_c3be {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.under_c3be::before,
.under_c3be::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.under_c3be::before {
  top: -7px;
}

.under_c3be::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.nav-d963 {
  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 === */
.overlay_tiny_5f99 {
  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);
}

.accent_84a7 {
  margin: 0 0 2rem;
  text-align: center;
}

.solid-8153 {
  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;
}

.solid-8153:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.surface-left-e016 {
  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);
}

.surface-left-e016 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.carousel-orange-3d26 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.progress-paper-8f1c {
  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;
}

.progress-paper-8f1c:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.brown-41ca {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.bottom-2b5c {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.active-30a1 {
  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);
}

.active-30a1 .texture-fixed-7792 {
  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;
}

.active-30a1 .texture-fixed-7792 svg {
  flex-shrink: 0;
}

.active-30a1 .layout-527c {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.active-30a1 .layout-527c: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);
}

.active-30a1 .tabs-be16 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.active-30a1 .tabs-be16: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) {
  .overlay_tiny_5f99 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .solid-8153 {
    max-width: 100%;
  }

  .carousel-orange-3d26 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .progress-paper-8f1c {
    padding: 1rem;
  }

  .brown-41ca {
    font-size: 1.5rem;
  }

  .bottom-2b5c {
    font-size: 0.75rem;
  }

  .surface-left-e016 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .active-30a1 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .active-30a1 .texture-fixed-7792 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .carousel-orange-3d26 {
    grid-template-columns: 1fr;
  }
}

.image_a473 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.heading_fast_faac {
  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 === */
.full_e954 {
  margin-bottom: 2.5rem;
}

.box-2e00 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.image_a473 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.link-455e {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.summary_stale_b070 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.gas-051c {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.purple_780a {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.accent_7eb9 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.tooltip_smooth_7596 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.focused-314a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.focused-314a svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.medium_74d3 {
  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);
}

.description-5d19 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.grid_solid_2493 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.label_8d5a {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.header_simple_e402 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.over-07de {
  display: grid;
  gap: 1rem;
}

.tertiary-e097 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.wrapper-e644 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.shadow-e7d4 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.tooltip-5df1 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.detail_428b {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.link-huge-66f3 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.link-huge-66f3 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.pressed-7276 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.red_88e8 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.glass_3f64 {
  display: grid;
  gap: 2rem;
}

.old-ff4d {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.summary_stale_b070 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.link-455e {
  flex: 1;
}

.purple_780a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.purple_780a a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hero-1d6e {
  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;
}

.accent_7eb9 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.image_6575 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.image_6575 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.heading-motion-c82f {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.heading-motion-c82f a {
  font-size: 0.875rem;
  font-weight: 500;
}

.video_4918 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.video_4918 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.video_4918 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.video_4918 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.content_6a0f {
  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 === */
.focused_001f {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.tag_dark_029b {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.pattern-b33f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.secondary_39c5 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.secondary_39c5 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.secondary_39c5 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.secondary_39c5 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;
}

.secondary_39c5 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.secondary_39c5 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.title_last_4d9f {
  padding: 3rem 0 5rem;
}

.texture-0343 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.texture-0343.component-cold-cea0 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.carousel-554d {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.input_under_4c48 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.module-a26d {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.module-a26d h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.pagination-a0c0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.wide-5d41 {
  text-align: center;
}

.module-8380 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.large-7511 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.shadow-26aa {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.wood_cd51 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.background_hot_2423 {
  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;
}

.background_hot_2423 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.background_hot_2423:hover {
  box-shadow: var(--shadow-lg);
}

.background_hot_2423.fresh-a9fc {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.background_hot_2423 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.background_hot_2423 ul {
  margin: 1rem 0;
}

.background_hot_2423 li {
  margin-bottom: 0.75rem;
}

.secondary_5411 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.panel-slow-ed43 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.panel-slow-ed43 a {
  font-weight: 600;
}

/* === Data Tables === */
.wide-2302 {
  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;
}

.wide-2302 table {
  width: 100%;
  min-width: 600px;
}

.wide-2302 thead {
  background-color: var(--primary-color);
  color: white;
}

.wide-2302 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.wide-2302 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.wide-2302 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.wide-2302 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.surface_stone_15e2 {
  list-style: none;
  margin: 1.5rem 0;
}

.surface_stone_15e2 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.surface_stone_15e2 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.frame-4b8f::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-f245::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 === */
.icon-gold-e3c1 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.accordion_0d2b {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.accordion_0d2b img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.accordion_0d2b strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.accordion_0d2b span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.icon-gold-e3c1 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.description-old-a257 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.description-old-a257::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.outline_rough_4fb7 {
  position: relative;
  margin-bottom: 3rem;
}

.feature_new_35d0 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.feature_new_35d0 .picture-red-dc51 {
  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;
}

.right_0b5f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.right_0b5f h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.right_0b5f ul {
  margin: 1rem 0;
}

.right_0b5f li {
  margin-bottom: 0.75rem;
}

.block_e6eb {
  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 === */
.icon-da52 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.icon-da52 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.menu-66db {
  list-style: none;
  margin: 1.5rem 0;
}

.menu-66db li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.menu-66db a {
  font-weight: 600;
}

.brown_b0f7 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.preview-fc3f {
  margin: 2.5rem 0;
}

.outline_bd87 {
  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;
}

.outline_bd87:hover {
  box-shadow: var(--shadow-lg);
}

.outline_bd87.message_4259 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.down-7409 {
  flex-shrink: 0;
}

.down-7409 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);
}

.item-5157 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.layout-over-1bbe,
.nav_a78c,
.iron_3297 {
  width: 100%;
  margin: 1.5rem 0;
}

.center-683b {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.center-683b strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.message_tiny_5220 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.message_tiny_5220 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.yellow_ba78 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.yellow_ba78 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.pressed_ba5a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.center_50ea {
  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;
}

.center_50ea:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.center_50ea.grid_pro_c59c {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.center_50ea .badge_green_5d0e {
  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;
}

.center_50ea h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.row_lower_1250 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.surface_8a0c {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.surface_8a0c label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.icon-c351 {
  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 === */
.texture-fixed-7792 {
  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;
}

.layout-527c {
  background-color: var(--primary-color);
  color: white;
}

.layout-527c:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.tabs-be16 {
  background-color: var(--text-secondary);
  color: white;
}

.tabs-be16:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.steel_0271 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.steel_0271:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.title_3afa {
  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;
}

.title_3afa:hover {
  background-color: var(--primary-dark);
}

.focus_focused_0f4f {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.top-dc75 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.description_5a91 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.module_cd82 {
  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 === */
.middle-c2fd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.accordion-77f4 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.accordion-77f4 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.short-62cd {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.slider_cold_fcee {
  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;
}

.link-08d9 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.main-c28c {
  list-style: none;
  counter-reset: rank-counter;
}

.main-c28c li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.main-c28c 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;
}

.short-435f {
  list-style: none;
}

.short-435f li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.next-019c {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.row_fluid_3181 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.row_fluid_3181 .picture_b72c {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.row_fluid_3181 .up_0e44 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.disabled_under_7b3a {
  margin-top: 3rem;
}

.hover-hard-9ada {
  width: 100%;
}

.chip-7931 {
  background-color: #fef3c7;
}

.secondary-298d {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.aside_full_7516 {
  margin: 3rem 0;
}

.preview_full_2ef0 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.grid_931f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.grid_931f:hover {
  box-shadow: var(--shadow-lg);
}

.grid_931f.box-ebf9 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.title-orange-64f0 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.message_6d53 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.message_6d53 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.advanced-31c4 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.grid_931f blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.west-96c0 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.active-silver-5aa4 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.component-4e13 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.dropdown_52bb {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.soft_c31b {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.focused_d08c {
  margin-top: 1rem;
}

/* === FAQ Section === */
.clean_98ec {
  max-width: 900px;
  margin: 0 auto;
}

.tabs_rough_7453 {
  margin: 2rem 0;
}

.button-dirty-7e1c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.button-dirty-7e1c summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.button-dirty-7e1c summary::-webkit-details-marker {
  display: none;
}

.button-dirty-7e1c summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.wrapper-c9bb {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.button-dirty-7e1c[open] .wrapper-c9bb {
  transform: rotate(45deg);
}

.footer_a283 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.footer_a283 p:last-child {
  margin-bottom: 0;
}

.grid_64dd {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.bronze_8304 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.selected_ce08 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.selected_ce08 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.selected_ce08 .texture-fixed-7792 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.pro_94aa {
  max-width: 900px;
  margin: 0 auto;
}

.out_49ac {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.sort-upper-bd81 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.sort-upper-bd81.fn-success-f245 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.lower_7668 {
  font-size: 3rem;
  line-height: 1;
}

.header_purple_5ee8 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.brown_e8f0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.paragraph_29ed,
.mask_601d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.paragraph_29ed h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.mask_601d h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.section-red-12e5,
.picture-clean-f07c {
  margin: 1.5rem 0;
}

.section-red-12e5 li,
.picture-clean-f07c li {
  margin-bottom: 1rem;
}

.link_f0a3 {
  margin: 3rem 0;
}

.action-79d1 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.action-79d1 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.action-79d1 ol {
  margin: 1rem 0;
}

.action-79d1 li {
  margin-bottom: 0.75rem;
}

.yellow-3b1c {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.complex_2254 {
  margin: 2rem 0;
}

.grid-8bbc {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.white_a03c {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.search_bottom_6512 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.secondary_purple_9e89 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.south_a65e {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.cold_98a4 {
  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;
}

.cold_98a4 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.gas-051c {
  flex: 1;
}

.gas-051c h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.center_b2eb {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.prev-e303 p {
  margin-bottom: 1rem;
}

.bronze_5083 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.pink-e54c {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.texture_aeeb {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.texture_aeeb a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.dynamic-37e8 h3 {
  margin-bottom: 1.5rem;
}

.full-03b1 {
  display: grid;
  gap: 2rem;
}

.light_4808 {
  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;
}

.light_4808 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.light_4808 h4 {
  margin: 0 0 0.25rem;
}

.light_4808 p {
  margin: 0;
  font-size: 0.9375rem;
}

.section-d74c {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.pressed_b494 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.pressed_b494 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.pressed_b494 ul {
  margin: 1.5rem 0;
}

.pressed_b494 li {
  margin-bottom: 0.75rem;
}

.mini_8386 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.table_7dab {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.fluid-5c22 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.block_60dd h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.block_60dd p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.motion_3743 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.motion_3743 a {
  color: rgba(255, 255, 255, 0.8);
}

.plasma_b91c {
  list-style: none;
}

.plasma_b91c li {
  margin-bottom: 0.75rem;
}

.plasma_b91c a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.plasma_b91c a:hover {
  color: white;
}

.large_ed60 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.current_aad3 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.content_cc4c {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.short_26cd {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.module_easy_8e57 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .mask_4a22 {
    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;
  }

  .sidebar-b6f7 {
    font-size: 1.5rem !important;
  }

  .box-2e00 {
    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 */
  .background_hot_2423,
  .thumbnail_0cc7,
  .right_0b5f,
  .item-5157,
  .title-orange-64f0,
  .grid_931f,
  .footer_a283,
  .surface-left-e016,
  .pressed-7276,
  .carousel-554d {
    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 */
  .image_a473 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .link-455e {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .summary_stale_b070 {
    flex-shrink: 0;
  }

  .gas-051c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .purple_780a,
  .accent_7eb9 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .accent_7eb9 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .message-cool-9025 {
    display: none;
  }

  /* Show mobile actions */
  .progress-c586 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .huge-f178 {
    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;
  }

  .huge-f178 svg {
    flex-shrink: 0;
  }

  .huge-f178 .slider_44ac {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .huge-f178 .component-a6a4 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .wrapper_cold_fce5 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .message-cfc1 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .huge-f178:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .large-aa10 {
    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;
  }

  .large-aa10.fn-active-f245 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .large-aa10 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .large-aa10 li:last-child {
    border-bottom: none;
  }

  .large-aa10 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .slider-rough-f816 {
    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;
  }

  .slider-rough-f816 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .slider-rough-f816 li:last-child {
    border-bottom: none;
  }

  .slider-rough-f816 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .summary_4730 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .paragraph_1922 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .pattern-85f5,
  .description-soft-6c2a {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .pattern-85f5 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .description-soft-6c2a {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .slider-rough-f816.fn-active-f245 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .huge_d0fd {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .feature_129b {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .dim-e9bf {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .nav-d963 {
    margin-top: 0;
  }

  /* Hero section */
  .nav-d963 {
    padding: 2rem 0 1.5rem;
  }

  .box-2e00 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .pressed-7276 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .overlay_tiny_5f99 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .solid-8153 {
    max-width: 100%;
    border-radius: 8px;
  }

  .carousel-orange-3d26 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .progress-paper-8f1c {
    padding: 1rem;
  }

  .brown-41ca {
    font-size: 1.5rem;
  }

  .bottom-2b5c {
    font-size: 0.75rem;
  }

  .surface-left-e016 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .active-30a1 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .active-30a1 .texture-fixed-7792 {
    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 */
  .pattern-b33f {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .outline_bd87 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .down-7409 {
    margin-bottom: 1rem;
  }

  /* Author */
  .old-ff4d {
    flex-direction: column;
  }

  .cold_98a4 {
    flex-direction: column;
  }

  /* Quotes */
  .title-orange-64f0 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .brown_e8f0 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .secondary_purple_9e89 {
    flex-direction: column;
  }

  .secondary_purple_9e89 .texture-fixed-7792 {
    width: 100%;
  }

  /* Version comparison */
  .pressed_ba5a {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .middle-c2fd {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .fluid-5c22 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content_cc4c {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .wide-2302,
  .nav_a78c,
  .bronze-cb51,
  .hover-hard-9ada,
  .layout-over-1bbe,
  .iron_3297 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .wide-2302 table,
  .nav_a78c table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .icon-c351 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .mask_4a22 {
    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;
  }

  .sidebar-b6f7 {
    font-size: 1.25rem !important;
  }

  .box-2e00 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .feature_129b {
    position: fixed;
  }

  .dim-e9bf {
    padding: 0.625rem 0;
  }

  .layout_4000 img {
    height: 26px;
  }

  .slider-rough-f816 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .large-aa10 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .huge-f178 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .huge-f178 svg {
    width: 18px;
    height: 18px;
  }

  .huge-f178 .slider_44ac {
    font-size: 0.7rem;
  }

  .huge-f178 .component-a6a4 {
    font-size: 0.65rem;
  }

  .pattern-85f5,
  .description-soft-6c2a {
    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, .mask_4a22, .photo_stone_1d8e, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .overlay_tiny_5f99 {
    padding: 1rem;
  }

  .carousel-orange-3d26 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .progress-paper-8f1c {
    padding: 0.875rem;
  }

  .brown-41ca {
    font-size: 1.25rem;
  }

  .active-30a1 .texture-fixed-7792 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .box-2e00 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .texture-fixed-7792 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .focus_focused_0f4f {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .outline_bd87 {
    padding: 1rem;
  }

  .down-7409 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .background_hot_2423,
  .narrow-00ca,
  .tooltip_ba5e,
  .fixed-9c47 {
    padding: 1rem;
  }
}

@media print {
  .feature_129b,
  .focused_001f,
  .huge_d0fd,
  .texture-fixed-7792,
  .table_7dab {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .mask_4a22 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.block_fixed_af53 {
  margin-bottom: 3rem;
  text-align: center;
}

.sidebar-b6f7 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.info-fb38 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.notification_black_43eb,
.chip_up_ae7e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.pro_9426 {
  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;
}

.pro_9426:hover {
  transform: translateY(-5px);
}

.pro_9426 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.pro_9426 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.box_brown_6f86 {
  margin: 3rem 0;
}

.heading_be62 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-f815 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-f815:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.alert_2182 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.slow_3934 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.content-left-87e1 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.filter_d3ce {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.warm_bf71 {
  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;
}

.warm_bf71:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.warm_bf71.accent_cool_9b65 {
  border-left: 4px solid var(--primary-color);
}

.simple-dd43 {
  flex-shrink: 0;
}

.simple-dd43 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.modal_paper_962e {
  flex: 1;
}

.modal_paper_962e h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.hidden_smooth_ef27 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.in_6f1a,
.highlight_mini_fe8a,
.overlay_soft_7b1a {
  margin-bottom: 1.5rem;
}

.in_6f1a h4,
.highlight_mini_fe8a h4,
.overlay_soft_7b1a h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.in_6f1a ul,
.highlight_mini_fe8a ul,
.overlay_soft_7b1a ul {
  list-style: none;
  padding: 0;
}

.in_6f1a li,
.highlight_mini_fe8a li,
.overlay_soft_7b1a li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.in_6f1a li:before,
.highlight_mini_fe8a li:before,
.overlay_soft_7b1a li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.search_e4c6 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.search_e4c6 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;
}

.search_e4c6 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.border-green-f73d { margin: 2rem 0; }
.row_8686 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.row_8686 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.prev-7f42 p { margin-bottom: 1rem; line-height: 1.7; }
.prev-7f42 strong { color: var(--text-primary); }
.prev-7f42 ul { list-style: none; padding-left: 0; }
.prev-7f42 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.prev-7f42 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.heading_9edb { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.hovered_80ed { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.hovered_80ed:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.tabs-brown-a950 { font-size: 3rem; margin-bottom: 1rem; }
.hovered_80ed h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.hovered_80ed p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.filter_1122 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.filter_1122 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.last-a39f { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.box_334b { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.status_04be { text-align: center; }
.button-7e6f { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.middle_138d { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.active_a31f { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.badge_a4ae { margin: 2rem 0; }
.pagination-93e7 { 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-93e7 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.pagination-93e7 p, .pagination-93e7 ul { line-height: 1.7; }
.pagination-93e7 ul { list-style: none; padding-left: 0; }
.pagination-93e7 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.pagination-93e7 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.iron-bb81 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.cool-7ae6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.top-98c5 { text-align: center; }
.dropdown_0651 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.tabs_north_5bce { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.carousel_clean_4b5d { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.highlight-fresh-4b14 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.pattern_yellow_07bb { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.pattern_yellow_07bb:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.pattern_yellow_07bb h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.pattern_yellow_07bb p, .pattern_yellow_07bb ul { line-height: 1.7; }
.pattern_yellow_07bb ul { list-style: none; padding-left: 0; }
.pattern_yellow_07bb ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.pattern_yellow_07bb ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 65eb */
.shadow-element-h8 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.1;
}
