/* ============================================
   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 */
.hidden-8d36 p,
.texture-out-173f,
.aside-smooth-a68c,
.input-2bde,
.next_7790,
.mask_c070,
.background_right_c7ce,
.mask-30b9 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.outer-20bc {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.outer-20bc > *,
.dark-ed2e,
.hidden-8d36,
.notification_blue_b646 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .outer-20bc {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .outer-20bc {
    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 === */
.active_446b {
  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 */
.active_446b.sidebar-pressed-74b7 {
  box-shadow: var(--shadow-md);
}

.status-brown-a167 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.texture_solid_2b2e img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.short-c62e {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.outline_0f6c {
  display: none;
}

/* Hide mobile actions on desktop */
.plasma_f9fe {
  display: none;
}

.iron-1b12 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.iron-1b12 a:hover,
.iron-1b12 a.fn-active-1abb {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.active-7656 {
  margin-left: 1rem;
}

.label_iron_bce6 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.paragraph-action-0549,
.active-0425 {
  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;
}

.paragraph-action-0549 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.paragraph-action-0549: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;
}

.active-0425 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.active-0425: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;
}

.paragraph-action-0549 svg,
.active-0425 svg {
  flex-shrink: 0;
}

.component_39b6 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.lower_c387 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.lower_c387::before,
.lower_c387::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.lower_c387::before {
  top: -7px;
}

.lower_c387::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.logo-cedc {
  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 === */
.mini_568c {
  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);
}

.card_b42e {
  margin: 0 0 2rem;
  text-align: center;
}

.last-e1ef {
  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;
}

.last-e1ef:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.focus_narrow_4f75 {
  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);
}

.focus_narrow_4f75 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.focus_liquid_28f9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.article-tall-51ce {
  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;
}

.article-tall-51ce:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.button_a4d2 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.gradient_e5f5 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.orange_b258 {
  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);
}

.orange_b258 .dropdown-fluid-b45a {
  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;
}

.orange_b258 .dropdown-fluid-b45a svg {
  flex-shrink: 0;
}

.orange_b258 .pagination_2bee {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.orange_b258 .pagination_2bee: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);
}

.orange_b258 .outline-brown-85bd {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.orange_b258 .outline-brown-85bd: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) {
  .mini_568c {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .last-e1ef {
    max-width: 100%;
  }

  .focus_liquid_28f9 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .article-tall-51ce {
    padding: 1rem;
  }

  .button_a4d2 {
    font-size: 1.5rem;
  }

  .gradient_e5f5 {
    font-size: 0.75rem;
  }

  .focus_narrow_4f75 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .orange_b258 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .orange_b258 .dropdown-fluid-b45a {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .focus_liquid_28f9 {
    grid-template-columns: 1fr;
  }
}

.icon-cool-e46f {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.frame_easy_ea30 {
  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 === */
.basic_a99c {
  margin-bottom: 2.5rem;
}

.container_1f69 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.icon-cool-e46f {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.huge-ebd1 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-fast-30d6 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.under-0975 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.secondary-active-b0d1 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.row_fe77 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.cold-6ba5 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.selected-61b6 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.selected-61b6 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.preview-in-6e2c {
  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);
}

.notification_a7aa {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.feature_red_ccaf {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.content-6c11 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.input_4a5b {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.prev-a794 {
  display: grid;
  gap: 1rem;
}

.avatar-north-bbe0 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.hero_lower_b194 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.focused_5b5f {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.footer_5761 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.full_c752 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.header-c5dd {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.header-c5dd p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.texture-out-173f {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.middle-c252 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.next-90bc {
  display: grid;
  gap: 2rem;
}

.list_54fc {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.form-fast-30d6 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.huge-ebd1 {
  flex: 1;
}

.secondary-active-b0d1 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.secondary-active-b0d1 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.caption-42f2 {
  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;
}

.row_fe77 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.banner_82ce {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.banner_82ce span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.lite-6b44 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.lite-6b44 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.aside-yellow-79a9 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.aside-yellow-79a9 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.aside-yellow-79a9 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.aside-yellow-79a9 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.first-e6df {
  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 === */
.hero_c093 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.out_905d {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.hero_outer_31c4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tertiary_lower_8191 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.tertiary_lower_8191 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.tertiary_lower_8191 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.tertiary_lower_8191 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;
}

.tertiary_lower_8191 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.tertiary_lower_8191 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.hidden-8d36 {
  padding: 3rem 0 5rem;
}

.notification_blue_b646 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.notification_blue_b646.row_225b {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.aside-smooth-a68c {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.filter_stone_59f4 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.tertiary-current-a111 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.tertiary-current-a111 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.hard-2414 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.mask_bottom_c709 {
  text-align: center;
}

.narrow_b190 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.description_stone_be41 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.column_out_1bfa {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.mask_c070 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.input-2bde {
  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;
}

.input-2bde * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.input-2bde:hover {
  box-shadow: var(--shadow-lg);
}

.input-2bde.sidebar-short-9a2b {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.input-2bde h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.input-2bde ul {
  margin: 1rem 0;
}

.input-2bde li {
  margin-bottom: 0.75rem;
}

.avatar-light-32a0 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.surface_solid_c314 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.surface_solid_c314 a {
  font-weight: 600;
}

/* === Data Tables === */
.outline_left_135d {
  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;
}

.outline_left_135d table {
  width: 100%;
  min-width: 600px;
}

.outline_left_135d thead {
  background-color: var(--primary-color);
  color: white;
}

.outline_left_135d th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.outline_left_135d td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.outline_left_135d tbody tr:hover {
  background-color: var(--bg-secondary);
}

.outline_left_135d tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.content-09c7 {
  list-style: none;
  margin: 1.5rem 0;
}

.content-09c7 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.content-09c7 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.form-current-bc4c::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-1abb::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 === */
.notification-bottom-f936 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.column-silver-18db {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.column-silver-18db img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.column-silver-18db strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.column-silver-18db span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.notification-bottom-f936 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.background_right_c7ce {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.background_right_c7ce::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.image_6db0 {
  position: relative;
  margin-bottom: 3rem;
}

.outer_a474 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.outer_a474 .focus_steel_d5f9 {
  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;
}

.inner_cdba {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.inner_cdba h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.inner_cdba ul {
  margin: 1rem 0;
}

.inner_cdba li {
  margin-bottom: 0.75rem;
}

.motion_c1ca {
  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 === */
.background_down_47fb {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.background_down_47fb h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.article_de2c {
  list-style: none;
  margin: 1.5rem 0;
}

.article_de2c li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.article_de2c a {
  font-weight: 600;
}

.lower-006a {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.mask-30b9 {
  margin: 2.5rem 0;
}

.grid_8ecf {
  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;
}

.grid_8ecf:hover {
  box-shadow: var(--shadow-lg);
}

.grid_8ecf.slider_d348 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.chip_old_663a {
  flex-shrink: 0;
}

.chip_old_663a 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);
}

.carousel-994c h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.container-fast-53b3,
.easy-5a84,
.east_65b5 {
  width: 100%;
  margin: 1.5rem 0;
}

.title-649a {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.title-649a strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.video_3505 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.video_3505 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.down_4218 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.down_4218 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.thumbnail-22b9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.feature-dbdf {
  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;
}

.feature-dbdf:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.feature-dbdf.huge-adae {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.feature-dbdf .header_e171 {
  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;
}

.feature-dbdf h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.video_1608 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.item-yellow-22da {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.item-yellow-22da label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.tiny_61a2 {
  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 === */
.dropdown-fluid-b45a {
  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;
}

.pagination_2bee {
  background-color: var(--primary-color);
  color: white;
}

.pagination_2bee:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.outline-brown-85bd {
  background-color: var(--text-secondary);
  color: white;
}

.outline-brown-85bd:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.element-cool-5ded {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.element-cool-5ded:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.tabs_fd87 {
  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;
}

.tabs_fd87:hover {
  background-color: var(--primary-dark);
}

.notification-1eff {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.large-b220 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.first_5ced {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.container_slow_4693 {
  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 === */
.header_new_3ea6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.title-6e23 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.title-6e23 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.medium_2b26 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.sidebar_plasma_c8e6 {
  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;
}

.action-e263 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.title-right-9272 {
  list-style: none;
  counter-reset: rank-counter;
}

.title-right-9272 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.title-right-9272 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;
}

.shadow-5864 {
  list-style: none;
}

.shadow-5864 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.soft-9b02 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.basic-ebdf {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.basic-ebdf .carousel-32ff {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.basic-ebdf .surface_2626 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.panel_c605 {
  margin-top: 3rem;
}

.module_bd99 {
  width: 100%;
}

.short-a7c3 {
  background-color: #fef3c7;
}

.table_817c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.notice-prev-09c0 {
  margin: 3rem 0;
}

.form_2e34 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.cold_9913 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.cold_9913:hover {
  box-shadow: var(--shadow-lg);
}

.cold_9913.gradient_black_e954 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.container-inner-5fa7 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.solid-b2fa strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.solid-b2fa span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.box_72e8 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.cold_9913 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.outline-e029 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pagination_eb8a {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.alert-pro-d215 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.tag_fixed_71b8 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.nav-liquid-fda0 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.medium_41b8 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.selected-8ec1 {
  max-width: 900px;
  margin: 0 auto;
}

.rough_479d {
  margin: 2rem 0;
}

.video-east-9f3c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.video-east-9f3c summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.video-east-9f3c summary::-webkit-details-marker {
  display: none;
}

.video-east-9f3c summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.tooltip_hot_3713 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.video-east-9f3c[open] .tooltip_hot_3713 {
  transform: rotate(45deg);
}

.thick_98b0 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.thick_98b0 p:last-child {
  margin-bottom: 0;
}

.feature-warm-e635 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.breadcrumb_stone_7ee4 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.basic_4064 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.basic_4064 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.basic_4064 .dropdown-fluid-b45a {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.overlay-1c59 {
  max-width: 900px;
  margin: 0 auto;
}

.badge_in_e6dd {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.notification_warm_fb9a {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.notification_warm_fb9a.fn-success-1abb {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.paragraph_top_4571 {
  font-size: 3rem;
  line-height: 1;
}

.row-b274 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.alert_plasma_7acc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.silver-8f4a,
.tabs-tiny-f1e1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.silver-8f4a h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.tabs-tiny-f1e1 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.picture-steel-9085,
.row_5ea6 {
  margin: 1.5rem 0;
}

.picture-steel-9085 li,
.row_5ea6 li {
  margin-bottom: 1rem;
}

.photo-focused-d35f {
  margin: 3rem 0;
}

.top_cb56 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.top_cb56 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.top_cb56 ol {
  margin: 1rem 0;
}

.top_cb56 li {
  margin-bottom: 0.75rem;
}

.table-9723 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.frame_light_0458 {
  margin: 2rem 0;
}

.message-last-3e00 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.sidebar_glass_add2 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.slow_cd7a {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.nav_purple_7b8f {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.description-d2a5 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.row_purple_afde {
  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;
}

.row_purple_afde img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.under-0975 {
  flex: 1;
}

.under-0975 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.avatar-copper-aff3 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.sidebar_large_516a p {
  margin-bottom: 1rem;
}

.smooth_dff6 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.under_a163 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-ce70 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.form-ce70 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.tall_da9a h3 {
  margin-bottom: 1.5rem;
}

.over-17b6 {
  display: grid;
  gap: 2rem;
}

.gradient-307c {
  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;
}

.gradient-307c img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.gradient-307c h4 {
  margin: 0 0 0.25rem;
}

.gradient-307c p {
  margin: 0;
  font-size: 0.9375rem;
}

.mask_slow_e551 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.shade_advanced_08c2 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.shade_advanced_08c2 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.shade_advanced_08c2 ul {
  margin: 1.5rem 0;
}

.shade_advanced_08c2 li {
  margin-bottom: 0.75rem;
}

.modal-78fb {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.huge_5953 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.image-0c40 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.modal_yellow_c8a2 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.modal_yellow_c8a2 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.texture_pink_7a68 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.texture_pink_7a68 a {
  color: rgba(255, 255, 255, 0.8);
}

.block_lower_a3a4 {
  list-style: none;
}

.block_lower_a3a4 li {
  margin-bottom: 0.75rem;
}

.block_lower_a3a4 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.block_lower_a3a4 a:hover {
  color: white;
}

.next-8aba {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.hot_6e16 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.element_fluid_67ea {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.dynamic-bff2 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.layout_393c {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .outer-20bc {
    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;
  }

  .pagination_8e18 {
    font-size: 1.5rem !important;
  }

  .container_1f69 {
    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 */
  .input-2bde,
  .next_7790,
  .inner_cdba,
  .carousel-994c,
  .container-inner-5fa7,
  .cold_9913,
  .thick_98b0,
  .focus_narrow_4f75,
  .texture-out-173f,
  .aside-smooth-a68c {
    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 */
  .icon-cool-e46f {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .huge-ebd1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .form-fast-30d6 {
    flex-shrink: 0;
  }

  .under-0975 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .secondary-active-b0d1,
  .row_fe77 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .row_fe77 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .short-c62e {
    display: none;
  }

  /* Show mobile actions */
  .plasma_f9fe {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .content_8072 {
    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;
  }

  .content_8072 svg {
    flex-shrink: 0;
  }

  .content_8072 .avatar_a2e4 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .content_8072 .notice-a115 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .current_e623 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .hidden_520f {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .content_8072:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .outline_0f6c {
    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;
  }

  .outline_0f6c.fn-active-1abb {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .outline_0f6c li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .outline_0f6c li:last-child {
    border-bottom: none;
  }

  .outline_0f6c a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .iron-1b12 {
    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;
  }

  .iron-1b12 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .iron-1b12 li:last-child {
    border-bottom: none;
  }

  .iron-1b12 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .active-7656 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .label_iron_bce6 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .paragraph-action-0549,
  .active-0425 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .paragraph-action-0549 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .active-0425 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .iron-1b12.fn-active-1abb {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .component_39b6 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .active_446b {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .status-brown-a167 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .logo-cedc {
    margin-top: 0;
  }

  /* Hero section */
  .logo-cedc {
    padding: 2rem 0 1.5rem;
  }

  .container_1f69 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .texture-out-173f {
    font-size: 1rem;
  }

  /* Hero brand image */
  .mini_568c {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .last-e1ef {
    max-width: 100%;
    border-radius: 8px;
  }

  .focus_liquid_28f9 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .article-tall-51ce {
    padding: 1rem;
  }

  .button_a4d2 {
    font-size: 1.5rem;
  }

  .gradient_e5f5 {
    font-size: 0.75rem;
  }

  .focus_narrow_4f75 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .orange_b258 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .orange_b258 .dropdown-fluid-b45a {
    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 */
  .hero_outer_31c4 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .grid_8ecf {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .chip_old_663a {
    margin-bottom: 1rem;
  }

  /* Author */
  .list_54fc {
    flex-direction: column;
  }

  .row_purple_afde {
    flex-direction: column;
  }

  /* Quotes */
  .container-inner-5fa7 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .alert_plasma_7acc {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .nav_purple_7b8f {
    flex-direction: column;
  }

  .nav_purple_7b8f .dropdown-fluid-b45a {
    width: 100%;
  }

  /* Version comparison */
  .thumbnail-22b9 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .header_new_3ea6 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .image-0c40 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .element_fluid_67ea {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .outline_left_135d,
  .easy-5a84,
  .plasma_e432,
  .module_bd99,
  .container-fast-53b3,
  .east_65b5 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .outline_left_135d table,
  .easy-5a84 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .tiny_61a2 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .outer-20bc {
    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;
  }

  .pagination_8e18 {
    font-size: 1.25rem !important;
  }

  .container_1f69 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .active_446b {
    position: fixed;
  }

  .status-brown-a167 {
    padding: 0.625rem 0;
  }

  .texture_solid_2b2e img {
    height: 26px;
  }

  .iron-1b12 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .outline_0f6c {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .content_8072 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .content_8072 svg {
    width: 18px;
    height: 18px;
  }

  .content_8072 .avatar_a2e4 {
    font-size: 0.7rem;
  }

  .content_8072 .notice-a115 {
    font-size: 0.65rem;
  }

  .paragraph-action-0549,
  .active-0425 {
    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, .outer-20bc, .dark-ed2e, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .mini_568c {
    padding: 1rem;
  }

  .focus_liquid_28f9 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .article-tall-51ce {
    padding: 0.875rem;
  }

  .button_a4d2 {
    font-size: 1.25rem;
  }

  .orange_b258 .dropdown-fluid-b45a {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .container_1f69 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .dropdown-fluid-b45a {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .notification-1eff {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .grid_8ecf {
    padding: 1rem;
  }

  .chip_old_663a span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .input-2bde,
  .thick_e4c1,
  .motion-3941,
  .container-bb4a {
    padding: 1rem;
  }
}

@media print {
  .active_446b,
  .hero_c093,
  .component_39b6,
  .dropdown-fluid-b45a,
  .huge_5953 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .outer-20bc {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.active-thick-51d2 {
  margin-bottom: 3rem;
  text-align: center;
}

.pagination_8e18 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.slider_f612 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.panel-tall-b3a0,
.highlight-wood-6073 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.progress_glass_8231 {
  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;
}

.progress_glass_8231:hover {
  transform: translateY(-5px);
}

.progress_glass_8231 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.progress_glass_8231 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.tiny_6715 {
  margin: 3rem 0;
}

.new-57dc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.list_prev_b38c {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.list_prev_b38c:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.photo-mini-9824 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.box_thick_840a {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.under_d0b2 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.container-85ce {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.grid_iron_2aa0 {
  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;
}

.grid_iron_2aa0:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.grid_iron_2aa0.active-8d84 {
  border-left: 4px solid var(--primary-color);
}

.pagination-warm-eeb7 {
  flex-shrink: 0;
}

.pagination-warm-eeb7 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.header-b493 {
  flex: 1;
}

.header-b493 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.sidebar-bright-f16e {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.form_soft_9912,
.preview_e264,
.paragraph_f04e {
  margin-bottom: 1.5rem;
}

.form_soft_9912 h4,
.preview_e264 h4,
.paragraph_f04e h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form_soft_9912 ul,
.preview_e264 ul,
.paragraph_f04e ul {
  list-style: none;
  padding: 0;
}

.form_soft_9912 li,
.preview_e264 li,
.paragraph_f04e li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.form_soft_9912 li:before,
.preview_e264 li:before,
.paragraph_f04e li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.plasma-59f5 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.plasma-59f5 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;
}

.plasma-59f5 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.section_42b7 { margin: 2rem 0; }
.steel-2005 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.steel-2005 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.module_cold_bbd0 p { margin-bottom: 1rem; line-height: 1.7; }
.module_cold_bbd0 strong { color: var(--text-primary); }
.module_cold_bbd0 ul { list-style: none; padding-left: 0; }
.module_cold_bbd0 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.module_cold_bbd0 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.active-basic-1234 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.gold-fb1b { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.gold-fb1b:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.module-d952 { font-size: 3rem; margin-bottom: 1rem; }
.gold-fb1b h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.gold-fb1b p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.preview_f480 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.preview_f480 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.stale-df32 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.carousel_selected_bfdd { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.header-2f57 { text-align: center; }
.container_ae0b { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.orange_6480 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.search_right_7b45 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.text-f453 { margin: 2rem 0; }
.layout-c8e2 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.layout-c8e2 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.layout-c8e2 p, .layout-c8e2 ul { line-height: 1.7; }
.layout-c8e2 ul { list-style: none; padding-left: 0; }
.layout-c8e2 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.layout-c8e2 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.chip-c24c { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.banner_8ad6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.section-03b9 { text-align: center; }
.tooltip-thick-6a23 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.shade-ce51 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.overlay-advanced-c00c { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.panel-full-c25d { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.content-dim-efdc { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.content-dim-efdc:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.content-dim-efdc h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.content-dim-efdc p, .content-dim-efdc ul { line-height: 1.7; }
.content-dim-efdc ul { list-style: none; padding-left: 0; }
.content-dim-efdc ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.content-dim-efdc ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 5f98 */
.shadow-element-p4 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.3;
}
