/* ============================================
   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 */
.link-6638 p,
.bronze-5d1c,
.rough-31e0,
.mask-ca45,
.video_lower_a1a3,
.pattern_motion_ef3a,
.modal-basic-bfec,
.basic_70bc {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.block_33ab {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.block_33ab > *,
.row-0c11,
.link-6638,
.outline_action_0dd9 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .block_33ab {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .block_33ab {
    padding: 0 1rem;
  }
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  letter-spacing: -0.015em;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.25rem;
}

strong {
  font-weight: 600;
  color: var(--text-primary);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

code {
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 0.875em;
  background-color: var(--bg-tertiary);
  padding: 0.2em 0.4em;
  border-radius: 3px;
  color: var(--accent-color);
}

pre {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid var(--border-color);
}

pre code {
  background: none;
  padding: 0;
  color: var(--text-primary);
}

/* === Header/Navigation === */
.feature_7b8b {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

/* Enhance shadow when scrolled */
.feature_7b8b.paragraph_0095 {
  box-shadow: var(--shadow-md);
}

.notification_0487 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.tertiary-e05b img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.box_first_03ca {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.icon_3678 {
  display: none;
}

/* Hide mobile actions on desktop */
.component-54b5 {
  display: none;
}

.north-3a98 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.north-3a98 a:hover,
.north-3a98 a.fn-active-d0ab {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.gradient_5920 {
  margin-left: 1rem;
}

.copper-9d8b {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.picture_8089,
.card-6b07 {
  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;
}

.picture_8089 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.picture_8089: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;
}

.card-6b07 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.card-6b07: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;
}

.picture_8089 svg,
.card-6b07 svg {
  flex-shrink: 0;
}

.filter_d89c {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.easy_5fcb {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.easy_5fcb::before,
.easy_5fcb::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.easy_5fcb::before {
  top: -7px;
}

.easy_5fcb::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.banner_dim_56be {
  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 === */
.west_e58a {
  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);
}

.filter-8346 {
  margin: 0 0 2rem;
  text-align: center;
}

.grid_34a0 {
  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;
}

.grid_34a0:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.last-d7f1 {
  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);
}

.last-d7f1 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.upper_6e4e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.rough-d29a {
  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;
}

.rough-d29a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.main-8542 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.avatar-active-c20f {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.paragraph_51c8 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.paragraph_51c8 .last-4fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.paragraph_51c8 .last-4fab svg {
  flex-shrink: 0;
}

.paragraph_51c8 .background_basic_cb73 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.paragraph_51c8 .background_basic_cb73:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a8a 100%);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

.paragraph_51c8 .dynamic-8bb0 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.paragraph_51c8 .dynamic-8bb0: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) {
  .west_e58a {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .grid_34a0 {
    max-width: 100%;
  }

  .upper_6e4e {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .rough-d29a {
    padding: 1rem;
  }

  .main-8542 {
    font-size: 1.5rem;
  }

  .avatar-active-c20f {
    font-size: 0.75rem;
  }

  .last-d7f1 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .paragraph_51c8 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .paragraph_51c8 .last-4fab {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .upper_6e4e {
    grid-template-columns: 1fr;
  }
}

.avatar-plasma-5ff1 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.disabled-eabf {
  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 === */
.widget_pink_39cf {
  margin-bottom: 2.5rem;
}

.chip-fixed-c0ce {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.avatar-plasma-5ff1 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.component-7f4a {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.notification_b707 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.frame_ea57 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.breadcrumb_tiny_268a {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.text-large-8a74 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.silver-37f9 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.item-new-4dd1 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.item-new-4dd1 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.secondary_cead {
  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);
}

.link_8f92 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.wide_fdaa {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.panel-south-dc96 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.panel_motion_5b76 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.progress-out-bdd5 {
  display: grid;
  gap: 1rem;
}

.box_3268 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.pagination_hard_9636 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.logo-713b {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.last-e864 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.breadcrumb-clean-2dc3 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.new_b408 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.new_b408 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.bronze-5d1c {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.dynamic-837b {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.progress_left_77ff {
  display: grid;
  gap: 2rem;
}

.icon-prev-b3b9 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.notification_b707 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.component-7f4a {
  flex: 1;
}

.breadcrumb_tiny_268a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.breadcrumb_tiny_268a a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.notice_left_0dba {
  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;
}

.text-large-8a74 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.alert_8963 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.alert_8963 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.video_fdcb {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.video_fdcb a {
  font-size: 0.875rem;
  font-weight: 500;
}

.pattern-solid-71e1 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.pattern-solid-71e1 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.pattern-solid-71e1 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pattern-solid-71e1 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.first-1a03 {
  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 === */
.modal_pressed_c673 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.widget-aaf6 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.media-80a3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.copper_4ccf h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.copper_4ccf ol {
  list-style: none;
  counter-reset: toc-counter;
}

.copper_4ccf ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.copper_4ccf 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;
}

.copper_4ccf ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.copper_4ccf ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.link-6638 {
  padding: 3rem 0 5rem;
}

.outline_action_0dd9 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.outline_action_0dd9.next-c840 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.rough-31e0 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.module_gold_d247 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.medium_54bd {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.medium_54bd h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.gradient_c3cb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.pro-fb6e {
  text-align: center;
}

.gradient_inner_2210 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.south_8816 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.frame_iron_eee8 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.pattern_motion_ef3a {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.mask-ca45 {
  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;
}

.mask-ca45 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.mask-ca45:hover {
  box-shadow: var(--shadow-lg);
}

.mask-ca45.warm-1948 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.mask-ca45 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.mask-ca45 ul {
  margin: 1rem 0;
}

.mask-ca45 li {
  margin-bottom: 0.75rem;
}

.top-40ba {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.image-1f14 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.image-1f14 a {
  font-weight: 600;
}

/* === Data Tables === */
.paragraph-4720 {
  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;
}

.paragraph-4720 table {
  width: 100%;
  min-width: 600px;
}

.paragraph-4720 thead {
  background-color: var(--primary-color);
  color: white;
}

.paragraph-4720 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.paragraph-4720 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.paragraph-4720 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.paragraph-4720 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.dropdown-0b3a {
  list-style: none;
  margin: 1.5rem 0;
}

.dropdown-0b3a li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.dropdown-0b3a li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.banner-4c0c::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-d0ab::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 === */
.photo_443a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.motion-e530 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.motion-e530 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.motion-e530 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.motion-e530 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.photo_443a blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.modal-basic-bfec {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.modal-basic-bfec::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.hero-north-7763 {
  position: relative;
  margin-bottom: 3rem;
}

.item_red_5120 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.item_red_5120 .hero_d27c {
  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;
}

.preview-narrow-1776 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.preview-narrow-1776 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.preview-narrow-1776 ul {
  margin: 1rem 0;
}

.preview-narrow-1776 li {
  margin-bottom: 0.75rem;
}

.north_4b7a {
  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 === */
.next-0980 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.next-0980 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.tag-large-4414 {
  list-style: none;
  margin: 1.5rem 0;
}

.tag-large-4414 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.tag-large-4414 a {
  font-weight: 600;
}

.clean-24c7 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.basic_70bc {
  margin: 2.5rem 0;
}

.wrapper_5e82 {
  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;
}

.wrapper_5e82:hover {
  box-shadow: var(--shadow-lg);
}

.wrapper_5e82.feature-red-d918 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.form_8b46 {
  flex-shrink: 0;
}

.form_8b46 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);
}

.dropdown_pro_c2bd h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.small-5f9e,
.heading-3955,
.pattern_de04 {
  width: 100%;
  margin: 1.5rem 0;
}

.overlay-blue-89b9 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.overlay-blue-89b9 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.shadow_motion_fdd1 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.shadow_motion_fdd1 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.notice-thick-beeb {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.notice-thick-beeb strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.up_f95b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.simple_87fb {
  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;
}

.simple_87fb:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.simple_87fb.accent_out_4b3a {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.simple_87fb .section_short_ae24 {
  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;
}

.simple_87fb h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.middle-7bbd {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.gradient_6870 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.gradient_6870 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.notice_first_429c {
  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 === */
.last-4fab {
  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;
}

.background_basic_cb73 {
  background-color: var(--primary-color);
  color: white;
}

.background_basic_cb73:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.dynamic-8bb0 {
  background-color: var(--text-secondary);
  color: white;
}

.dynamic-8bb0:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.avatar_outer_b91d {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.avatar_outer_b91d:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.hero_4806 {
  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;
}

.hero_4806:hover {
  background-color: var(--primary-dark);
}

.middle_27fd {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.list-hot-acbb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.wrapper-e6c2 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.info_center_d614 {
  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 === */
.advanced-7335 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.component_pro_e9b9 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.component_pro_e9b9 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.thumbnail-current-ea98 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.block-f50b {
  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;
}

.complex-1e2c {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.menu_simple_e7ec {
  list-style: none;
  counter-reset: rank-counter;
}

.menu_simple_e7ec li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.menu_simple_e7ec 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;
}

.notice_3a3c {
  list-style: none;
}

.notice_3a3c li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.media-pro-bfc0 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.link-mini-9c06 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.link-mini-9c06 .chip-dfab {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.link-mini-9c06 .article-47b7 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.orange-0f3c {
  margin-top: 3rem;
}

.over-4790 {
  width: 100%;
}

.video-plasma-a80e {
  background-color: #fef3c7;
}

.accordion-0f2f {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.aside_dynamic_ecef {
  margin: 3rem 0;
}

.menu_01fc {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.section_complex_0918 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.section_complex_0918:hover {
  box-shadow: var(--shadow-lg);
}

.section_complex_0918.box_yellow_7aa8 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.next-5d5d {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.info-paper-f4db strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.info-paper-f4db span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.slow-2e08 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.section_complex_0918 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.outline_small_e50f {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.notification_5711 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.left_1d0f {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.texture-blue-24f3 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.dropdown_3185 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.wood_abe4 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.texture-40ff {
  max-width: 900px;
  margin: 0 auto;
}

.menu_under_5b74 {
  margin: 2rem 0;
}

.shadow-up-5196 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.shadow-up-5196 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.shadow-up-5196 summary::-webkit-details-marker {
  display: none;
}

.shadow-up-5196 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.progress_simple_ea1d {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.shadow-up-5196[open] .progress_simple_ea1d {
  transform: rotate(45deg);
}

.pattern_iron_6be3 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.pattern_iron_6be3 p:last-child {
  margin-bottom: 0;
}

.bottom-cb39 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.media-779a {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.card-32d1 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.card-32d1 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.card-32d1 .last-4fab {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.status_west_a015 {
  max-width: 900px;
  margin: 0 auto;
}

.accent-c26d {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.advanced-2c09 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.advanced-2c09.fn-success-d0ab {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.link-4adc {
  font-size: 3rem;
  line-height: 1;
}

.breadcrumb-6ba0 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.active-6b1a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.short-3941,
.simple-0588 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.short-3941 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.simple-0588 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.aside_a5ad,
.backdrop_52d7 {
  margin: 1.5rem 0;
}

.aside_a5ad li,
.backdrop_52d7 li {
  margin-bottom: 1rem;
}

.hovered-6b5a {
  margin: 3rem 0;
}

.last_e7f6 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.last_e7f6 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.last_e7f6 ol {
  margin: 1rem 0;
}

.last_e7f6 li {
  margin-bottom: 0.75rem;
}

.paragraph-0597 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.module_paper_24b7 {
  margin: 2rem 0;
}

.paragraph_ca0f {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.media-f9da {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.card_purple_13a3 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.link_bronze_d692 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.slider_huge_245e {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.silver-36f2 {
  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;
}

.silver-36f2 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.frame_ea57 {
  flex: 1;
}

.frame_ea57 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.basic_d745 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.basic_8b95 p {
  margin-bottom: 1rem;
}

.liquid_6fad {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.liquid_5c08 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.card_focused_ce0d {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.card_focused_ce0d a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.surface_c013 h3 {
  margin-bottom: 1.5rem;
}

.video_purple_2b0b {
  display: grid;
  gap: 2rem;
}

.middle-9c5e {
  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;
}

.middle-9c5e img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.middle-9c5e h4 {
  margin: 0 0 0.25rem;
}

.middle-9c5e p {
  margin: 0;
  font-size: 0.9375rem;
}

.tooltip-0a2f {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.frame_b373 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.frame_b373 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.frame_b373 ul {
  margin: 1.5rem 0;
}

.frame_b373 li {
  margin-bottom: 0.75rem;
}

.white_c7d6 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.west-b582 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.footer_bb42 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.layout_right_4719 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.layout_right_4719 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.hover_glass_b7ac {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.hover_glass_b7ac a {
  color: rgba(255, 255, 255, 0.8);
}

.dirty_0f11 {
  list-style: none;
}

.dirty_0f11 li {
  margin-bottom: 0.75rem;
}

.dirty_0f11 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.dirty_0f11 a:hover {
  color: white;
}

.aside_b25d {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.sidebar_last_69bf {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.box_bd18 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.hover-e4ec {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.shade-bde8 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .block_33ab {
    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;
  }

  .module_de3d {
    font-size: 1.5rem !important;
  }

  .chip-fixed-c0ce {
    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 */
  .mask-ca45,
  .video_lower_a1a3,
  .preview-narrow-1776,
  .dropdown_pro_c2bd,
  .next-5d5d,
  .section_complex_0918,
  .pattern_iron_6be3,
  .last-d7f1,
  .bronze-5d1c,
  .rough-31e0 {
    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 */
  .avatar-plasma-5ff1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .component-7f4a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .notification_b707 {
    flex-shrink: 0;
  }

  .frame_ea57 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .breadcrumb_tiny_268a,
  .text-large-8a74 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .text-large-8a74 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .box_first_03ca {
    display: none;
  }

  /* Show mobile actions */
  .component-54b5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .info_352d {
    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;
  }

  .info_352d svg {
    flex-shrink: 0;
  }

  .info_352d .bottom-cf9c {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .info_352d .list-1b28 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .down-cef3 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .notification_4bf3 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .info_352d:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .icon_3678 {
    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;
  }

  .icon_3678.fn-active-d0ab {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .icon_3678 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .icon_3678 li:last-child {
    border-bottom: none;
  }

  .icon_3678 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .north-3a98 {
    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;
  }

  .north-3a98 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .north-3a98 li:last-child {
    border-bottom: none;
  }

  .north-3a98 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .gradient_5920 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .copper-9d8b {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .picture_8089,
  .card-6b07 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .picture_8089 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .card-6b07 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .north-3a98.fn-active-d0ab {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .filter_d89c {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .feature_7b8b {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .notification_0487 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .banner_dim_56be {
    margin-top: 0;
  }

  /* Hero section */
  .banner_dim_56be {
    padding: 2rem 0 1.5rem;
  }

  .chip-fixed-c0ce {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .bronze-5d1c {
    font-size: 1rem;
  }

  /* Hero brand image */
  .west_e58a {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .grid_34a0 {
    max-width: 100%;
    border-radius: 8px;
  }

  .upper_6e4e {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .rough-d29a {
    padding: 1rem;
  }

  .main-8542 {
    font-size: 1.5rem;
  }

  .avatar-active-c20f {
    font-size: 0.75rem;
  }

  .last-d7f1 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .paragraph_51c8 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .paragraph_51c8 .last-4fab {
    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 */
  .media-80a3 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .wrapper_5e82 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .form_8b46 {
    margin-bottom: 1rem;
  }

  /* Author */
  .icon-prev-b3b9 {
    flex-direction: column;
  }

  .silver-36f2 {
    flex-direction: column;
  }

  /* Quotes */
  .next-5d5d {
    flex-direction: column;
  }

  /* Pros/Cons */
  .active-6b1a {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .link_bronze_d692 {
    flex-direction: column;
  }

  .link_bronze_d692 .last-4fab {
    width: 100%;
  }

  /* Version comparison */
  .up_f95b {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .advanced-7335 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer_bb42 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .box_bd18 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .paragraph-4720,
  .heading-3955,
  .row-in-3862,
  .over-4790,
  .small-5f9e,
  .pattern_de04 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .paragraph-4720 table,
  .heading-3955 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .notice_first_429c {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .block_33ab {
    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;
  }

  .module_de3d {
    font-size: 1.25rem !important;
  }

  .chip-fixed-c0ce {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .feature_7b8b {
    position: fixed;
  }

  .notification_0487 {
    padding: 0.625rem 0;
  }

  .tertiary-e05b img {
    height: 26px;
  }

  .north-3a98 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .icon_3678 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .info_352d {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .info_352d svg {
    width: 18px;
    height: 18px;
  }

  .info_352d .bottom-cf9c {
    font-size: 0.7rem;
  }

  .info_352d .list-1b28 {
    font-size: 0.65rem;
  }

  .picture_8089,
  .card-6b07 {
    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, .block_33ab, .row-0c11, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .west_e58a {
    padding: 1rem;
  }

  .upper_6e4e {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .rough-d29a {
    padding: 0.875rem;
  }

  .main-8542 {
    font-size: 1.25rem;
  }

  .paragraph_51c8 .last-4fab {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .chip-fixed-c0ce {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .last-4fab {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .middle_27fd {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .wrapper_5e82 {
    padding: 1rem;
  }

  .form_8b46 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .mask-ca45,
  .slider-9f07,
  .active-ee2b,
  .small-8c3a {
    padding: 1rem;
  }
}

@media print {
  .feature_7b8b,
  .modal_pressed_c673,
  .filter_d89c,
  .last-4fab,
  .west-b582 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .block_33ab {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.under_c40f {
  margin-bottom: 3rem;
  text-align: center;
}

.module_de3d {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.stone-71aa {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.list-west-9d71,
.nav-4f9b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.preview-2644 {
  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;
}

.preview-2644:hover {
  transform: translateY(-5px);
}

.preview-2644 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.preview-2644 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.tag-cold-c72d {
  margin: 3rem 0;
}

.hover-c149 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.green-15b9 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.green-15b9:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.easy_f21f {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.notification-0042 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.box-copper-9f86 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.hard_3089 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.last-3337 {
  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;
}

.last-3337:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.last-3337.media_9a4a {
  border-left: 4px solid var(--primary-color);
}

.link_d0fc {
  flex-shrink: 0;
}

.link_d0fc svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.alert-7462 {
  flex: 1;
}

.alert-7462 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.badge-b5f4 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.wood_601b,
.alert-019d,
.progress-tall-6a44 {
  margin-bottom: 1.5rem;
}

.wood_601b h4,
.alert-019d h4,
.progress-tall-6a44 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wood_601b ul,
.alert-019d ul,
.progress-tall-6a44 ul {
  list-style: none;
  padding: 0;
}

.wood_601b li,
.alert-019d li,
.progress-tall-6a44 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.wood_601b li:before,
.alert-019d li:before,
.progress-tall-6a44 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.grid_f2db {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.grid_f2db 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;
}

.grid_f2db a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.new-bfc8 { margin: 2rem 0; }
.button_4e76 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.button_4e76 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.hard-a1ad p { margin-bottom: 1rem; line-height: 1.7; }
.hard-a1ad strong { color: var(--text-primary); }
.hard-a1ad ul { list-style: none; padding-left: 0; }
.hard-a1ad ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.hard-a1ad ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.form_231d { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.banner_aaf7 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.banner_aaf7:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.modal_huge_9008 { font-size: 3rem; margin-bottom: 1rem; }
.banner_aaf7 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.banner_aaf7 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.input-focused-29e6 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.input-focused-29e6 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.paragraph-stone-ebaf { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.element_plasma_5332 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.plasma_1998 { text-align: center; }
.mini-4213 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.avatar-2b82 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.gas_5fbd { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.soft-40c5 { margin: 2rem 0; }
.fluid_731b { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.fluid_731b h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.fluid_731b p, .fluid_731b ul { line-height: 1.7; }
.fluid_731b ul { list-style: none; padding-left: 0; }
.fluid_731b ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.fluid_731b ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.silver-09be { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.tooltip_rough_5c03 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.primary_purple_d639 { text-align: center; }
.clean_b84a { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.mask_2247 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.list_b155 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.media-hard-3e2d { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.breadcrumb_61c5 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.breadcrumb_61c5:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.breadcrumb_61c5 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.breadcrumb_61c5 p, .breadcrumb_61c5 ul { line-height: 1.7; }
.breadcrumb_61c5 ul { list-style: none; padding-left: 0; }
.breadcrumb_61c5 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.breadcrumb_61c5 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 8d3e */
.widget-item-l6 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.3;
}
