/* ============================================
   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 */
.blue-609a p,
.purple-aa67,
.section_f632,
.glass_a6bf,
.soft-90a7,
.article_full_9b2e,
.pink-eb70,
.badge-5fd4 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.image-thick-976c {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.image-thick-976c > *,
.solid-dd48,
.blue-609a,
.upper-2517 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .image-thick-976c {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .image-thick-976c {
    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 === */
.notice_advanced_7e98 {
  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 */
.notice_advanced_7e98.notification_7dfa {
  box-shadow: var(--shadow-md);
}

.article_30be {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.backdrop-b826 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.yellow_c6c8 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.notice-a2b9 {
  display: none;
}

/* Hide mobile actions on desktop */
.lower_538c {
  display: none;
}

.last-2fb7 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.last-2fb7 a:hover,
.last-2fb7 a.fn-active-4f34 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.active_ae83 {
  margin-left: 1rem;
}

.section_next_e067 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.mask_380c,
.table-e9b4 {
  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;
}

.mask_380c {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.mask_380c: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;
}

.table-e9b4 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.table-e9b4: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;
}

.mask_380c svg,
.table-e9b4 svg {
  flex-shrink: 0;
}

.avatar_warm_4887 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.info-eb8b {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.info-eb8b::before,
.info-eb8b::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.info-eb8b::before {
  top: -7px;
}

.info-eb8b::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.notice_bronze_999f {
  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 === */
.pattern-fde1 {
  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);
}

.module-278c {
  margin: 0 0 2rem;
  text-align: center;
}

.link-a2a4 {
  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;
}

.link-a2a4:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.input_7fff {
  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);
}

.input_7fff strong {
  color: var(--primary-color);
  font-weight: 700;
}

.form-0c74 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.secondary-82f6 {
  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;
}

.secondary-82f6:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.badge-58f4 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stale_37fc {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.description_19af {
  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);
}

.description_19af .hovered_bb8b {
  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;
}

.description_19af .hovered_bb8b svg {
  flex-shrink: 0;
}

.description_19af .accent-thick-0d90 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.description_19af .accent-thick-0d90: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);
}

.description_19af .dim-839c {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.description_19af .dim-839c: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) {
  .pattern-fde1 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .link-a2a4 {
    max-width: 100%;
  }

  .form-0c74 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .secondary-82f6 {
    padding: 1rem;
  }

  .badge-58f4 {
    font-size: 1.5rem;
  }

  .stale_37fc {
    font-size: 0.75rem;
  }

  .input_7fff {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .description_19af {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .description_19af .hovered_bb8b {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .form-0c74 {
    grid-template-columns: 1fr;
  }
}

.background_29e4 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.paper_d8d4 {
  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 === */
.status-8085 {
  margin-bottom: 2.5rem;
}

.breadcrumb-narrow-ef34 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.background_29e4 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.label_6768 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.label-liquid-3103 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.focused-ab68 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.simple-593d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.list-lower-8560 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.last-83f4 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.black-2494 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.black-2494 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.video_a25f {
  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);
}

.paragraph_north_dda6 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.focus-342f {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.caption-171f {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.hover-basic-3272 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.summary-6c33 {
  display: grid;
  gap: 1rem;
}

.thick_bad6 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.outer_8658 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.block_orange_ab52 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.module_bright_28d9 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.icon-ef5a {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.disabled-c462 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.disabled-c462 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.purple-aa67 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.steel-2a72 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.left-ffba {
  display: grid;
  gap: 2rem;
}

.caption_8228 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.label-liquid-3103 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.label_6768 {
  flex: 1;
}

.simple-593d {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.simple-593d a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.outline-6f13 {
  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;
}

.list-lower-8560 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.first-129d {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.first-129d span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.hard-f2ea {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.hard-f2ea a {
  font-size: 0.875rem;
  font-weight: 500;
}

.chip-tall-4aa6 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.chip-tall-4aa6 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.chip-tall-4aa6 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.chip-tall-4aa6 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.frame-east-ba34 {
  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 === */
.container-short-925a {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.wood_e981 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.slider-e713 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.over-d189 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.over-d189 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.over-d189 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.over-d189 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;
}

.over-d189 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.over-d189 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.blue-609a {
  padding: 3rem 0 5rem;
}

.upper-2517 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.upper-2517.focused-185b {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.section_f632 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.wrapper_57a1 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.heading-in-df20 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.heading-in-df20 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.breadcrumb_a1f8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.basic_b0f0 {
  text-align: center;
}

.card-0fc5 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.sidebar-fafe {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.tiny_463d {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.article_full_9b2e {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.glass_a6bf {
  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;
}

.glass_a6bf * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.glass_a6bf:hover {
  box-shadow: var(--shadow-lg);
}

.glass_a6bf.card_1f82 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.glass_a6bf h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.glass_a6bf ul {
  margin: 1rem 0;
}

.glass_a6bf li {
  margin-bottom: 0.75rem;
}

.footer_77a8 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.outline_upper_2304 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.outline_upper_2304 a {
  font-weight: 600;
}

/* === Data Tables === */
.footer-light-e667 {
  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;
}

.footer-light-e667 table {
  width: 100%;
  min-width: 600px;
}

.footer-light-e667 thead {
  background-color: var(--primary-color);
  color: white;
}

.footer-light-e667 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.footer-light-e667 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.footer-light-e667 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.footer-light-e667 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.glass_2c19 {
  list-style: none;
  margin: 1.5rem 0;
}

.glass_2c19 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.glass_2c19 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.accordion-tiny-4447::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-4f34::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 === */
.brown-d652 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.carousel_fa75 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.carousel_fa75 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.carousel_fa75 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.carousel_fa75 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.brown-d652 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.pink-eb70 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.pink-eb70::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.west-4f47 {
  position: relative;
  margin-bottom: 3rem;
}

.narrow-3562 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.narrow-3562 .sort-238d {
  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;
}

.clean-8a4f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.clean-8a4f h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.clean-8a4f ul {
  margin: 1rem 0;
}

.clean-8a4f li {
  margin-bottom: 0.75rem;
}

.south-e412 {
  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 === */
.content_243b {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.content_243b h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.notification_7c31 {
  list-style: none;
  margin: 1.5rem 0;
}

.notification_7c31 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.notification_7c31 a {
  font-weight: 600;
}

.progress_b54c {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.badge-5fd4 {
  margin: 2.5rem 0;
}

.motion-97ff {
  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;
}

.motion-97ff:hover {
  box-shadow: var(--shadow-lg);
}

.motion-97ff.container-new-f39c {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.paragraph_hard_9b5e {
  flex-shrink: 0;
}

.paragraph_hard_9b5e 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);
}

.element-56e5 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.old-53fd,
.glass_9675,
.box-motion-9740 {
  width: 100%;
  margin: 1.5rem 0;
}

.brown_93b2 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.brown_93b2 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.south-34d3 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.south-34d3 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.item-south-d23b {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.item-south-d23b strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.smooth_3cae {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.old_9616 {
  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;
}

.old_9616:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.old_9616.banner-stone-a2f5 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.old_9616 .preview_54ba {
  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;
}

.old_9616 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.frame-simple-ba27 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.paragraph_3054 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.paragraph_3054 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.image-2a5c {
  display: block;
  font-family: 'Consolas', monospace;
  font-size: 0.75rem;
  color: var(--accent-color);
  word-break: break-all;
  padding: 0.75rem;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

/* === Buttons === */
.hovered_bb8b {
  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;
}

.accent-thick-0d90 {
  background-color: var(--primary-color);
  color: white;
}

.accent-thick-0d90:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.dim-839c {
  background-color: var(--text-secondary);
  color: white;
}

.dim-839c:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.media_95c0 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.media_95c0:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.hidden-copper-f6f7 {
  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;
}

.hidden-copper-f6f7:hover {
  background-color: var(--primary-dark);
}

.table-6b71 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.backdrop_1a46 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.notice-large-3fda {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.table_gold_d364 {
  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 === */
.main-lite-bf22 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.message_dirty_7e5d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.message_dirty_7e5d h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.gradient_4157 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.current-6158 {
  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;
}

.left-94a8 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.notice_03bb {
  list-style: none;
  counter-reset: rank-counter;
}

.notice_03bb li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.notice_03bb 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;
}

.inner_68da {
  list-style: none;
}

.inner_68da li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.dark-9f96 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.purple_4aa0 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.purple_4aa0 .inner-942a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.purple_4aa0 .north-f5fe {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.title_3515 {
  margin-top: 3rem;
}

.badge-inner-3be1 {
  width: 100%;
}

.feature_f236 {
  background-color: #fef3c7;
}

.simple-0f7b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.component_83cf {
  margin: 3rem 0;
}

.panel-01aa {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.header_95ab {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.header_95ab:hover {
  box-shadow: var(--shadow-lg);
}

.header_95ab.hero_0b2a {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.box-stone-7d02 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.blue-9ef0 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.blue-9ef0 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.icon_44b7 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.header_95ab blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.mask_e06d {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.media-steel-771f {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.header_488e {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.tiny_4ba5 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.article-light-8573 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.description_yellow_333f {
  margin-top: 1rem;
}

/* === FAQ Section === */
.highlight_f6bb {
  max-width: 900px;
  margin: 0 auto;
}

.thumbnail_motion_acb8 {
  margin: 2rem 0;
}

.pattern_4c61 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.pattern_4c61 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.pattern_4c61 summary::-webkit-details-marker {
  display: none;
}

.pattern_4c61 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.iron_3f43 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.pattern_4c61[open] .iron_3f43 {
  transform: rotate(45deg);
}

.label-large-63ab {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.label-large-63ab p:last-child {
  margin-bottom: 0;
}

.video_e3de {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.background_east_4c47 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.title-e36a {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.title-e36a p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.title-e36a .hovered_bb8b {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.layout_gas_d82d {
  max-width: 900px;
  margin: 0 auto;
}

.outline_1b90 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.article_large_8c4d {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.article_large_8c4d.fn-success-4f34 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.menu-d998 {
  font-size: 3rem;
  line-height: 1;
}

.down-657a h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.label_south_8d90 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.large-2e83,
.dropdown_ecdb {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.large-2e83 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.dropdown_ecdb h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.progress_0b40,
.badge-red-bf76 {
  margin: 1.5rem 0;
}

.progress_0b40 li,
.badge-red-bf76 li {
  margin-bottom: 1rem;
}

.accordion_top_ed89 {
  margin: 3rem 0;
}

.cool_3fd2 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.cool_3fd2 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.cool_3fd2 ol {
  margin: 1rem 0;
}

.cool_3fd2 li {
  margin-bottom: 0.75rem;
}

.copper_4757 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.fluid_807c {
  margin: 2rem 0;
}

.status-huge-9b8a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.preview_purple_87e7 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.form_blue_5cff {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.aside-b929 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.backdrop_wide_a7d3 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.hot-1a26 {
  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;
}

.hot-1a26 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.focused-ab68 {
  flex: 1;
}

.focused-ab68 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.accent-hovered-e325 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.menu-steel-041a p {
  margin-bottom: 1rem;
}

.text_afad {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.surface-glass-35cb {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.shadow-ea5b {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.shadow-ea5b a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.overlay-red-a1e0 h3 {
  margin-bottom: 1.5rem;
}

.middle_0736 {
  display: grid;
  gap: 2rem;
}

.center-a835 {
  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;
}

.center-a835 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.center-a835 h4 {
  margin: 0 0 0.25rem;
}

.center-a835 p {
  margin: 0;
  font-size: 0.9375rem;
}

.detail_bronze_8bd2 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.tertiary_1fdd {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.tertiary_1fdd h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.tertiary_1fdd ul {
  margin: 1.5rem 0;
}

.tertiary_1fdd li {
  margin-bottom: 0.75rem;
}

.notification_dark_4d12 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.notification_new_ff10 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.complex_a089 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.description_173c h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.description_173c p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.grid_gold_6f21 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.grid_gold_6f21 a {
  color: rgba(255, 255, 255, 0.8);
}

.sort-e11f {
  list-style: none;
}

.sort-e11f li {
  margin-bottom: 0.75rem;
}

.sort-e11f a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.sort-e11f a:hover {
  color: white;
}

.title_13e2 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.pressed-1b77 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.out_12aa {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.block-lite-c4c4 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.section-bronze-5723 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .image-thick-976c {
    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;
  }

  .mask_thick_c36b {
    font-size: 1.5rem !important;
  }

  .breadcrumb-narrow-ef34 {
    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 */
  .glass_a6bf,
  .soft-90a7,
  .clean-8a4f,
  .element-56e5,
  .box-stone-7d02,
  .header_95ab,
  .label-large-63ab,
  .input_7fff,
  .purple-aa67,
  .section_f632 {
    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 */
  .background_29e4 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .label_6768 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .label-liquid-3103 {
    flex-shrink: 0;
  }

  .focused-ab68 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .simple-593d,
  .list-lower-8560 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .list-lower-8560 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .yellow_c6c8 {
    display: none;
  }

  /* Show mobile actions */
  .lower_538c {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .medium-d1ac {
    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;
  }

  .medium-d1ac svg {
    flex-shrink: 0;
  }

  .medium-d1ac .backdrop_36a3 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .medium-d1ac .alert_brown_2f21 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .texture_c524 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .progress_4dc0 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .medium-d1ac:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .notice-a2b9 {
    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;
  }

  .notice-a2b9.fn-active-4f34 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .notice-a2b9 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .notice-a2b9 li:last-child {
    border-bottom: none;
  }

  .notice-a2b9 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .last-2fb7 {
    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;
  }

  .last-2fb7 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .last-2fb7 li:last-child {
    border-bottom: none;
  }

  .last-2fb7 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .active_ae83 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .section_next_e067 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .mask_380c,
  .table-e9b4 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .mask_380c {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .table-e9b4 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .last-2fb7.fn-active-4f34 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .avatar_warm_4887 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .notice_advanced_7e98 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .article_30be {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .notice_bronze_999f {
    margin-top: 0;
  }

  /* Hero section */
  .notice_bronze_999f {
    padding: 2rem 0 1.5rem;
  }

  .breadcrumb-narrow-ef34 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .purple-aa67 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .pattern-fde1 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .link-a2a4 {
    max-width: 100%;
    border-radius: 8px;
  }

  .form-0c74 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .secondary-82f6 {
    padding: 1rem;
  }

  .badge-58f4 {
    font-size: 1.5rem;
  }

  .stale_37fc {
    font-size: 0.75rem;
  }

  .input_7fff {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .description_19af {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .description_19af .hovered_bb8b {
    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 */
  .slider-e713 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .motion-97ff {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .paragraph_hard_9b5e {
    margin-bottom: 1rem;
  }

  /* Author */
  .caption_8228 {
    flex-direction: column;
  }

  .hot-1a26 {
    flex-direction: column;
  }

  /* Quotes */
  .box-stone-7d02 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .label_south_8d90 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .aside-b929 {
    flex-direction: column;
  }

  .aside-b929 .hovered_bb8b {
    width: 100%;
  }

  /* Version comparison */
  .smooth_3cae {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .main-lite-bf22 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .complex_a089 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .out_12aa {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .footer-light-e667,
  .glass_9675,
  .north-f377,
  .badge-inner-3be1,
  .old-53fd,
  .box-motion-9740 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .footer-light-e667 table,
  .glass_9675 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .image-2a5c {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .image-thick-976c {
    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;
  }

  .mask_thick_c36b {
    font-size: 1.25rem !important;
  }

  .breadcrumb-narrow-ef34 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .notice_advanced_7e98 {
    position: fixed;
  }

  .article_30be {
    padding: 0.625rem 0;
  }

  .backdrop-b826 img {
    height: 26px;
  }

  .last-2fb7 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .notice-a2b9 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .medium-d1ac {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .medium-d1ac svg {
    width: 18px;
    height: 18px;
  }

  .medium-d1ac .backdrop_36a3 {
    font-size: 0.7rem;
  }

  .medium-d1ac .alert_brown_2f21 {
    font-size: 0.65rem;
  }

  .mask_380c,
  .table-e9b4 {
    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, .image-thick-976c, .solid-dd48, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .pattern-fde1 {
    padding: 1rem;
  }

  .form-0c74 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .secondary-82f6 {
    padding: 0.875rem;
  }

  .badge-58f4 {
    font-size: 1.25rem;
  }

  .description_19af .hovered_bb8b {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .breadcrumb-narrow-ef34 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .hovered_bb8b {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .table-6b71 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .motion-97ff {
    padding: 1rem;
  }

  .paragraph_hard_9b5e span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .glass_a6bf,
  .pattern-b962,
  .shadow_right_3792,
  .module_fixed_2675 {
    padding: 1rem;
  }
}

@media print {
  .notice_advanced_7e98,
  .container-short-925a,
  .avatar_warm_4887,
  .hovered_bb8b,
  .notification_new_ff10 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .image-thick-976c {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.primary-inner-7c10 {
  margin-bottom: 3rem;
  text-align: center;
}

.mask_thick_c36b {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.dim-6595 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.backdrop_6155,
.current-dffa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.text-76b8 {
  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;
}

.text-76b8:hover {
  transform: translateY(-5px);
}

.text-76b8 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.text-76b8 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.component-copper-46b6 {
  margin: 3rem 0;
}

.thumbnail-61a3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.tag_354b {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.tag_354b:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.sidebar_north_52f1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.shade_green_ec3f {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.pattern_24da {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.focused_8a57 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.tabs_16f8 {
  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;
}

.tabs_16f8:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.tabs_16f8.active-9f95 {
  border-left: 4px solid var(--primary-color);
}

.alert_8fb1 {
  flex-shrink: 0;
}

.alert_8fb1 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.thick_6422 {
  flex: 1;
}

.thick_6422 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.container_46e3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.tabs_easy_46c3,
.mini_d233,
.frame_9998 {
  margin-bottom: 1.5rem;
}

.tabs_easy_46c3 h4,
.mini_d233 h4,
.frame_9998 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tabs_easy_46c3 ul,
.mini_d233 ul,
.frame_9998 ul {
  list-style: none;
  padding: 0;
}

.tabs_easy_46c3 li,
.mini_d233 li,
.frame_9998 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.tabs_easy_46c3 li:before,
.mini_d233 li:before,
.frame_9998 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.logo-blue-c3b9 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.logo-blue-c3b9 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;
}

.logo-blue-c3b9 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.thumbnail-copper-a055 { margin: 2rem 0; }
.header_8619 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.header_8619 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.surface-motion-2fc6 p { margin-bottom: 1rem; line-height: 1.7; }
.surface-motion-2fc6 strong { color: var(--text-primary); }
.surface-motion-2fc6 ul { list-style: none; padding-left: 0; }
.surface-motion-2fc6 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.surface-motion-2fc6 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.header-paper-f912 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.caption_9f85 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.caption_9f85:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.footer-2d20 { font-size: 3rem; margin-bottom: 1rem; }
.caption_9f85 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.caption_9f85 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.texture-next-14ea { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.texture-next-14ea span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.section_0d24 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.modal-7d95 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.full_e627 { text-align: center; }
.avatar-slow-93ff { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.badge-east-3b19 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.search-f5f5 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.current-ae1f { margin: 2rem 0; }
.progress_prev_8de0 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.progress_prev_8de0 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.progress_prev_8de0 p, .progress_prev_8de0 ul { line-height: 1.7; }
.progress_prev_8de0 ul { list-style: none; padding-left: 0; }
.progress_prev_8de0 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.progress_prev_8de0 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.focused-7c3e { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.last_b2eb { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.overlay_c337 { text-align: center; }
.hero_slow_9a91 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.search-red-6482 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.pattern-medium-780b { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.thumbnail_e774 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.soft-b41a { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.soft-b41a:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.soft-b41a h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.soft-b41a p, .soft-b41a ul { line-height: 1.7; }
.soft-b41a ul { list-style: none; padding-left: 0; }
.soft-b41a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.soft-b41a ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 6f65 */
.widget-item-s2 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.2;
}
