/* ============================================
   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 */
.sidebar_hot_73bd p,
.texture-63b8,
.banner_d489,
.accordion-outer-2004,
.plasma-c345,
.module-1a72,
.out-dc7c,
.tag-f894 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.large_c67a {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.large_c67a > *,
.medium-c8d5,
.sidebar_hot_73bd,
.row_wide_05df {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .large_c67a {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .large_c67a {
    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 === */
.gradient-6bde {
  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 */
.gradient-6bde.status-9f7d {
  box-shadow: var(--shadow-md);
}

.breadcrumb-7e54 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.mask-fc78 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.modal_c007 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.tiny-4f7f {
  display: none;
}

/* Hide mobile actions on desktop */
.detail_5d94 {
  display: none;
}

.preview_steel_137b a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.preview_steel_137b a:hover,
.preview_steel_137b a.fn-active-f814 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.pink_9770 {
  margin-left: 1rem;
}

.left_ae40 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.inner-d187,
.disabled-paper-80bb {
  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;
}

.inner-d187 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.inner-d187: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;
}

.disabled-paper-80bb {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.disabled-paper-80bb: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;
}

.inner-d187 svg,
.disabled-paper-80bb svg {
  flex-shrink: 0;
}

.link_hard_c9a7 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.focus-copper-39d9 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.focus-copper-39d9::before,
.focus-copper-39d9::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.focus-copper-39d9::before {
  top: -7px;
}

.focus-copper-39d9::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.blue-b129 {
  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 === */
.component_05fc {
  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);
}

.panel-31da {
  margin: 0 0 2rem;
  text-align: center;
}

.gold_1630 {
  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;
}

.gold_1630:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.article-pink-5927 {
  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);
}

.article-pink-5927 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.pagination_4c55 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.under-637b {
  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;
}

.under-637b:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.chip-prev-0ead {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.gold-0daf {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.left-895c {
  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);
}

.left-895c .summary-1456 {
  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;
}

.left-895c .summary-1456 svg {
  flex-shrink: 0;
}

.left-895c .north-da43 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.left-895c .north-da43: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);
}

.left-895c .badge-black-00b7 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.left-895c .badge-black-00b7: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) {
  .component_05fc {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .gold_1630 {
    max-width: 100%;
  }

  .pagination_4c55 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .under-637b {
    padding: 1rem;
  }

  .chip-prev-0ead {
    font-size: 1.5rem;
  }

  .gold-0daf {
    font-size: 0.75rem;
  }

  .article-pink-5927 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .left-895c {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .left-895c .summary-1456 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .pagination_4c55 {
    grid-template-columns: 1fr;
  }
}

.accent-0fd1 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.outline-gold-3ba5 {
  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 === */
.frame_focused_2402 {
  margin-bottom: 2.5rem;
}

.out-59f8 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.accent-0fd1 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.primary-cool-19f0 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.huge-d76d {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.selected-73c7 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.secondary_17b4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.bottom_669e {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.pink-7430 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.slow_c195 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.slow_c195 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.module_c37e {
  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);
}

.hero_blue_296f {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.item-white-9e6a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.block_motion_a348 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.column_b4a9 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.south-e057 {
  display: grid;
  gap: 1rem;
}

.texture-8fb3 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.aside_first_a5a7 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.carousel_e4e6 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.hover_focused_7744 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.inner_8671 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.panel-4744 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.panel-4744 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.texture-63b8 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.dirty-2bdd {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.highlight-smooth-7a1d {
  display: grid;
  gap: 2rem;
}

.pink-02b5 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.huge-d76d {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.primary-cool-19f0 {
  flex: 1;
}

.secondary_17b4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.secondary_17b4 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.detail-023e {
  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;
}

.bottom_669e {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.iron_2a8d {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.iron_2a8d span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.grid_full_5a66 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.grid_full_5a66 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.right_8513 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.right_8513 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.right_8513 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.right_8513 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.west-84aa {
  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 === */
.overlay-lower-9bb3 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.icon-rough-5850 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.liquid-15c2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.label-lite-59c1 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.label-lite-59c1 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.label-lite-59c1 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.label-lite-59c1 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;
}

.label-lite-59c1 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.label-lite-59c1 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.sidebar_hot_73bd {
  padding: 3rem 0 5rem;
}

.row_wide_05df {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.row_wide_05df.simple_7c58 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.banner_d489 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.iron_ec1f {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.tag_d453 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.tag_d453 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.row-brown-c9be {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.brown_2d4a {
  text-align: center;
}

.wide_a13e {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.alert_over_0e22 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.dropdown_7306 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.module-1a72 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.accordion-outer-2004 {
  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;
}

.accordion-outer-2004 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.accordion-outer-2004:hover {
  box-shadow: var(--shadow-lg);
}

.accordion-outer-2004.notice_down_e55c {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.accordion-outer-2004 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.accordion-outer-2004 ul {
  margin: 1rem 0;
}

.accordion-outer-2004 li {
  margin-bottom: 0.75rem;
}

.clean-9faf {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.accent_complex_3203 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.accent_complex_3203 a {
  font-weight: 600;
}

/* === Data Tables === */
.photo-motion-930a {
  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;
}

.photo-motion-930a table {
  width: 100%;
  min-width: 600px;
}

.photo-motion-930a thead {
  background-color: var(--primary-color);
  color: white;
}

.photo-motion-930a th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.photo-motion-930a td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.photo-motion-930a tbody tr:hover {
  background-color: var(--bg-secondary);
}

.photo-motion-930a tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.tertiary_0749 {
  list-style: none;
  margin: 1.5rem 0;
}

.tertiary_0749 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.tertiary_0749 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.table-steel-5f25::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-f814::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 === */
.tertiary-small-d2cf {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.upper-921f {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.upper-921f img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.upper-921f strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.upper-921f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tertiary-small-d2cf blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.out-dc7c {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.out-dc7c::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.in-d030 {
  position: relative;
  margin-bottom: 3rem;
}

.active_9757 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.active_9757 .center_121d {
  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;
}

.tall_0de2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.tall_0de2 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.tall_0de2 ul {
  margin: 1rem 0;
}

.tall_0de2 li {
  margin-bottom: 0.75rem;
}

.black-96ab {
  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 === */
.progress-2481 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.progress-2481 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.hidden-hard-c2ba {
  list-style: none;
  margin: 1.5rem 0;
}

.hidden-hard-c2ba li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.hidden-hard-c2ba a {
  font-weight: 600;
}

.backdrop_38bc {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.tag-f894 {
  margin: 2.5rem 0;
}

.menu-bfad {
  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;
}

.menu-bfad:hover {
  box-shadow: var(--shadow-lg);
}

.menu-bfad.left-ed01 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.full_9ff4 {
  flex-shrink: 0;
}

.full_9ff4 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);
}

.link-new-98e5 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.info-b7cd,
.wrapper_8ddb,
.frame_hovered_c331 {
  width: 100%;
  margin: 1.5rem 0;
}

.thumbnail_fixed_bfdc {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.thumbnail_fixed_bfdc strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.shade-huge-4708 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.shade-huge-4708 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.label_pro_f06c {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.label_pro_f06c strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.old-a750 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.row_5fb9 {
  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;
}

.row_5fb9:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.row_5fb9.section_e2ba {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.row_5fb9 .media-steel-f1f5 {
  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;
}

.row_5fb9 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.complex-0643 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.out_becd {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.out_becd label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.cold-883f {
  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 === */
.summary-1456 {
  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;
}

.north-da43 {
  background-color: var(--primary-color);
  color: white;
}

.north-da43:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.badge-black-00b7 {
  background-color: var(--text-secondary);
  color: white;
}

.badge-black-00b7:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.small-6242 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.small-6242:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.pro_cc41 {
  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;
}

.pro_cc41:hover {
  background-color: var(--primary-dark);
}

.border_e21b {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.right_c140 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.purple-0e24 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.container_pressed_aa14 {
  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-solid-50e8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.backdrop_e10b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.backdrop_e10b h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.caption-easy-6a30 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.overlay_0706 {
  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;
}

.up-bea0 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.south-a64a {
  list-style: none;
  counter-reset: rank-counter;
}

.south-a64a li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.south-a64a 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_iron_d668 {
  list-style: none;
}

.active_iron_d668 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.light_b97e {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.footer_north_538d {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer_north_538d .pressed_b69b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.footer_north_538d .notice-old-a9fd {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.table_advanced_b09e {
  margin-top: 3rem;
}

.tertiary_dark_60d4 {
  width: 100%;
}

.panel-dark-3610 {
  background-color: #fef3c7;
}

.aside-liquid-abe4 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.dirty-401e {
  margin: 3rem 0;
}

.rough_85cd {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.narrow-f7ed {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.narrow-f7ed:hover {
  box-shadow: var(--shadow-lg);
}

.narrow-f7ed.tooltip-8f5c {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.media-b7e3 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.paragraph-bbcc strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.paragraph-bbcc span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.container_05de {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.narrow-f7ed blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.avatar_e147 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.west_7df4 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.tabs-first-f94c {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.text-c238 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.brown-6ee4 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.clean-4977 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.center-6c90 {
  max-width: 900px;
  margin: 0 auto;
}

.soft-e24d {
  margin: 2rem 0;
}

.north_2a65 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.north_2a65 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.north_2a65 summary::-webkit-details-marker {
  display: none;
}

.north_2a65 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.detail-green-a201 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.north_2a65[open] .detail-green-a201 {
  transform: rotate(45deg);
}

.heading-middle-5267 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.heading-middle-5267 p:last-child {
  margin-bottom: 0;
}

.description-2e87 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.mini-1eb0 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.logo_prev_a577 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.logo_prev_a577 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.logo_prev_a577 .summary-1456 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.outer-b4f4 {
  max-width: 900px;
  margin: 0 auto;
}

.old_804e {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.card_blue_877e {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.card_blue_877e.fn-success-f814 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.accordion-small-813c {
  font-size: 3rem;
  line-height: 1;
}

.notification-bab6 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.badge-4b59 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.blue_0425,
.dark_2b2e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.blue_0425 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.dark_2b2e h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.content_steel_73af,
.complex_a226 {
  margin: 1.5rem 0;
}

.content_steel_73af li,
.complex_a226 li {
  margin-bottom: 1rem;
}

.active-current-16a2 {
  margin: 3rem 0;
}

.dropdown_green_0291 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.dropdown_green_0291 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.dropdown_green_0291 ol {
  margin: 1rem 0;
}

.dropdown_green_0291 li {
  margin-bottom: 0.75rem;
}

.panel-373d {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.element-090a {
  margin: 2rem 0;
}

.dim-43f8 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.detail-huge-9a1f {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.paragraph_e3c1 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.warm-7de8 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.notification-wood-8c4e {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.copper_7fc8 {
  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;
}

.copper_7fc8 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.selected-73c7 {
  flex: 1;
}

.selected-73c7 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.west-7fc2 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.tiny-05a5 p {
  margin-bottom: 1rem;
}

.main-wide-9fd5 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.content_6225 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.main-e8a6 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.main-e8a6 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.message-dim-0bad h3 {
  margin-bottom: 1.5rem;
}

.banner-over-bf2e {
  display: grid;
  gap: 2rem;
}

.background-dee5 {
  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;
}

.background-dee5 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.background-dee5 h4 {
  margin: 0 0 0.25rem;
}

.background-dee5 p {
  margin: 0;
  font-size: 0.9375rem;
}

.box-lower-5eb0 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.media_out_d653 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.media_out_d653 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.media_out_d653 ul {
  margin: 1.5rem 0;
}

.media_out_d653 li {
  margin-bottom: 0.75rem;
}

.hovered-4065 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.rough_ed93 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.row-9fae {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.text-soft-1ff8 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.text-soft-1ff8 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.brown_f284 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.brown_f284 a {
  color: rgba(255, 255, 255, 0.8);
}

.block-action-e088 {
  list-style: none;
}

.block-action-e088 li {
  margin-bottom: 0.75rem;
}

.block-action-e088 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.block-action-e088 a:hover {
  color: white;
}

.outer-80a0 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.glass_112f {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.detail-8f76 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.icon-bright-6217 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.rough-eddf {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .large_c67a {
    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;
  }

  .texture_bronze_052c {
    font-size: 1.5rem !important;
  }

  .out-59f8 {
    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 */
  .accordion-outer-2004,
  .plasma-c345,
  .tall_0de2,
  .link-new-98e5,
  .media-b7e3,
  .narrow-f7ed,
  .heading-middle-5267,
  .article-pink-5927,
  .texture-63b8,
  .banner_d489 {
    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 */
  .accent-0fd1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .primary-cool-19f0 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .huge-d76d {
    flex-shrink: 0;
  }

  .selected-73c7 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .secondary_17b4,
  .bottom_669e {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .bottom_669e {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .modal_c007 {
    display: none;
  }

  /* Show mobile actions */
  .detail_5d94 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .pro-f3b4 {
    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;
  }

  .pro-f3b4 svg {
    flex-shrink: 0;
  }

  .pro-f3b4 .medium_76b3 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .pro-f3b4 .table_4d52 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .copper_4845 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .component-iron-2a90 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .pro-f3b4:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .tiny-4f7f {
    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;
  }

  .tiny-4f7f.fn-active-f814 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .tiny-4f7f li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .tiny-4f7f li:last-child {
    border-bottom: none;
  }

  .tiny-4f7f a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .preview_steel_137b {
    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;
  }

  .preview_steel_137b li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .preview_steel_137b li:last-child {
    border-bottom: none;
  }

  .preview_steel_137b a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .pink_9770 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .left_ae40 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .inner-d187,
  .disabled-paper-80bb {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .inner-d187 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .disabled-paper-80bb {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .preview_steel_137b.fn-active-f814 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .link_hard_c9a7 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .gradient-6bde {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .breadcrumb-7e54 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .blue-b129 {
    margin-top: 0;
  }

  /* Hero section */
  .blue-b129 {
    padding: 2rem 0 1.5rem;
  }

  .out-59f8 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .texture-63b8 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .component_05fc {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .gold_1630 {
    max-width: 100%;
    border-radius: 8px;
  }

  .pagination_4c55 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .under-637b {
    padding: 1rem;
  }

  .chip-prev-0ead {
    font-size: 1.5rem;
  }

  .gold-0daf {
    font-size: 0.75rem;
  }

  .article-pink-5927 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .left-895c {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .left-895c .summary-1456 {
    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 */
  .liquid-15c2 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .menu-bfad {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .full_9ff4 {
    margin-bottom: 1rem;
  }

  /* Author */
  .pink-02b5 {
    flex-direction: column;
  }

  .copper_7fc8 {
    flex-direction: column;
  }

  /* Quotes */
  .media-b7e3 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .badge-4b59 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .warm-7de8 {
    flex-direction: column;
  }

  .warm-7de8 .summary-1456 {
    width: 100%;
  }

  /* Version comparison */
  .old-a750 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .sort-solid-50e8 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .row-9fae {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .detail-8f76 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .photo-motion-930a,
  .wrapper_8ddb,
  .background-blue-d4c3,
  .tertiary_dark_60d4,
  .info-b7cd,
  .frame_hovered_c331 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .photo-motion-930a table,
  .wrapper_8ddb table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .cold-883f {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .large_c67a {
    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;
  }

  .texture_bronze_052c {
    font-size: 1.25rem !important;
  }

  .out-59f8 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .gradient-6bde {
    position: fixed;
  }

  .breadcrumb-7e54 {
    padding: 0.625rem 0;
  }

  .mask-fc78 img {
    height: 26px;
  }

  .preview_steel_137b {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .tiny-4f7f {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .pro-f3b4 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .pro-f3b4 svg {
    width: 18px;
    height: 18px;
  }

  .pro-f3b4 .medium_76b3 {
    font-size: 0.7rem;
  }

  .pro-f3b4 .table_4d52 {
    font-size: 0.65rem;
  }

  .inner-d187,
  .disabled-paper-80bb {
    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, .large_c67a, .medium-c8d5, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .component_05fc {
    padding: 1rem;
  }

  .pagination_4c55 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .under-637b {
    padding: 0.875rem;
  }

  .chip-prev-0ead {
    font-size: 1.25rem;
  }

  .left-895c .summary-1456 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .out-59f8 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .summary-1456 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .border_e21b {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .menu-bfad {
    padding: 1rem;
  }

  .full_9ff4 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .accordion-outer-2004,
  .fixed_c928,
  .logo-87b4,
  .text-35e1 {
    padding: 1rem;
  }
}

@media print {
  .gradient-6bde,
  .overlay-lower-9bb3,
  .link_hard_c9a7,
  .summary-1456,
  .rough_ed93 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .large_c67a {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.overlay-hard-19ca {
  margin-bottom: 3rem;
  text-align: center;
}

.texture_bronze_052c {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.red-1ee3 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.text_62d1,
.media-brown-a7ee {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.motion-7465 {
  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;
}

.motion-7465:hover {
  transform: translateY(-5px);
}

.motion-7465 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.motion-7465 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.secondary_north_9919 {
  margin: 3rem 0;
}

.fixed-90a7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.primary_tall_993f {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.primary_tall_993f:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.tabs-liquid-cef0 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.banner-motion-23d1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.heading_83b1 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.selected_1bf4 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.motion_528b {
  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;
}

.motion_528b:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.motion_528b.alert-baa9 {
  border-left: 4px solid var(--primary-color);
}

.pagination_first_7849 {
  flex-shrink: 0;
}

.pagination_first_7849 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.link-4dec {
  flex: 1;
}

.link-4dec h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.thick-14c2 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.notification_5af4,
.notice-fa48,
.hard-e9c7 {
  margin-bottom: 1.5rem;
}

.notification_5af4 h4,
.notice-fa48 h4,
.hard-e9c7 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.notification_5af4 ul,
.notice-fa48 ul,
.hard-e9c7 ul {
  list-style: none;
  padding: 0;
}

.notification_5af4 li,
.notice-fa48 li,
.hard-e9c7 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.notification_5af4 li:before,
.notice-fa48 li:before,
.hard-e9c7 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.large_ea8a {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.large_ea8a 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;
}

.large_ea8a a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.video-up-3699 { margin: 2rem 0; }
.paragraph-light-0c1c { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.paragraph-light-0c1c h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.footer_e4ad p { margin-bottom: 1rem; line-height: 1.7; }
.footer_e4ad strong { color: var(--text-primary); }
.footer_e4ad ul { list-style: none; padding-left: 0; }
.footer_e4ad ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.footer_e4ad ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.easy_3d75 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.block-left-2aa2 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.block-left-2aa2:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.top_0066 { font-size: 3rem; margin-bottom: 1rem; }
.block-left-2aa2 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.block-left-2aa2 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.banner-rough-11a3 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.banner-rough-11a3 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.preview_fc45 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.upper-3ffc { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.thumbnail-paper-91e5 { text-align: center; }
.red_c98d { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.grid_d63a { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.brown-329d { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.yellow-51cf { margin: 2rem 0; }
.picture_26e9 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.picture_26e9 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.picture_26e9 p, .picture_26e9 ul { line-height: 1.7; }
.picture_26e9 ul { list-style: none; padding-left: 0; }
.picture_26e9 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.picture_26e9 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.pro-b1b1 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.accent-east-93d4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.center-d5e3 { text-align: center; }
.column_b054 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.old_b167 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.background_fa64 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.left_8975 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.dropdown-top-e546 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.dropdown-top-e546:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.dropdown-top-e546 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.dropdown-top-e546 p, .dropdown-top-e546 ul { line-height: 1.7; }
.dropdown-top-e546 ul { list-style: none; padding-left: 0; }
.dropdown-top-e546 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.dropdown-top-e546 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: cd53 */
.ghost-box-r4 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.0;
}
