/* ============================================
   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 */
.preview-3b8f p,
.fixed-fbfe,
.lower_3c18,
.selected_a6f2,
.table_old_e870,
.large-cf9e,
.title-1844,
.motion-e6d6 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.frame_ea39 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.frame_ea39 > *,
.section-green-a2c5,
.preview-3b8f,
.orange_2a49 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .frame_ea39 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .frame_ea39 {
    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 === */
.in-cc4c {
  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 */
.in-cc4c.steel_ba14 {
  box-shadow: var(--shadow-md);
}

.highlight-c743 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.message_9d9e img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.outline_783f {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.icon-clean-baa5 {
  display: none;
}

/* Hide mobile actions on desktop */
.basic_d0e7 {
  display: none;
}

.block-fb74 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.block-fb74 a:hover,
.block-fb74 a.fn-active-4ed6 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.summary-glass-1323 {
  margin-left: 1rem;
}

.slider-gold-cfa2 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.aside_pressed_d0e8,
.component_16f7 {
  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;
}

.aside_pressed_d0e8 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.aside_pressed_d0e8: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;
}

.component_16f7 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.component_16f7: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;
}

.aside_pressed_d0e8 svg,
.component_16f7 svg {
  flex-shrink: 0;
}

.status-pink-ef95 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.highlight-49d5 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.highlight-49d5::before,
.highlight-49d5::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.highlight-49d5::before {
  top: -7px;
}

.highlight-49d5::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.content-3ef3 {
  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 === */
.element-9dde {
  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);
}

.texture-928e {
  margin: 0 0 2rem;
  text-align: center;
}

.right_42b7 {
  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;
}

.right_42b7:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.tiny_76f3 {
  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);
}

.tiny_76f3 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.focus_84f1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.gradient_6f07 {
  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;
}

.gradient_6f07:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.hot-e33f {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.slow-7cab {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.liquid_9ad7 {
  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);
}

.liquid_9ad7 .narrow-3d72 {
  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;
}

.liquid_9ad7 .narrow-3d72 svg {
  flex-shrink: 0;
}

.liquid_9ad7 .notice-5404 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.liquid_9ad7 .notice-5404: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);
}

.liquid_9ad7 .sidebar-7743 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.liquid_9ad7 .sidebar-7743: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) {
  .element-9dde {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .right_42b7 {
    max-width: 100%;
  }

  .focus_84f1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gradient_6f07 {
    padding: 1rem;
  }

  .hot-e33f {
    font-size: 1.5rem;
  }

  .slow-7cab {
    font-size: 0.75rem;
  }

  .tiny_76f3 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .liquid_9ad7 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .liquid_9ad7 .narrow-3d72 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .focus_84f1 {
    grid-template-columns: 1fr;
  }
}

.modal-fixed-1da6 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-plasma-59ce {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

time {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* === Article Header & Meta === */
.popup-dark-3ba6 {
  margin-bottom: 2.5rem;
}

.hero-82b8 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.modal-fixed-1da6 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.image_rough_8a78 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.notification_middle_90a1 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.red_c6d1 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.article-47ff {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.box_2a79 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.slider-7905 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.icon-copper-cbb4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.icon-copper-cbb4 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.menu-iron-3b9f {
  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);
}

.tabs-hard-bf2b {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.badge-cf1e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hot-8de3 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.video_silver_f5fe {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.new-011d {
  display: grid;
  gap: 1rem;
}

.sidebar_2960 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.fast-a373 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.bottom_05cd {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.narrow-88c9 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.dropdown_99b6 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.column-solid-0c37 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.column-solid-0c37 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.fixed-fbfe {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.button-13b2 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.complex_ff57 {
  display: grid;
  gap: 2rem;
}

.fast_c019 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.notification_middle_90a1 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.image_rough_8a78 {
  flex: 1;
}

.article-47ff {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.article-47ff a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.gold-f3dc {
  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;
}

.box_2a79 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.border_2ad4 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.border_2ad4 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.large-9802 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.large-9802 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.hovered-413c {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.hovered-413c strong {
  display: block;
  margin-bottom: 0.75rem;
}

.hovered-413c ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hovered-413c li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.brown_a38c {
  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 === */
.large_1b5c {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.panel_warm_d1aa {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.title_57b2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.outline-5118 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.outline-5118 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.outline-5118 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.outline-5118 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;
}

.outline-5118 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.outline-5118 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.preview-3b8f {
  padding: 3rem 0 5rem;
}

.orange_2a49 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.orange_2a49.primary-a135 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.lower_3c18 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.focus_selected_b503 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.layout_tiny_a9a0 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.layout_tiny_a9a0 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.small_09e9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.middle-93cb {
  text-align: center;
}

.motion-72a7 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.large-7959 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.section-e60f {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.large-cf9e {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.selected_a6f2 {
  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;
}

.selected_a6f2 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.selected_a6f2:hover {
  box-shadow: var(--shadow-lg);
}

.selected_a6f2.tooltip_5d9d {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.selected_a6f2 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.selected_a6f2 ul {
  margin: 1rem 0;
}

.selected_a6f2 li {
  margin-bottom: 0.75rem;
}

.sort_tall_666a {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.focused-4258 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.focused-4258 a {
  font-weight: 600;
}

/* === Data Tables === */
.red_4bb7 {
  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;
}

.red_4bb7 table {
  width: 100%;
  min-width: 600px;
}

.red_4bb7 thead {
  background-color: var(--primary-color);
  color: white;
}

.red_4bb7 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.red_4bb7 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.red_4bb7 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.red_4bb7 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.plasma_f606 {
  list-style: none;
  margin: 1.5rem 0;
}

.plasma_f606 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.plasma_f606 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.mini-8cc2::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-4ed6::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 === */
.label_wide_2601 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.status_inner_91bd {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.status_inner_91bd img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.status_inner_91bd strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.status_inner_91bd span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.label_wide_2601 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.title-1844 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.title-1844::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.wrapper_full_d1bc {
  position: relative;
  margin-bottom: 3rem;
}

.item_easy_d8e8 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.item_easy_d8e8 .filter-4e02 {
  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;
}

.accent-54e5 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.accent-54e5 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.accent-54e5 ul {
  margin: 1rem 0;
}

.accent-54e5 li {
  margin-bottom: 0.75rem;
}

.content-2a71 {
  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 === */
.primary_over_6c0e {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.primary_over_6c0e h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.banner_soft_1b3b {
  list-style: none;
  margin: 1.5rem 0;
}

.banner_soft_1b3b li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.banner_soft_1b3b a {
  font-weight: 600;
}

.column_next_87b2 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.motion-e6d6 {
  margin: 2.5rem 0;
}

.secondary_5f7e {
  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;
}

.secondary_5f7e:hover {
  box-shadow: var(--shadow-lg);
}

.secondary_5f7e.hot_3f6e {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.accent_4fcb {
  flex-shrink: 0;
}

.accent_4fcb 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);
}

.thumbnail_prev_ea64 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.banner-lite-ff5c,
.row-hard-e139,
.media_cool_6837 {
  width: 100%;
  margin: 1.5rem 0;
}

.sidebar-down-e50a {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.sidebar-down-e50a strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.photo_new_d70b {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.photo_new_d70b strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.avatar-629b {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.avatar-629b strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.disabled_fixed_8739 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.accordion_right_5c04 {
  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;
}

.accordion_right_5c04:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.accordion_right_5c04.disabled_focused_66f6 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.accordion_right_5c04 .feature-advanced-6e09 {
  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;
}

.accordion_right_5c04 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.tag-770d {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.green_b502 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.green_b502 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.full_f0d5 {
  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 === */
.narrow-3d72 {
  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;
}

.notice-5404 {
  background-color: var(--primary-color);
  color: white;
}

.notice-5404:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.sidebar-7743 {
  background-color: var(--text-secondary);
  color: white;
}

.sidebar-7743:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.fixed_60e9 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.fixed_60e9:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.fluid_ef19 {
  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;
}

.fluid_ef19:hover {
  background-color: var(--primary-dark);
}

.accordion-c6d5 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.dynamic-ff4f {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.tiny_7d11 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.info_e47f {
  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 === */
.purple_6997 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.content_old_5d6f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.content_old_5d6f h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.breadcrumb_black_c4ff {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.block_soft_d400 {
  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;
}

.input-50a6 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.surface-cc57 {
  list-style: none;
  counter-reset: rank-counter;
}

.surface-cc57 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.surface-cc57 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;
}

.active_c72d {
  list-style: none;
}

.active_c72d li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.media_1b80 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.silver-75b2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.silver-75b2 .table-plasma-ae6e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.silver-75b2 .summary-prev-fea4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.stone_4763 {
  margin-top: 3rem;
}

.hero-over-5ebf {
  width: 100%;
}

.box-3d0f {
  background-color: #fef3c7;
}

.text_cold_11bb {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.black_69a2 {
  margin: 3rem 0;
}

.footer_bb93 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.surface_short_87da {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.surface_short_87da:hover {
  box-shadow: var(--shadow-lg);
}

.surface_short_87da.dropdown-6061 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.block-outer-4777 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.focused-a161 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.focused-a161 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pattern-1e08 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.surface_short_87da blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.red_3dcc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.blue-f6a7 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.under_19e7 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.picture-brown-0f4e {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.short-5b1a {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.logo-d5cd {
  margin-top: 1rem;
}

/* === FAQ Section === */
.rough_790b {
  max-width: 900px;
  margin: 0 auto;
}

.black-addc {
  margin: 2rem 0;
}

.gallery_pressed_a9be {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.gallery_pressed_a9be summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.gallery_pressed_a9be summary::-webkit-details-marker {
  display: none;
}

.gallery_pressed_a9be summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.highlight_24c5 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.gallery_pressed_a9be[open] .highlight_24c5 {
  transform: rotate(45deg);
}

.carousel-60f5 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.carousel-60f5 p:last-child {
  margin-bottom: 0;
}

.paragraph-brown-13c0 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.media-c7d1 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.feature-tiny-c705 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.feature-tiny-c705 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.feature-tiny-c705 .narrow-3d72 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.silver_7cff {
  max-width: 900px;
  margin: 0 auto;
}

.card_paper_4147 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.icon-advanced-ec25 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.icon-advanced-ec25.fn-success-4ed6 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.item_right_e4f0 {
  font-size: 3rem;
  line-height: 1;
}

.message_large_2678 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.green-824b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.wrapper_1a12,
.badge-green-5ba2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.wrapper_1a12 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.badge-green-5ba2 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.yellow-4ce7,
.table_1c8a {
  margin: 1.5rem 0;
}

.yellow-4ce7 li,
.table_1c8a li {
  margin-bottom: 1rem;
}

.card-over-a449 {
  margin: 3rem 0;
}

.current_3ca6 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.current_3ca6 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.current_3ca6 ol {
  margin: 1rem 0;
}

.current_3ca6 li {
  margin-bottom: 0.75rem;
}

.box-pink-f430 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.modal_67de {
  margin: 2rem 0;
}

.clean_6964 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.mask-198e {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.row-6c6a {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.orange_ea19 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.label_active_51da {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.next_a09a {
  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;
}

.next_a09a img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.red_c6d1 {
  flex: 1;
}

.red_c6d1 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.summary-885f {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.dim_4725 p {
  margin-bottom: 1rem;
}

.info_d455 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.slider_static_df42 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.chip_077d {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.chip_077d a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.frame_light_4fdc h3 {
  margin-bottom: 1.5rem;
}

.accordion-lite-d9b8 {
  display: grid;
  gap: 2rem;
}

.outline_static_818f {
  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;
}

.outline_static_818f img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.outline_static_818f h4 {
  margin: 0 0 0.25rem;
}

.outline_static_818f p {
  margin: 0;
  font-size: 0.9375rem;
}

.hero_fd13 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.east_26bf {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.east_26bf h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.east_26bf ul {
  margin: 1.5rem 0;
}

.east_26bf li {
  margin-bottom: 0.75rem;
}

.notification_hard_2d17 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.badge_8a10 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.active-761e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.clean_28f6 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.clean_28f6 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.main_450d {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.main_450d a {
  color: rgba(255, 255, 255, 0.8);
}

.menu_short_e527 {
  list-style: none;
}

.menu_short_e527 li {
  margin-bottom: 0.75rem;
}

.menu_short_e527 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.menu_short_e527 a:hover {
  color: white;
}

.copper_c63f {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.thumbnail-107d {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.small-6d9c {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.large_3352 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.label_green_fe53 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .frame_ea39 {
    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;
  }

  .tertiary-hot-704f {
    font-size: 1.5rem !important;
  }

  .hero-82b8 {
    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 */
  .selected_a6f2,
  .table_old_e870,
  .accent-54e5,
  .thumbnail_prev_ea64,
  .block-outer-4777,
  .surface_short_87da,
  .carousel-60f5,
  .tiny_76f3,
  .fixed-fbfe,
  .lower_3c18 {
    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 */
  .modal-fixed-1da6 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .image_rough_8a78 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .notification_middle_90a1 {
    flex-shrink: 0;
  }

  .red_c6d1 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .article-47ff,
  .box_2a79 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .box_2a79 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .outline_783f {
    display: none;
  }

  /* Show mobile actions */
  .basic_d0e7 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .prev_a580 {
    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;
  }

  .prev_a580 svg {
    flex-shrink: 0;
  }

  .prev_a580 .wood_a51c {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .prev_a580 .title_thick_c2b6 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .highlight-55ed {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .search-cold-7a43 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .prev_a580:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .icon-clean-baa5 {
    display: block;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    list-style: none;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-height: calc(100vh - 75px);
    overflow-y: auto;
  }

  .icon-clean-baa5.fn-active-4ed6 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .icon-clean-baa5 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .icon-clean-baa5 li:last-child {
    border-bottom: none;
  }

  .icon-clean-baa5 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .block-fb74 {
    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;
  }

  .block-fb74 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .block-fb74 li:last-child {
    border-bottom: none;
  }

  .block-fb74 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .summary-glass-1323 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .slider-gold-cfa2 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .aside_pressed_d0e8,
  .component_16f7 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .aside_pressed_d0e8 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .component_16f7 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .block-fb74.fn-active-4ed6 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .status-pink-ef95 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .in-cc4c {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .highlight-c743 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .content-3ef3 {
    margin-top: 0;
  }

  /* Hero section */
  .content-3ef3 {
    padding: 2rem 0 1.5rem;
  }

  .hero-82b8 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .fixed-fbfe {
    font-size: 1rem;
  }

  /* Hero brand image */
  .element-9dde {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .right_42b7 {
    max-width: 100%;
    border-radius: 8px;
  }

  .focus_84f1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gradient_6f07 {
    padding: 1rem;
  }

  .hot-e33f {
    font-size: 1.5rem;
  }

  .slow-7cab {
    font-size: 0.75rem;
  }

  .tiny_76f3 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .liquid_9ad7 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .liquid_9ad7 .narrow-3d72 {
    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 */
  .title_57b2 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .secondary_5f7e {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .accent_4fcb {
    margin-bottom: 1rem;
  }

  /* Author */
  .fast_c019 {
    flex-direction: column;
  }

  .next_a09a {
    flex-direction: column;
  }

  /* Quotes */
  .block-outer-4777 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .green-824b {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .orange_ea19 {
    flex-direction: column;
  }

  .orange_ea19 .narrow-3d72 {
    width: 100%;
  }

  /* Version comparison */
  .disabled_fixed_8739 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .purple_6997 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .active-761e {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .small-6d9c {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .red_4bb7,
  .row-hard-e139,
  .easy_3cbd,
  .hero-over-5ebf,
  .banner-lite-ff5c,
  .media_cool_6837 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .red_4bb7 table,
  .row-hard-e139 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .full_f0d5 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .frame_ea39 {
    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;
  }

  .tertiary-hot-704f {
    font-size: 1.25rem !important;
  }

  .hero-82b8 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .in-cc4c {
    position: fixed;
  }

  .highlight-c743 {
    padding: 0.625rem 0;
  }

  .message_9d9e img {
    height: 26px;
  }

  .block-fb74 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .icon-clean-baa5 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .prev_a580 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .prev_a580 svg {
    width: 18px;
    height: 18px;
  }

  .prev_a580 .wood_a51c {
    font-size: 0.7rem;
  }

  .prev_a580 .title_thick_c2b6 {
    font-size: 0.65rem;
  }

  .aside_pressed_d0e8,
  .component_16f7 {
    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, .frame_ea39, .section-green-a2c5, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .element-9dde {
    padding: 1rem;
  }

  .focus_84f1 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .gradient_6f07 {
    padding: 0.875rem;
  }

  .hot-e33f {
    font-size: 1.25rem;
  }

  .liquid_9ad7 .narrow-3d72 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .hero-82b8 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .narrow-3d72 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .accordion-c6d5 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .secondary_5f7e {
    padding: 1rem;
  }

  .accent_4fcb span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .selected_a6f2,
  .element-large-692e,
  .progress_979d,
  .tag-8ef5 {
    padding: 1rem;
  }
}

@media print {
  .in-cc4c,
  .large_1b5c,
  .status-pink-ef95,
  .narrow-3d72,
  .badge_8a10 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .frame_ea39 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.search-6c03 {
  margin-bottom: 3rem;
  text-align: center;
}

.tertiary-hot-704f {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.first_f095 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.hidden-5a3d,
.wide_94eb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.content-070f {
  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;
}

.content-070f:hover {
  transform: translateY(-5px);
}

.content-070f strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.content-070f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.modal-fe65 {
  margin: 3rem 0;
}

.filter-cold-a290 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.carousel_hot_808b {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.carousel_hot_808b:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.title-green-3228 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.popup_bottom_5d83 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.wood_d6b5 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.icon-c951 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.secondary_pink_c7fb {
  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;
}

.secondary_pink_c7fb:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.secondary_pink_c7fb.accent-basic-69c1 {
  border-left: 4px solid var(--primary-color);
}

.logo_f6ce {
  flex-shrink: 0;
}

.logo_f6ce svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.popup_b943 {
  flex: 1;
}

.popup_b943 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.focused_6f3e {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.active_e69f,
.small-fb56,
.sidebar_4adc {
  margin-bottom: 1.5rem;
}

.active_e69f h4,
.small-fb56 h4,
.sidebar_4adc h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.active_e69f ul,
.small-fb56 ul,
.sidebar_4adc ul {
  list-style: none;
  padding: 0;
}

.active_e69f li,
.small-fb56 li,
.sidebar_4adc li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.active_e69f li:before,
.small-fb56 li:before,
.sidebar_4adc li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.soft-9ed9 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.soft-9ed9 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;
}

.soft-9ed9 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.module_old_16f7 { margin: 2rem 0; }
.outer_f9a4 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.outer_f9a4 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.aside-9abf p { margin-bottom: 1rem; line-height: 1.7; }
.aside-9abf strong { color: var(--text-primary); }
.aside-9abf ul { list-style: none; padding-left: 0; }
.aside-9abf ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.aside-9abf ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.dark-9020 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.shadow-1aa6 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.shadow-1aa6:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.sidebar-down-5f43 { font-size: 3rem; margin-bottom: 1rem; }
.shadow-1aa6 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.shadow-1aa6 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.lower_bc3f { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.lower_bc3f span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.pagination_1c08 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.grid_4e83 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.active-easy-8a5f { text-align: center; }
.item_glass_e477 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.dim-70e3 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.image_tall_e054 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.hidden-80c5 { margin: 2rem 0; }
.gradient-9bd7 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.gradient-9bd7 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.gradient-9bd7 p, .gradient-9bd7 ul { line-height: 1.7; }
.gradient-9bd7 ul { list-style: none; padding-left: 0; }
.gradient-9bd7 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.gradient-9bd7 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.east_c193 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.tooltip-easy-9444 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.caption-082a { text-align: center; }
.element_a17d { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.wrapper-716d { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.block-5846 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.heading_445e { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.tag_red_899a { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.tag_red_899a:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.tag_red_899a h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.tag_red_899a p, .tag_red_899a ul { line-height: 1.7; }
.tag_red_899a ul { list-style: none; padding-left: 0; }
.tag_red_899a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.tag_red_899a ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 2c4f */
.phantom-card-y3 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.3;
}
