/* ============================================
   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 */
.tag-west-7568 p,
.info_silver_15b5,
.upper-3180,
.left-c09b,
.fresh-3a6a,
.shade_tall_7c6d,
.chip-east-f50a,
.short-1564 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.input_new_7f18 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.input_new_7f18 > *,
.stale-8f70,
.tag-west-7568,
.hot-5573 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .input_new_7f18 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .input_new_7f18 {
    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 === */
.icon-6448 {
  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 */
.icon-6448.heading-8d78 {
  box-shadow: var(--shadow-md);
}

.table_wide_31f0 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.basic_b654 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.sort-2e09 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.motion_768e {
  display: none;
}

/* Hide mobile actions on desktop */
.liquid-d433 {
  display: none;
}

.yellow_d3bf a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.yellow_d3bf a:hover,
.yellow_d3bf a.fn-active-e9d3 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.link_next_cd53 {
  margin-left: 1rem;
}

.active_full_d118 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.texture-dim-bef1,
.tertiary_focused_ae26 {
  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;
}

.texture-dim-bef1 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.texture-dim-bef1: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;
}

.tertiary_focused_ae26 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.tertiary_focused_ae26: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;
}

.texture-dim-bef1 svg,
.tertiary_focused_ae26 svg {
  flex-shrink: 0;
}

.texture-6236 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.bottom-ae86 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.bottom-ae86::before,
.bottom-ae86::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.bottom-ae86::before {
  top: -7px;
}

.bottom-ae86::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.orange-9620 {
  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 === */
.card_3e23 {
  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);
}

.sort-70fb {
  margin: 0 0 2rem;
  text-align: center;
}

.hidden_ffd3 {
  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;
}

.hidden_ffd3:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.border-focused-e451 {
  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);
}

.border-focused-e451 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.under-0c34 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.message-87b2 {
  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;
}

.message-87b2:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.badge-9ae8 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.highlight-405e {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.heading_5a1f {
  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);
}

.heading_5a1f .link_ce25 {
  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;
}

.heading_5a1f .link_ce25 svg {
  flex-shrink: 0;
}

.heading_5a1f .focus_3234 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.heading_5a1f .focus_3234: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);
}

.heading_5a1f .right-1902 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.heading_5a1f .right-1902: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) {
  .card_3e23 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .hidden_ffd3 {
    max-width: 100%;
  }

  .under-0c34 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .message-87b2 {
    padding: 1rem;
  }

  .badge-9ae8 {
    font-size: 1.5rem;
  }

  .highlight-405e {
    font-size: 0.75rem;
  }

  .border-focused-e451 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .heading_5a1f {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .heading_5a1f .link_ce25 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .under-0c34 {
    grid-template-columns: 1fr;
  }
}

.avatar-5b55 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.box_24cf {
  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 === */
.input_f6a8 {
  margin-bottom: 2.5rem;
}

.pro-3eac {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.avatar-5b55 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.highlight_ae18 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.soft-1930 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.silver_baab {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.module_ab06 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.search-96fc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.block_c561 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pattern-47ba {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pattern-47ba svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.fresh-067c {
  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);
}

.column_west_3dd8 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.middle-6017 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.dropdown_current_d50a {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.input_0bf5 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.right_688d {
  display: grid;
  gap: 1rem;
}

.notification-7078 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.border_3a11 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.tabs-yellow-d44b {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.shade-c26e {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.medium_eaa6 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.detail-4f85 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.detail-4f85 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.info_silver_15b5 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.module-pressed-9278 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.highlight-motion-3b8f {
  display: grid;
  gap: 2rem;
}

.full_71a3 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.soft-1930 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.highlight_ae18 {
  flex: 1;
}

.module_ab06 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.module_ab06 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.north-4ff6 {
  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;
}

.search-96fc {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.content-a6dc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.content-a6dc span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.outline_large_2084 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.outline_large_2084 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.feature_new_c43f {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.feature_new_c43f strong {
  display: block;
  margin-bottom: 0.75rem;
}

.feature_new_c43f ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature_new_c43f li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.cool_cd93 {
  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 === */
.highlight-mini-5940 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.feature_61d5 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.focus_3b02 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.heading_1b95 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.heading_1b95 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.heading_1b95 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.heading_1b95 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;
}

.heading_1b95 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.heading_1b95 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.tag-west-7568 {
  padding: 3rem 0 5rem;
}

.hot-5573 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.hot-5573.picture-61bf {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.upper-3180 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.feature_d88d {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.wood-bc06 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.wood-bc06 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.narrow-3819 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stone_c1f0 {
  text-align: center;
}

.button_2f7a {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.sort-66d6 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.up-a7a9 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.shade_tall_7c6d {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.left-c09b {
  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;
}

.left-c09b * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.left-c09b:hover {
  box-shadow: var(--shadow-lg);
}

.left-c09b.north_b412 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.left-c09b h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.left-c09b ul {
  margin: 1rem 0;
}

.left-c09b li {
  margin-bottom: 0.75rem;
}

.aside_bright_1dc1 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.old_64ac {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.old_64ac a {
  font-weight: 600;
}

/* === Data Tables === */
.hero-small-6e8a {
  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;
}

.hero-small-6e8a table {
  width: 100%;
  min-width: 600px;
}

.hero-small-6e8a thead {
  background-color: var(--primary-color);
  color: white;
}

.hero-small-6e8a th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.hero-small-6e8a td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.hero-small-6e8a tbody tr:hover {
  background-color: var(--bg-secondary);
}

.hero-small-6e8a tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.column-orange-67d0 {
  list-style: none;
  margin: 1.5rem 0;
}

.column-orange-67d0 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.column-orange-67d0 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.sidebar-iron-7b8d::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-e9d3::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 === */
.section-bd79 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.thumbnail_next_6ac9 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.thumbnail_next_6ac9 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.thumbnail_next_6ac9 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.thumbnail_next_6ac9 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.section-bd79 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.chip-east-f50a {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.chip-east-f50a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.section-current-a443 {
  position: relative;
  margin-bottom: 3rem;
}

.shade-active-fb97 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.shade-active-fb97 .notification-e5cd {
  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;
}

.overlay_46a5 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.overlay_46a5 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.overlay_46a5 ul {
  margin: 1rem 0;
}

.overlay_46a5 li {
  margin-bottom: 0.75rem;
}

.copper-bb71 {
  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 === */
.notice_bf76 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.notice_bf76 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.orange-779c {
  list-style: none;
  margin: 1.5rem 0;
}

.orange-779c li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.orange-779c a {
  font-weight: 600;
}

.new-a7c5 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.short-1564 {
  margin: 2.5rem 0;
}

.mask_north_0ede {
  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;
}

.mask_north_0ede:hover {
  box-shadow: var(--shadow-lg);
}

.mask_north_0ede.block_smooth_a297 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.carousel_upper_0230 {
  flex-shrink: 0;
}

.carousel_upper_0230 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);
}

.hidden-prev-30e4 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.plasma_0253,
.green_c378,
.secondary_b44a {
  width: 100%;
  margin: 1.5rem 0;
}

.green_a099 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.green_a099 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.shade-smooth-cc85 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.shade-smooth-cc85 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.item_c867 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.item_c867 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.basic-37ee {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.liquid-9ea8 {
  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;
}

.liquid-9ea8:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.liquid-9ea8.heading_50dd {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.liquid-9ea8 .tooltip-liquid-f108 {
  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;
}

.liquid-9ea8 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.thick-de2e {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.east_9a94 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.east_9a94 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.block-cool-0445 {
  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 === */
.link_ce25 {
  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;
}

.focus_3234 {
  background-color: var(--primary-color);
  color: white;
}

.focus_3234:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.right-1902 {
  background-color: var(--text-secondary);
  color: white;
}

.right-1902:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.element_4b4f {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.element_4b4f:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.in_98cc {
  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;
}

.in_98cc:hover {
  background-color: var(--primary-dark);
}

.caption_9e20 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.down_657e {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.yellow-96f5 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.heading_huge_5c65 {
  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 === */
.sort_66d0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.frame_c17c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.frame_c17c h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.tall-6023 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.under_8adc {
  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;
}

.table_a973 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.link_70f5 {
  list-style: none;
  counter-reset: rank-counter;
}

.link_70f5 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.link_70f5 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;
}

.hard_a298 {
  list-style: none;
}

.hard_a298 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.photo-f265 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.box_pro_8875 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.box_pro_8875 .rough_b07c {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.box_pro_8875 .block-medium-3d29 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.badge_old_f225 {
  margin-top: 3rem;
}

.panel_red_0464 {
  width: 100%;
}

.static-a283 {
  background-color: #fef3c7;
}

.smooth-c2c1 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.solid-d8c2 {
  margin: 3rem 0;
}

.header_bronze_62fe {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.background-first-b2a4 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.background-first-b2a4:hover {
  box-shadow: var(--shadow-lg);
}

.background-first-b2a4.prev-4cfe {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.advanced_e8c4 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-b34c strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.footer-b34c span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.search_large_a7bc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.background-first-b2a4 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.accent_7e28 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.gradient_down_de81 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.container-tall-7fa4 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.header_cool_aefc {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.in-e474 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.silver-9735 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.easy-67ee {
  max-width: 900px;
  margin: 0 auto;
}

.hidden-wood-d0c4 {
  margin: 2rem 0;
}

.grid-96e0 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.grid-96e0 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.grid-96e0 summary::-webkit-details-marker {
  display: none;
}

.grid-96e0 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.label-huge-38ea {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.grid-96e0[open] .label-huge-38ea {
  transform: rotate(45deg);
}

.east-d78c {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.east-d78c p:last-child {
  margin-bottom: 0;
}

.east_ca7e {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.small-a692 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.liquid-d140 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.liquid-d140 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.liquid-d140 .link_ce25 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.south-eca3 {
  max-width: 900px;
  margin: 0 auto;
}

.simple-5192 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.in_09d5 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.in_09d5.fn-success-e9d3 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.hard-019b {
  font-size: 3rem;
  line-height: 1;
}

.filter_cc55 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.easy-042d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.tabs-c99b,
.background_first_bcc2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.tabs-c99b h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.background_first_bcc2 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.mini_e0af,
.advanced_3b9e {
  margin: 1.5rem 0;
}

.mini_e0af li,
.advanced_3b9e li {
  margin-bottom: 1rem;
}

.banner_action_27b0 {
  margin: 3rem 0;
}

.slow_d470 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.slow_d470 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.slow_d470 ol {
  margin: 1rem 0;
}

.slow_d470 li {
  margin-bottom: 0.75rem;
}

.slider_wood_5ea6 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.copper-4135 {
  margin: 2rem 0;
}

.tag_aa56 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.status_4ad9 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.icon_134b {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.nav-pressed-65d5 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.accent_769f {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.motion-9df4 {
  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;
}

.motion-9df4 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.silver_baab {
  flex: 1;
}

.silver_baab h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.input_8f41 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.medium-b058 p {
  margin-bottom: 1rem;
}

.focused_ca83 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.current-9f78 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.tabs_north_b18c {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.tabs_north_b18c a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.short-c508 h3 {
  margin-bottom: 1.5rem;
}

.outer_95e8 {
  display: grid;
  gap: 2rem;
}

.lower-615b {
  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;
}

.lower-615b img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.lower-615b h4 {
  margin: 0 0 0.25rem;
}

.lower-615b p {
  margin: 0;
  font-size: 0.9375rem;
}

.hidden-hard-ffd6 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.selected-79ce {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.selected-79ce h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.selected-79ce ul {
  margin: 1.5rem 0;
}

.selected-79ce li {
  margin-bottom: 0.75rem;
}

.status_5c20 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.outline_clean_5760 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.menu-bff2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.lower-500e h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.lower-500e p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.element_af6d {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.element_af6d a {
  color: rgba(255, 255, 255, 0.8);
}

.notification-wide-3a11 {
  list-style: none;
}

.notification-wide-3a11 li {
  margin-bottom: 0.75rem;
}

.notification-wide-3a11 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.notification-wide-3a11 a:hover {
  color: white;
}

.hidden_4988 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.hover_0adb {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.under_c918 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.purple-5635 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.panel_8b0a {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .input_new_7f18 {
    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;
  }

  .info_motion_34e9 {
    font-size: 1.5rem !important;
  }

  .pro-3eac {
    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 */
  .left-c09b,
  .fresh-3a6a,
  .overlay_46a5,
  .hidden-prev-30e4,
  .advanced_e8c4,
  .background-first-b2a4,
  .east-d78c,
  .border-focused-e451,
  .info_silver_15b5,
  .upper-3180 {
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }

  /* Long words in Indonesian */
  ul, ol {
    padding-left: 1.5rem;
    max-width: 100%;
  }

  /* Fix author-info layout on mobile */
  .avatar-5b55 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .highlight_ae18 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .soft-1930 {
    flex-shrink: 0;
  }

  .silver_baab {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .module_ab06,
  .search-96fc {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .search-96fc {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .sort-2e09 {
    display: none;
  }

  /* Show mobile actions */
  .liquid-d433 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .tertiary-e4aa {
    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;
  }

  .tertiary-e4aa svg {
    flex-shrink: 0;
  }

  .tertiary-e4aa .nav_solid_d5be {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .tertiary-e4aa .dim-d40d {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .article_868b {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .badge_5e44 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .tertiary-e4aa:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .motion_768e {
    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;
  }

  .motion_768e.fn-active-e9d3 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .motion_768e li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .motion_768e li:last-child {
    border-bottom: none;
  }

  .motion_768e a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .yellow_d3bf {
    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;
  }

  .yellow_d3bf li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .yellow_d3bf li:last-child {
    border-bottom: none;
  }

  .yellow_d3bf a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .link_next_cd53 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .active_full_d118 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .texture-dim-bef1,
  .tertiary_focused_ae26 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .texture-dim-bef1 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .tertiary_focused_ae26 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .yellow_d3bf.fn-active-e9d3 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .texture-6236 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .icon-6448 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .table_wide_31f0 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .orange-9620 {
    margin-top: 0;
  }

  /* Hero section */
  .orange-9620 {
    padding: 2rem 0 1.5rem;
  }

  .pro-3eac {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .info_silver_15b5 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .card_3e23 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .hidden_ffd3 {
    max-width: 100%;
    border-radius: 8px;
  }

  .under-0c34 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .message-87b2 {
    padding: 1rem;
  }

  .badge-9ae8 {
    font-size: 1.5rem;
  }

  .highlight-405e {
    font-size: 0.75rem;
  }

  .border-focused-e451 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .heading_5a1f {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .heading_5a1f .link_ce25 {
    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 */
  .focus_3b02 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .mask_north_0ede {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .carousel_upper_0230 {
    margin-bottom: 1rem;
  }

  /* Author */
  .full_71a3 {
    flex-direction: column;
  }

  .motion-9df4 {
    flex-direction: column;
  }

  /* Quotes */
  .advanced_e8c4 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .easy-042d {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .nav-pressed-65d5 {
    flex-direction: column;
  }

  .nav-pressed-65d5 .link_ce25 {
    width: 100%;
  }

  /* Version comparison */
  .basic-37ee {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .sort_66d0 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .menu-bff2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .under_c918 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .hero-small-6e8a,
  .green_c378,
  .table-c536,
  .panel_red_0464,
  .plasma_0253,
  .secondary_b44a {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hero-small-6e8a table,
  .green_c378 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .block-cool-0445 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .input_new_7f18 {
    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;
  }

  .info_motion_34e9 {
    font-size: 1.25rem !important;
  }

  .pro-3eac {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .icon-6448 {
    position: fixed;
  }

  .table_wide_31f0 {
    padding: 0.625rem 0;
  }

  .basic_b654 img {
    height: 26px;
  }

  .yellow_d3bf {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .motion_768e {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .tertiary-e4aa {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .tertiary-e4aa svg {
    width: 18px;
    height: 18px;
  }

  .tertiary-e4aa .nav_solid_d5be {
    font-size: 0.7rem;
  }

  .tertiary-e4aa .dim-d40d {
    font-size: 0.65rem;
  }

  .texture-dim-bef1,
  .tertiary_focused_ae26 {
    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, .input_new_7f18, .stale-8f70, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .card_3e23 {
    padding: 1rem;
  }

  .under-0c34 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .message-87b2 {
    padding: 0.875rem;
  }

  .badge-9ae8 {
    font-size: 1.25rem;
  }

  .heading_5a1f .link_ce25 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .pro-3eac {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .link_ce25 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .caption_9e20 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .mask_north_0ede {
    padding: 1rem;
  }

  .carousel_upper_0230 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .left-c09b,
  .caption-1f18,
  .detail_eb67,
  .outer_6405 {
    padding: 1rem;
  }
}

@media print {
  .icon-6448,
  .highlight-mini-5940,
  .texture-6236,
  .link_ce25,
  .outline_clean_5760 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .input_new_7f18 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.slider-new-9ea7 {
  margin-bottom: 3rem;
  text-align: center;
}

.info_motion_34e9 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.large-8a49 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.lower-a11a,
.copper-4761 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.out-236d {
  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;
}

.out-236d:hover {
  transform: translateY(-5px);
}

.out-236d strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.out-236d span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.hover-white-f26b {
  margin: 3rem 0;
}

.panel-6eed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.panel_6e90 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.panel_6e90:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.search_tall_f7a0 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.message-wood-301b {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.heading_a536 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.backdrop-020e {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.pattern-north-2f80 {
  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;
}

.pattern-north-2f80:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.pattern-north-2f80.layout-2902 {
  border-left: 4px solid var(--primary-color);
}

.tall_cad0 {
  flex-shrink: 0;
}

.tall_cad0 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.video-down-7b19 {
  flex: 1;
}

.video-down-7b19 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.shadow-white-b6e5 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.advanced-eaf7,
.module_left_8016,
.outline-clean-8d16 {
  margin-bottom: 1.5rem;
}

.advanced-eaf7 h4,
.module_left_8016 h4,
.outline-clean-8d16 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.advanced-eaf7 ul,
.module_left_8016 ul,
.outline-clean-8d16 ul {
  list-style: none;
  padding: 0;
}

.advanced-eaf7 li,
.module_left_8016 li,
.outline-clean-8d16 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.advanced-eaf7 li:before,
.module_left_8016 li:before,
.outline-clean-8d16 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.up_d827 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.up_d827 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;
}

.up_d827 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.orange_4e94 { margin: 2rem 0; }
.notification-007f { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.notification-007f h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.dark-142f p { margin-bottom: 1rem; line-height: 1.7; }
.dark-142f strong { color: var(--text-primary); }
.dark-142f ul { list-style: none; padding-left: 0; }
.dark-142f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.dark-142f ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.list_plasma_a7e8 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.block-slow-ebe5 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.block-slow-ebe5:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.badge_tiny_c28b { font-size: 3rem; margin-bottom: 1rem; }
.block-slow-ebe5 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.block-slow-ebe5 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.brown_ea3c { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.brown_ea3c span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.new-9af5 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.gold-72fb { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.iron-fcff { text-align: center; }
.wrapper_full_687e { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.up_3cb0 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.lite-b545 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.action-b7c2 { margin: 2rem 0; }
.clean-8212 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.clean-8212 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.clean-8212 p, .clean-8212 ul { line-height: 1.7; }
.clean-8212 ul { list-style: none; padding-left: 0; }
.clean-8212 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.clean-8212 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.background-yellow-948e { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.advanced_160d { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.small-9f4e { text-align: center; }
.progress_paper_63a9 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.motion-7cbb { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.tertiary_bccd { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.static_1e84 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.hidden_4d6f { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.hidden_4d6f:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.hidden_4d6f h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.hidden_4d6f p, .hidden_4d6f ul { line-height: 1.7; }
.hidden_4d6f ul { list-style: none; padding-left: 0; }
.hidden_4d6f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.hidden_4d6f ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: d80b */
.widget-item-r8 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.1;
}
