/* ============================================
   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 */
.block-hot-9961 p,
.summary_selected_77d3,
.progress_fluid_0d09,
.glass-17ea,
.thumbnail_liquid_a488,
.bottom-de1a,
.alert-copper-898d,
.notice_west_5a18 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.yellow-12e5 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.yellow-12e5 > *,
.black_5648,
.block-hot-9961,
.notification-stale-0804 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .yellow-12e5 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .yellow-12e5 {
    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 === */
.thumbnail-4c19 {
  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 */
.thumbnail-4c19.modal-hard-b14b {
  box-shadow: var(--shadow-md);
}

.description-soft-7a4d {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.old-0f76 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.surface-green-4efc {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.video-6007 {
  display: none;
}

/* Hide mobile actions on desktop */
.tertiary_afe2 {
  display: none;
}

.selected-82f8 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.selected-82f8 a:hover,
.selected-82f8 a.fn-active-3563 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.accent_04b9 {
  margin-left: 1rem;
}

.dim_e710 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.current_d565,
.column-steel-05ed {
  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;
}

.current_d565 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.current_d565: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;
}

.column-steel-05ed {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.column-steel-05ed: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;
}

.current_d565 svg,
.column-steel-05ed svg {
  flex-shrink: 0;
}

.down-1d6e {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hard_25ca {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.hard_25ca::before,
.hard_25ca::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.hard_25ca::before {
  top: -7px;
}

.hard_25ca::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.advanced-6c1a {
  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 === */
.icon_be84 {
  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);
}

.status-b663 {
  margin: 0 0 2rem;
  text-align: center;
}

.table_fast_77e9 {
  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;
}

.table_fast_77e9:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.preview_135c {
  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);
}

.preview_135c strong {
  color: var(--primary-color);
  font-weight: 700;
}

.frame-narrow-702e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.gallery_right_e794 {
  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;
}

.gallery_right_e794:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.breadcrumb_6183 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.mask_white_8101 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.message-a81e {
  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);
}

.message-a81e .out-9267 {
  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;
}

.message-a81e .out-9267 svg {
  flex-shrink: 0;
}

.message-a81e .widget-black-2add {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.message-a81e .widget-black-2add: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);
}

.message-a81e .row-a942 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.message-a81e .row-a942: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) {
  .icon_be84 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .table_fast_77e9 {
    max-width: 100%;
  }

  .frame-narrow-702e {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gallery_right_e794 {
    padding: 1rem;
  }

  .breadcrumb_6183 {
    font-size: 1.5rem;
  }

  .mask_white_8101 {
    font-size: 0.75rem;
  }

  .preview_135c {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .message-a81e {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .message-a81e .out-9267 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .frame-narrow-702e {
    grid-template-columns: 1fr;
  }
}

.small_8075 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.title_rough_cea0 {
  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 === */
.gas_3e0c {
  margin-bottom: 2.5rem;
}

.video-f720 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.small_8075 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.avatar-new-cc2d {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lite_e73f {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.component_d919 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.logo-hot-61ce {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.copper_b800 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.description_bright_4efa {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hard_1ead {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hard_1ead svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.pattern_lite_eb55 {
  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);
}

.huge-99b6 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.narrow-5dab {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.container-45bd {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.logo-lower-e338 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.shade-f6a3 {
  display: grid;
  gap: 1rem;
}

.search_59ed {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.hidden-86b0 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.description_upper_b4d9 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.alert_4fe5 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.sort_full_9348 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.grid_2ce0 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.grid_2ce0 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.summary_selected_77d3 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.media_static_bb34 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.secondary-bottom-a92c {
  display: grid;
  gap: 2rem;
}

.component-slow-e107 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.lite_e73f {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.avatar-new-cc2d {
  flex: 1;
}

.logo-hot-61ce {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.logo-hot-61ce a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.outline_tiny_4e47 {
  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;
}

.copper_b800 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.input-0401 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.input-0401 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.pressed_12aa {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.pressed_12aa a {
  font-size: 0.875rem;
  font-weight: 500;
}

.tag_brown_56fe {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.tag_brown_56fe strong {
  display: block;
  margin-bottom: 0.75rem;
}

.tag_brown_56fe ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tag_brown_56fe li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.wrapper-bottom-c7e7 {
  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 === */
.texture_new_0022 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.logo-4c48 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.card-4699 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.dropdown_static_6081 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.dropdown_static_6081 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.dropdown_static_6081 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.dropdown_static_6081 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;
}

.dropdown_static_6081 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.dropdown_static_6081 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.block-hot-9961 {
  padding: 3rem 0 5rem;
}

.notification-stale-0804 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.notification-stale-0804.container-stale-0a81 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.progress_fluid_0d09 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.frame_2e40 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.filter_8bbb {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.filter_8bbb h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.shade-5bbd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.in-edc8 {
  text-align: center;
}

.info_hard_7a5c {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.texture_c99c {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.badge-pressed-71d2 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.bottom-de1a {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.glass-17ea {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
  max-width: 100%;
  overflow: hidden;
  word-wrap: break-word;
}

.glass-17ea * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.glass-17ea:hover {
  box-shadow: var(--shadow-lg);
}

.glass-17ea.label_9e49 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.glass-17ea h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.glass-17ea ul {
  margin: 1rem 0;
}

.glass-17ea li {
  margin-bottom: 0.75rem;
}

.link-out-7f88 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.sidebar-right-3a40 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.sidebar-right-3a40 a {
  font-weight: 600;
}

/* === Data Tables === */
.button-b630 {
  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;
}

.button-b630 table {
  width: 100%;
  min-width: 600px;
}

.button-b630 thead {
  background-color: var(--primary-color);
  color: white;
}

.button-b630 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.button-b630 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.button-b630 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.button-b630 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.out_fdaa {
  list-style: none;
  margin: 1.5rem 0;
}

.out_fdaa li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.out_fdaa li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.black_ee52::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-3563::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 === */
.hidden-west-ca2c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.preview-cool-ea4f {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.preview-cool-ea4f img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.preview-cool-ea4f strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.preview-cool-ea4f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hidden-west-ca2c blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.alert-copper-898d {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.alert-copper-898d::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.dim_f7df {
  position: relative;
  margin-bottom: 3rem;
}

.black-6d88 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.black-6d88 .dropdown_9aec {
  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;
}

.outline_fast_eea6 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.outline_fast_eea6 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.outline_fast_eea6 ul {
  margin: 1rem 0;
}

.outline_fast_eea6 li {
  margin-bottom: 0.75rem;
}

.outline-74f6 {
  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 === */
.tag-2b66 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.tag-2b66 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.main_silver_2e02 {
  list-style: none;
  margin: 1.5rem 0;
}

.main_silver_2e02 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.main_silver_2e02 a {
  font-weight: 600;
}

.description_out_c61d {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.notice_west_5a18 {
  margin: 2.5rem 0;
}

.icon-tall-cc9f {
  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;
}

.icon-tall-cc9f:hover {
  box-shadow: var(--shadow-lg);
}

.icon-tall-cc9f.row_621d {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.header_pressed_5907 {
  flex-shrink: 0;
}

.header_pressed_5907 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-right-a5a6 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.icon-8400,
.tertiary-cold-bf6a,
.next_d88f {
  width: 100%;
  margin: 1.5rem 0;
}

.box-lite-69da {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.box-lite-69da strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.fluid-5886 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.fluid-5886 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.title_east_99b6 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.title_east_99b6 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.slow-8a4e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.menu_365c {
  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;
}

.menu_365c:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.menu_365c.paragraph_d3ad {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.menu_365c .hovered_808a {
  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;
}

.menu_365c h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.first_0165 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.alert_cfc0 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.alert_cfc0 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.simple_3735 {
  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 === */
.out-9267 {
  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;
}

.widget-black-2add {
  background-color: var(--primary-color);
  color: white;
}

.widget-black-2add:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.row-a942 {
  background-color: var(--text-secondary);
  color: white;
}

.row-a942:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.basic-7977 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.basic-7977:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.disabled-lower-a79d {
  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;
}

.disabled-lower-a79d:hover {
  background-color: var(--primary-dark);
}

.mini_8d96 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.pink-12e6 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.over_acc6 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.silver-4c45 {
  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 === */
.picture_action_d1ca {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.component_east_2376 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.component_east_2376 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.box-fad2 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.alert-e5ec {
  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;
}

.hero_cool_5799 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.message-motion-8069 {
  list-style: none;
  counter-reset: rank-counter;
}

.message-motion-8069 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.message-motion-8069 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;
}

.icon-29db {
  list-style: none;
}

.icon-29db li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.content-ab10 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.image-pressed-4872 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.image-pressed-4872 .content-daa7 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.image-pressed-4872 .caption_east_4666 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.heading-17b6 {
  margin-top: 3rem;
}

.pressed_e800 {
  width: 100%;
}

.pressed_d811 {
  background-color: #fef3c7;
}

.tiny-8979 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.section_ea5b {
  margin: 3rem 0;
}

.iron-3a38 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.blue_4f66 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.blue_4f66:hover {
  box-shadow: var(--shadow-lg);
}

.blue_4f66.icon_2ddf {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.large_2b82 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.gold_9194 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.gold_9194 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.plasma-1c27 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.blue_4f66 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.aside-e4f0 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pink_9b46 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.pagination_16f9 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.preview_orange_4149 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.media-18bb {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.black-ca8b {
  margin-top: 1rem;
}

/* === FAQ Section === */
.carousel-focused-5f2a {
  max-width: 900px;
  margin: 0 auto;
}

.carousel-7123 {
  margin: 2rem 0;
}

.block_ac28 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.block_ac28 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.block_ac28 summary::-webkit-details-marker {
  display: none;
}

.block_ac28 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.tooltip-48c0 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.block_ac28[open] .tooltip-48c0 {
  transform: rotate(45deg);
}

.link_thick_a351 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.link_thick_a351 p:last-child {
  margin-bottom: 0;
}

.main-173a {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.purple-9aed {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.first_43d4 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.first_43d4 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.first_43d4 .out-9267 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.pagination_7c56 {
  max-width: 900px;
  margin: 0 auto;
}

.badge-brown-5ea0 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.aside_slow_efd2 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.aside_slow_efd2.fn-success-3563 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.paragraph_b24c {
  font-size: 3rem;
  line-height: 1;
}

.menu_68cf h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.slow_a030 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.background-a297,
.tooltip-93fb {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.background-a297 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.tooltip-93fb h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.bronze-12e5,
.next-5ea3 {
  margin: 1.5rem 0;
}

.bronze-12e5 li,
.next-5ea3 li {
  margin-bottom: 1rem;
}

.old_c990 {
  margin: 3rem 0;
}

.feature-gold-68f9 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.feature-gold-68f9 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.feature-gold-68f9 ol {
  margin: 1rem 0;
}

.feature-gold-68f9 li {
  margin-bottom: 0.75rem;
}

.active-35c7 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.fixed_c76c {
  margin: 2rem 0;
}

.frame_copper_5226 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.dim-a1c5 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.avatar_2e2c {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.surface_smooth_251e {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.mask_97cd {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.short_7ec9 {
  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;
}

.short_7ec9 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.component_d919 {
  flex: 1;
}

.component_d919 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.stale-8d1c {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.small_1505 p {
  margin-bottom: 1rem;
}

.wrapper-right-4180 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.picture-f7e2 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.dropdown-iron-3005 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.dropdown-iron-3005 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.sort-cc10 h3 {
  margin-bottom: 1.5rem;
}

.accent-huge-08b3 {
  display: grid;
  gap: 2rem;
}

.info-c67f {
  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;
}

.info-c67f img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.info-c67f h4 {
  margin: 0 0 0.25rem;
}

.info-c67f p {
  margin: 0;
  font-size: 0.9375rem;
}

.hover_large_af8a {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.outer_40b5 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.outer_40b5 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.outer_40b5 ul {
  margin: 1.5rem 0;
}

.outer_40b5 li {
  margin-bottom: 0.75rem;
}

.brown-ab96 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.container_thick_dd9a {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.hovered_f6e2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.list-ef37 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.list-ef37 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.cool_b80b {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.cool_b80b a {
  color: rgba(255, 255, 255, 0.8);
}

.video_9c6b {
  list-style: none;
}

.video_9c6b li {
  margin-bottom: 0.75rem;
}

.video_9c6b a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.video_9c6b a:hover {
  color: white;
}

.logo_pressed_c774 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.dark-067c {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.caption-bdf2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.section_light_c342 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.component-pressed-7711 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .yellow-12e5 {
    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;
  }

  .breadcrumb_13bd {
    font-size: 1.5rem !important;
  }

  .video-f720 {
    font-size: 1.5rem !important;
  }

  p, li, td, th, span, div, strong {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }

  /* Force all containers to fit */
  .glass-17ea,
  .thumbnail_liquid_a488,
  .outline_fast_eea6,
  .carousel-right-a5a6,
  .large_2b82,
  .blue_4f66,
  .link_thick_a351,
  .preview_135c,
  .summary_selected_77d3,
  .progress_fluid_0d09 {
    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 */
  .small_8075 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .avatar-new-cc2d {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .lite_e73f {
    flex-shrink: 0;
  }

  .component_d919 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .logo-hot-61ce,
  .copper_b800 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .copper_b800 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .surface-green-4efc {
    display: none;
  }

  /* Show mobile actions */
  .tertiary_afe2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .title_5cd0 {
    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;
  }

  .title_5cd0 svg {
    flex-shrink: 0;
  }

  .title_5cd0 .active-93f4 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .title_5cd0 .module_basic_a844 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .text_inner_a564 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .table_focused_341b {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .title_5cd0:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .video-6007 {
    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;
  }

  .video-6007.fn-active-3563 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .video-6007 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .video-6007 li:last-child {
    border-bottom: none;
  }

  .video-6007 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .selected-82f8 {
    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;
  }

  .selected-82f8 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .selected-82f8 li:last-child {
    border-bottom: none;
  }

  .selected-82f8 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .accent_04b9 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .dim_e710 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .current_d565,
  .column-steel-05ed {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .current_d565 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .column-steel-05ed {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .selected-82f8.fn-active-3563 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .down-1d6e {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .thumbnail-4c19 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .description-soft-7a4d {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .advanced-6c1a {
    margin-top: 0;
  }

  /* Hero section */
  .advanced-6c1a {
    padding: 2rem 0 1.5rem;
  }

  .video-f720 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .summary_selected_77d3 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .icon_be84 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .table_fast_77e9 {
    max-width: 100%;
    border-radius: 8px;
  }

  .frame-narrow-702e {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gallery_right_e794 {
    padding: 1rem;
  }

  .breadcrumb_6183 {
    font-size: 1.5rem;
  }

  .mask_white_8101 {
    font-size: 0.75rem;
  }

  .preview_135c {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .message-a81e {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .message-a81e .out-9267 {
    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 */
  .card-4699 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .icon-tall-cc9f {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .header_pressed_5907 {
    margin-bottom: 1rem;
  }

  /* Author */
  .component-slow-e107 {
    flex-direction: column;
  }

  .short_7ec9 {
    flex-direction: column;
  }

  /* Quotes */
  .large_2b82 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .slow_a030 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .surface_smooth_251e {
    flex-direction: column;
  }

  .surface_smooth_251e .out-9267 {
    width: 100%;
  }

  /* Version comparison */
  .slow-8a4e {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .picture_action_d1ca {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .hovered_f6e2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .caption-bdf2 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .button-b630,
  .tertiary-cold-bf6a,
  .carousel_5647,
  .pressed_e800,
  .icon-8400,
  .next_d88f {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .button-b630 table,
  .tertiary-cold-bf6a table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .simple_3735 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .yellow-12e5 {
    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;
  }

  .breadcrumb_13bd {
    font-size: 1.25rem !important;
  }

  .video-f720 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .thumbnail-4c19 {
    position: fixed;
  }

  .description-soft-7a4d {
    padding: 0.625rem 0;
  }

  .old-0f76 img {
    height: 26px;
  }

  .selected-82f8 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .video-6007 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .title_5cd0 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .title_5cd0 svg {
    width: 18px;
    height: 18px;
  }

  .title_5cd0 .active-93f4 {
    font-size: 0.7rem;
  }

  .title_5cd0 .module_basic_a844 {
    font-size: 0.65rem;
  }

  .current_d565,
  .column-steel-05ed {
    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, .yellow-12e5, .black_5648, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .icon_be84 {
    padding: 1rem;
  }

  .frame-narrow-702e {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .gallery_right_e794 {
    padding: 0.875rem;
  }

  .breadcrumb_6183 {
    font-size: 1.25rem;
  }

  .message-a81e .out-9267 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .video-f720 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .out-9267 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .mini_8d96 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .icon-tall-cc9f {
    padding: 1rem;
  }

  .header_pressed_5907 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .glass-17ea,
  .mask-warm-0d44,
  .sidebar-basic-8772,
  .primary-up-f07a {
    padding: 1rem;
  }
}

@media print {
  .thumbnail-4c19,
  .texture_new_0022,
  .down-1d6e,
  .out-9267,
  .container_thick_dd9a {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .yellow-12e5 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.frame_b589 {
  margin-bottom: 3rem;
  text-align: center;
}

.breadcrumb_13bd {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.notification-e27f {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.component_east_4379,
.avatar_fe53 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.north_2157 {
  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;
}

.north_2157:hover {
  transform: translateY(-5px);
}

.north_2157 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.north_2157 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.image_right_679b {
  margin: 3rem 0;
}

.input-black-f950 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.paragraph_green_ff07 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.paragraph_green_ff07:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.bronze-0bb7 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.text-pressed-7a47 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.thumbnail-a6c1 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.old-8367 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.caption_hard_b62d {
  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;
}

.caption_hard_b62d:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.caption_hard_b62d.card_e143 {
  border-left: 4px solid var(--primary-color);
}

.module-9d50 {
  flex-shrink: 0;
}

.module-9d50 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.menu-8cee {
  flex: 1;
}

.menu-8cee h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.light-7c91 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.frame-bottom-867f,
.popup_0797,
.slider-4f37 {
  margin-bottom: 1.5rem;
}

.frame-bottom-867f h4,
.popup_0797 h4,
.slider-4f37 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.frame-bottom-867f ul,
.popup_0797 ul,
.slider-4f37 ul {
  list-style: none;
  padding: 0;
}

.frame-bottom-867f li,
.popup_0797 li,
.slider-4f37 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.frame-bottom-867f li:before,
.popup_0797 li:before,
.slider-4f37 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.notice-bc00 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.notice-bc00 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;
}

.notice-bc00 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.background_3855 { margin: 2rem 0; }
.easy-d31d { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.easy-d31d h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.red_0829 p { margin-bottom: 1rem; line-height: 1.7; }
.red_0829 strong { color: var(--text-primary); }
.red_0829 ul { list-style: none; padding-left: 0; }
.red_0829 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.red_0829 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.module_smooth_b454 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.tabs-0217 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.tabs-0217:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.feature-hot-a3cf { font-size: 3rem; margin-bottom: 1rem; }
.tabs-0217 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.tabs-0217 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.hidden_4ff7 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.hidden_4ff7 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.detail-b8b8 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.video_90a7 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.hot-afe4 { text-align: center; }
.under_2df7 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.border-brown-9c85 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.accordion_6466 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.left_50da { margin: 2rem 0; }
.down-83d6 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.down-83d6 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.down-83d6 p, .down-83d6 ul { line-height: 1.7; }
.down-83d6 ul { list-style: none; padding-left: 0; }
.down-83d6 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.down-83d6 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.black-e4b2 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.sidebar_a747 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.lower_d2cf { text-align: center; }
.item_045a { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.gallery_north_c9d9 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.title-068c { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.accordion_hard_c7f3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.section-af9d { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.section-af9d:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.section-af9d h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.section-af9d p, .section-af9d ul { line-height: 1.7; }
.section-af9d ul { list-style: none; padding-left: 0; }
.section-af9d ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.section-af9d ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 236a */
.promo-block-x2 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.1;
}
