/* ============================================
   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 */
.iron-8ac1 p,
.image_simple_3963,
.slow_0b7d,
.short-b99f,
.element_a084,
.table-last-53be,
.accordion_gold_1a09,
.main_f31d {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.sidebar-c545 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.sidebar-c545 > *,
.alert-40b2,
.iron-8ac1,
.tooltip_44df {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .sidebar-c545 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .sidebar-c545 {
    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 === */
.plasma-74b4 {
  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 */
.plasma-74b4.bright_13d4 {
  box-shadow: var(--shadow-md);
}

.tertiary-310e {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.new-ffe7 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.sidebar-glass-30b5 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.sidebar_gold_7029 {
  display: none;
}

/* Hide mobile actions on desktop */
.form-2bf8 {
  display: none;
}

.info-3aae a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.info-3aae a:hover,
.info-3aae a.fn-active-e75c {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.under_53f5 {
  margin-left: 1rem;
}

.stone-f9a8 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.module_north_fd55,
.description-green-26a4 {
  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;
}

.module_north_fd55 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.module_north_fd55: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-green-26a4 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.description-green-26a4: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;
}

.module_north_fd55 svg,
.description-green-26a4 svg {
  flex-shrink: 0;
}

.form_bright_9aed {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.paragraph-hovered-c143 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.paragraph-hovered-c143::before,
.paragraph-hovered-c143::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.paragraph-hovered-c143::before {
  top: -7px;
}

.paragraph-hovered-c143::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.thick-f7a3 {
  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 === */
.shade_west_cb28 {
  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);
}

.content-dark-be60 {
  margin: 0 0 2rem;
  text-align: center;
}

.primary_outer_6b20 {
  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;
}

.primary_outer_6b20:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.background_west_951c {
  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);
}

.background_west_951c strong {
  color: var(--primary-color);
  font-weight: 700;
}

.card-upper-35e6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.white_e0fc {
  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;
}

.white_e0fc:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.rough-e180 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.feature_tiny_f2f3 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.title_medium_44ee {
  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);
}

.title_medium_44ee .block-6f40 {
  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;
}

.title_medium_44ee .block-6f40 svg {
  flex-shrink: 0;
}

.title_medium_44ee .section-9cff {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.title_medium_44ee .section-9cff: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);
}

.title_medium_44ee .input_down_a2ba {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.title_medium_44ee .input_down_a2ba: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) {
  .shade_west_cb28 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .primary_outer_6b20 {
    max-width: 100%;
  }

  .card-upper-35e6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .white_e0fc {
    padding: 1rem;
  }

  .rough-e180 {
    font-size: 1.5rem;
  }

  .feature_tiny_f2f3 {
    font-size: 0.75rem;
  }

  .background_west_951c {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .title_medium_44ee {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .title_medium_44ee .block-6f40 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .card-upper-35e6 {
    grid-template-columns: 1fr;
  }
}

.tag_dark_e778 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.block_59ce {
  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 === */
.warm-e709 {
  margin-bottom: 2.5rem;
}

.glass_403f {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.tag_dark_e778 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.simple_b4d4 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.status-5a71 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.header-9bec {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.top_a1ca {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.photo_red_9e76 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.cool_ff11 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.mask-4d92 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.mask-4d92 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.container_brown_16c2 {
  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);
}

.heading-4fd9 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.module-dim-7689 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.feature-wide-252e {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.alert_out_561f {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.tall_6f18 {
  display: grid;
  gap: 1rem;
}

.dark_3955 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.container_38e3 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.accent_4c9b {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.tall_1fe3 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.light-f583 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.thumbnail-huge-1cc2 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.thumbnail-huge-1cc2 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.image_simple_3963 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.summary_purple_1460 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.dynamic_8d21 {
  display: grid;
  gap: 2rem;
}

.button_lite_4c31 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.status-5a71 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.simple_b4d4 {
  flex: 1;
}

.top_a1ca {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.top_a1ca a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.section_e572 {
  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;
}

.photo_red_9e76 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.warm-7b05 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.warm-7b05 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.dynamic_97c9 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.dynamic_97c9 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.orange_c576 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.orange_c576 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.orange_c576 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.orange_c576 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.inner_3d5b {
  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 === */
.west-e948 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.filter_375d {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.upper-51d5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pagination_13d2 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.pagination_13d2 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.pagination_13d2 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.pagination_13d2 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;
}

.pagination_13d2 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.pagination_13d2 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.iron-8ac1 {
  padding: 3rem 0 5rem;
}

.tooltip_44df {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.tooltip_44df.header-cedc {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.slow_0b7d {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.logo-small-fff8 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.preview-9fe0 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.preview-9fe0 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.fast_5c08 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.wood_782f {
  text-align: center;
}

.pink-3a5a {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.row_f77c {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.menu_4f42 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.table-last-53be {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.short-b99f {
  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;
}

.short-b99f * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.short-b99f:hover {
  box-shadow: var(--shadow-lg);
}

.short-b99f.list-fe8d {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.short-b99f h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.short-b99f ul {
  margin: 1rem 0;
}

.short-b99f li {
  margin-bottom: 0.75rem;
}

.iron_dbff {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.first-53dd {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.first-53dd a {
  font-weight: 600;
}

/* === Data Tables === */
.message-inner-ddde {
  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;
}

.message-inner-ddde table {
  width: 100%;
  min-width: 600px;
}

.message-inner-ddde thead {
  background-color: var(--primary-color);
  color: white;
}

.message-inner-ddde th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.message-inner-ddde td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.message-inner-ddde tbody tr:hover {
  background-color: var(--bg-secondary);
}

.message-inner-ddde tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.message-plasma-67e8 {
  list-style: none;
  margin: 1.5rem 0;
}

.message-plasma-67e8 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.message-plasma-67e8 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.layout-428f::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-e75c::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 === */
.copper_0e12 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.layout-e00b {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.layout-e00b img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.layout-e00b strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.layout-e00b span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.copper_0e12 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.accordion_gold_1a09 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.accordion_gold_1a09::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.border_static_c503 {
  position: relative;
  margin-bottom: 3rem;
}

.module_6c23 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.module_6c23 .nav-down-f820 {
  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;
}

.small_a525 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.small_a525 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.small_a525 ul {
  margin: 1rem 0;
}

.small_a525 li {
  margin-bottom: 0.75rem;
}

.avatar-wood-dc75 {
  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 === */
.progress-b4da {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.progress-b4da h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.pagination-13ef {
  list-style: none;
  margin: 1.5rem 0;
}

.pagination-13ef li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.pagination-13ef a {
  font-weight: 600;
}

.progress-29de {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.main_f31d {
  margin: 2.5rem 0;
}

.logo-55dd {
  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;
}

.logo-55dd:hover {
  box-shadow: var(--shadow-lg);
}

.logo-55dd.badge_north_fb05 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.tag_db95 {
  flex-shrink: 0;
}

.tag_db95 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);
}

.selected-13a5 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.box_ea0c,
.mask_dfa6,
.info-7ced {
  width: 100%;
  margin: 1.5rem 0;
}

.medium_0d98 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.medium_0d98 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.sort-c5d4 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.sort-c5d4 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.header_south_6465 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.header_south_6465 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.gradient-1908 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.paragraph-next-bdc8 {
  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;
}

.paragraph-next-bdc8:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.paragraph-next-bdc8.notice_yellow_06cb {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.paragraph-next-bdc8 .backdrop-7dda {
  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;
}

.paragraph-next-bdc8 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.column-170e {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.glass_e6f0 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.glass_e6f0 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.label-fixed-c4d4 {
  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 === */
.block-6f40 {
  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;
}

.section-9cff {
  background-color: var(--primary-color);
  color: white;
}

.section-9cff:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.input_down_a2ba {
  background-color: var(--text-secondary);
  color: white;
}

.input_down_a2ba:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.hover_last_9f46 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.hover_last_9f46:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.copper_6cb6 {
  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;
}

.copper_6cb6:hover {
  background-color: var(--primary-dark);
}

.medium-cb36 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.button_bottom_261b {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.tabs_9bf1 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.tabs_34c8 {
  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 === */
.accent-6b07 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.primary_7e11 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.primary_7e11 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.in_6d4e {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.message_b0fb {
  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;
}

.thumbnail_white_223a {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.table_simple_f0f2 {
  list-style: none;
  counter-reset: rank-counter;
}

.table_simple_f0f2 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.table_simple_f0f2 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;
}

.component-basic-babb {
  list-style: none;
}

.component-basic-babb li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.gradient-north-0862 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.backdrop-84cc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.backdrop-84cc .green-1d30 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.backdrop-84cc .module_wide_b7d5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.alert_up_06bb {
  margin-top: 3rem;
}

.huge-4ace {
  width: 100%;
}

.aside-a0bd {
  background-color: #fef3c7;
}

.component-1770 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.focused_ab4f {
  margin: 3rem 0;
}

.component-a7be {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.rough-a901 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.rough-a901:hover {
  box-shadow: var(--shadow-lg);
}

.rough-a901.active-b8a0 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.video_short_ec5a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.image-7e6e strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.image-7e6e span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.thick_3b6f {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.rough-a901 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.green-11af {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.media-2cd2 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.pagination_lite_7095 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.surface_5767 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.lower_74c9 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.border_8b5a {
  margin-top: 1rem;
}

/* === FAQ Section === */
.simple_13d9 {
  max-width: 900px;
  margin: 0 auto;
}

.paragraph_ee86 {
  margin: 2rem 0;
}

.popup-e26f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.popup-e26f summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.popup-e26f summary::-webkit-details-marker {
  display: none;
}

.popup-e26f summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.banner_769a {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.popup-e26f[open] .banner_769a {
  transform: rotate(45deg);
}

.iron-095d {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.iron-095d p:last-child {
  margin-bottom: 0;
}

.module_black_740f {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.gas_b5ff {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.message_dbb7 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.message_dbb7 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.message_dbb7 .block-6f40 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.popup_fluid_2ba8 {
  max-width: 900px;
  margin: 0 auto;
}

.panel_8bb6 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.panel-hard-be84 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.panel-hard-be84.fn-success-e75c {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.image_aab8 {
  font-size: 3rem;
  line-height: 1;
}

.plasma-5c20 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.caption_f109 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.link_black_e2c8,
.input-26be {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.link_black_e2c8 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.input-26be h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.module_yellow_b8da,
.component_large_fb23 {
  margin: 1.5rem 0;
}

.module_yellow_b8da li,
.component_large_fb23 li {
  margin-bottom: 1rem;
}

.basic_b6f3 {
  margin: 3rem 0;
}

.item_8641 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.item_8641 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.item_8641 ol {
  margin: 1rem 0;
}

.item_8641 li {
  margin-bottom: 0.75rem;
}

.bottom-7d23 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.pattern-pressed-3c56 {
  margin: 2rem 0;
}

.sidebar-a547 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.copper-8ea7 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.image-south-4271 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.bright-50e3 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.next_742c {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.shade_dark_4900 {
  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;
}

.shade_dark_4900 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.header-9bec {
  flex: 1;
}

.header-9bec h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.in_458b {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.focus-right-9981 p {
  margin-bottom: 1rem;
}

.accordion_1412 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.medium-adce {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.section_9646 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.section_9646 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.input-014e h3 {
  margin-bottom: 1.5rem;
}

.layout-thick-eb17 {
  display: grid;
  gap: 2rem;
}

.shadow-7ee7 {
  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;
}

.shadow-7ee7 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.shadow-7ee7 h4 {
  margin: 0 0 0.25rem;
}

.shadow-7ee7 p {
  margin: 0;
  font-size: 0.9375rem;
}

.gallery_9286 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.media-6cb9 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.media-6cb9 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.media-6cb9 ul {
  margin: 1.5rem 0;
}

.media-6cb9 li {
  margin-bottom: 0.75rem;
}

.lower-202f {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.status-out-746c {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.list_3c27 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.module_25ba h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.module_25ba p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.layout_d470 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.layout_d470 a {
  color: rgba(255, 255, 255, 0.8);
}

.fluid-dd57 {
  list-style: none;
}

.fluid-dd57 li {
  margin-bottom: 0.75rem;
}

.fluid-dd57 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.fluid-dd57 a:hover {
  color: white;
}

.static_36fd {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.wrapper-brown-b682 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.grid-over-7d54 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.filter_e78a {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.accent-d919 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .sidebar-c545 {
    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;
  }

  .next_9430 {
    font-size: 1.5rem !important;
  }

  .glass_403f {
    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 */
  .short-b99f,
  .element_a084,
  .small_a525,
  .selected-13a5,
  .video_short_ec5a,
  .rough-a901,
  .iron-095d,
  .background_west_951c,
  .image_simple_3963,
  .slow_0b7d {
    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 */
  .tag_dark_e778 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .simple_b4d4 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .status-5a71 {
    flex-shrink: 0;
  }

  .header-9bec {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .top_a1ca,
  .photo_red_9e76 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .photo_red_9e76 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .sidebar-glass-30b5 {
    display: none;
  }

  /* Show mobile actions */
  .form-2bf8 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .panel-b7fd {
    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;
  }

  .panel-b7fd svg {
    flex-shrink: 0;
  }

  .panel-b7fd .progress-6866 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .panel-b7fd .breadcrumb-wood-1d4b {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .frame_thick_1c3f {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .table_static_734c {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .panel-b7fd:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .sidebar_gold_7029 {
    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;
  }

  .sidebar_gold_7029.fn-active-e75c {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .sidebar_gold_7029 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .sidebar_gold_7029 li:last-child {
    border-bottom: none;
  }

  .sidebar_gold_7029 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .info-3aae {
    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;
  }

  .info-3aae li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .info-3aae li:last-child {
    border-bottom: none;
  }

  .info-3aae a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .under_53f5 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .stone-f9a8 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .module_north_fd55,
  .description-green-26a4 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .module_north_fd55 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .description-green-26a4 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .info-3aae.fn-active-e75c {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .form_bright_9aed {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .plasma-74b4 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .tertiary-310e {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .thick-f7a3 {
    margin-top: 0;
  }

  /* Hero section */
  .thick-f7a3 {
    padding: 2rem 0 1.5rem;
  }

  .glass_403f {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .image_simple_3963 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .shade_west_cb28 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .primary_outer_6b20 {
    max-width: 100%;
    border-radius: 8px;
  }

  .card-upper-35e6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .white_e0fc {
    padding: 1rem;
  }

  .rough-e180 {
    font-size: 1.5rem;
  }

  .feature_tiny_f2f3 {
    font-size: 0.75rem;
  }

  .background_west_951c {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .title_medium_44ee {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .title_medium_44ee .block-6f40 {
    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 */
  .upper-51d5 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .logo-55dd {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .tag_db95 {
    margin-bottom: 1rem;
  }

  /* Author */
  .button_lite_4c31 {
    flex-direction: column;
  }

  .shade_dark_4900 {
    flex-direction: column;
  }

  /* Quotes */
  .video_short_ec5a {
    flex-direction: column;
  }

  /* Pros/Cons */
  .caption_f109 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .bright-50e3 {
    flex-direction: column;
  }

  .bright-50e3 .block-6f40 {
    width: 100%;
  }

  /* Version comparison */
  .gradient-1908 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .accent-6b07 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .list_3c27 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .grid-over-7d54 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .message-inner-ddde,
  .mask_dfa6,
  .pink-e970,
  .huge-4ace,
  .box_ea0c,
  .info-7ced {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .message-inner-ddde table,
  .mask_dfa6 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .label-fixed-c4d4 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .sidebar-c545 {
    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;
  }

  .next_9430 {
    font-size: 1.25rem !important;
  }

  .glass_403f {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .plasma-74b4 {
    position: fixed;
  }

  .tertiary-310e {
    padding: 0.625rem 0;
  }

  .new-ffe7 img {
    height: 26px;
  }

  .info-3aae {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .sidebar_gold_7029 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .panel-b7fd {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .panel-b7fd svg {
    width: 18px;
    height: 18px;
  }

  .panel-b7fd .progress-6866 {
    font-size: 0.7rem;
  }

  .panel-b7fd .breadcrumb-wood-1d4b {
    font-size: 0.65rem;
  }

  .module_north_fd55,
  .description-green-26a4 {
    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, .sidebar-c545, .alert-40b2, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .shade_west_cb28 {
    padding: 1rem;
  }

  .card-upper-35e6 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .white_e0fc {
    padding: 0.875rem;
  }

  .rough-e180 {
    font-size: 1.25rem;
  }

  .title_medium_44ee .block-6f40 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .glass_403f {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .block-6f40 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .medium-cb36 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .logo-55dd {
    padding: 1rem;
  }

  .tag_db95 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .short-b99f,
  .brown-9434,
  .top_15ed,
  .table_8a91 {
    padding: 1rem;
  }
}

@media print {
  .plasma-74b4,
  .west-e948,
  .form_bright_9aed,
  .block-6f40,
  .status-out-746c {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .sidebar-c545 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.stone_165b {
  margin-bottom: 3rem;
  text-align: center;
}

.next_9430 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.focused_7f33 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.yellow_bfcd,
.advanced_426e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.full-1381 {
  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;
}

.full-1381:hover {
  transform: translateY(-5px);
}

.full-1381 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.full-1381 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.badge-8ca9 {
  margin: 3rem 0;
}

.alert-steel-39f0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.hovered_e185 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.hovered_e185:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.widget_aeb2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.solid_d7ec {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.wrapper_thick_d1bc {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.title_e6ac {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.active_dark_c400 {
  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;
}

.active_dark_c400:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.active_dark_c400.hover_gas_9f33 {
  border-left: 4px solid var(--primary-color);
}

.heading_steel_f15f {
  flex-shrink: 0;
}

.heading_steel_f15f svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.input_6c24 {
  flex: 1;
}

.input_6c24 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.filter-0f84 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.north_01f1,
.shadow-top-4881,
.layout-6ad9 {
  margin-bottom: 1.5rem;
}

.north_01f1 h4,
.shadow-top-4881 h4,
.layout-6ad9 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.north_01f1 ul,
.shadow-top-4881 ul,
.layout-6ad9 ul {
  list-style: none;
  padding: 0;
}

.north_01f1 li,
.shadow-top-4881 li,
.layout-6ad9 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.north_01f1 li:before,
.shadow-top-4881 li:before,
.layout-6ad9 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.hot_c66c {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hot_c66c 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;
}

.hot_c66c a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.hover-9aed { margin: 2rem 0; }
.caption_static_e4a0 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.caption_static_e4a0 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.status-67fd p { margin-bottom: 1rem; line-height: 1.7; }
.status-67fd strong { color: var(--text-primary); }
.status-67fd ul { list-style: none; padding-left: 0; }
.status-67fd ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.status-67fd ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.upper-ed62 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.avatar_hot_465d { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.avatar_hot_465d:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.pagination-black-2118 { font-size: 3rem; margin-bottom: 1rem; }
.avatar_hot_465d h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.avatar_hot_465d p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.row-ab35 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.row-ab35 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.tertiary-old-6847 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.notice-fluid-484b { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.feature_c9b6 { text-align: center; }
.slider_cool_a6cb { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.button-rough-8942 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.current_ab44 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.right_408c { margin: 2rem 0; }
.preview-fluid-a15a { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.preview-fluid-a15a h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.preview-fluid-a15a p, .preview-fluid-a15a ul { line-height: 1.7; }
.preview-fluid-a15a ul { list-style: none; padding-left: 0; }
.preview-fluid-a15a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.preview-fluid-a15a ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.image-6e53 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.rough-172a { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.grid-cold-7d16 { text-align: center; }
.shade-inner-95cf { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.media-32a8 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.breadcrumb-4f46 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.motion-cbe9 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.gallery_narrow_43ec { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.gallery_narrow_43ec:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.gallery_narrow_43ec h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.gallery_narrow_43ec p, .gallery_narrow_43ec ul { line-height: 1.7; }
.gallery_narrow_43ec ul { list-style: none; padding-left: 0; }
.gallery_narrow_43ec ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.gallery_narrow_43ec ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 1add */
.shadow-element-q8 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.2;
}
