/* ============================================
   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 */
.texture_mini_2acd p,
.focus_b14a,
.rough-9b85,
.upper_5ae5,
.plasma_dd75,
.icon_north_c419,
.lower-38d5,
.border-21e0 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.frame_f9e3 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.frame_f9e3 > *,
.rough-9a75,
.texture_mini_2acd,
.hero_dirty_2f31 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .frame_f9e3 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .frame_f9e3 {
    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 === */
.gas_f2f8 {
  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 */
.gas_f2f8.hero_yellow_f11e {
  box-shadow: var(--shadow-md);
}

.paragraph-506d {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.input-full-bc7b img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.frame-advanced-9297 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.pro-57ad {
  display: none;
}

/* Hide mobile actions on desktop */
.caption-7c6d {
  display: none;
}

.section-657a a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.section-657a a:hover,
.section-657a a.fn-active-8510 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.secondary_62e7 {
  margin-left: 1rem;
}

.out_f854 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer_1081,
.summary-easy-0526 {
  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;
}

.footer_1081 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.footer_1081: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;
}

.summary-easy-0526 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.summary-easy-0526: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;
}

.footer_1081 svg,
.summary-easy-0526 svg {
  flex-shrink: 0;
}

.up-2bbe {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.primary_rough_483a {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.primary_rough_483a::before,
.primary_rough_483a::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.primary_rough_483a::before {
  top: -7px;
}

.primary_rough_483a::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.container-60e9 {
  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 === */
.detail_tall_038b {
  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);
}

.pagination_fc9a {
  margin: 0 0 2rem;
  text-align: center;
}

.notice-c287 {
  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;
}

.notice-c287:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.stone-1c83 {
  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);
}

.stone-1c83 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.over_cf50 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.advanced-572d {
  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;
}

.advanced-572d:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.message-active-d8c3 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.popup_9a29 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.thumbnail_fa86 {
  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);
}

.thumbnail_fa86 .logo_deed {
  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;
}

.thumbnail_fa86 .logo_deed svg {
  flex-shrink: 0;
}

.thumbnail_fa86 .new-e432 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.thumbnail_fa86 .new-e432: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);
}

.thumbnail_fa86 .mini-050a {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.thumbnail_fa86 .mini-050a: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) {
  .detail_tall_038b {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .notice-c287 {
    max-width: 100%;
  }

  .over_cf50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .advanced-572d {
    padding: 1rem;
  }

  .message-active-d8c3 {
    font-size: 1.5rem;
  }

  .popup_9a29 {
    font-size: 0.75rem;
  }

  .stone-1c83 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .thumbnail_fa86 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .thumbnail_fa86 .logo_deed {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .over_cf50 {
    grid-template-columns: 1fr;
  }
}

.gradient_5426 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tag_d665 {
  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 === */
.glass_642f {
  margin-bottom: 2.5rem;
}

.purple-e95a {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.gradient_5426 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.dark-434c {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-plasma-df04 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.first-047b {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stone-ce72 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.heading_694f {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.static-890c {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.copper-4ac4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.copper-4ac4 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.block_701b {
  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);
}

.button_a072 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.fast_d768 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.gas_0607 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.texture-smooth-c374 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.content_5a57 {
  display: grid;
  gap: 1rem;
}

.disabled-west-bc96 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.full_d6d1 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.element_cool_8b24 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.tertiary_ea65 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.hidden-5e0c {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.disabled-79ee {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.disabled-79ee p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.focus_b14a {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.nav_2395 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.description-inner-b7ab {
  display: grid;
  gap: 2rem;
}

.liquid-5db9 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.search-plasma-df04 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.dark-434c {
  flex: 1;
}

.stone-ce72 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.stone-ce72 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.item_white_4a13 {
  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;
}

.heading_694f {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.alert_29fa {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.alert_29fa span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.icon_4475 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.icon_4475 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.slider_f08b {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.slider_f08b strong {
  display: block;
  margin-bottom: 0.75rem;
}

.slider_f08b ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slider_f08b li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.slider-wood-ed1c {
  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 === */
.tag-focused-79ff {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.detail-b4a5 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.under-0878 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gradient_wood_42b3 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.gradient_wood_42b3 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.gradient_wood_42b3 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.gradient_wood_42b3 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;
}

.gradient_wood_42b3 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.gradient_wood_42b3 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.texture_mini_2acd {
  padding: 3rem 0 5rem;
}

.hero_dirty_2f31 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.hero_dirty_2f31.slow_2506 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.rough-9b85 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.card-1e41 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.picture_92a3 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.picture_92a3 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.table_f79b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.sidebar_prev_a9bc {
  text-align: center;
}

.modal-2085 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.element-47d1 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.focus_warm_e3b0 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.icon_north_c419 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.upper_5ae5 {
  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;
}

.upper_5ae5 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.upper_5ae5:hover {
  box-shadow: var(--shadow-lg);
}

.upper_5ae5.image_932a {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.upper_5ae5 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.upper_5ae5 ul {
  margin: 1rem 0;
}

.upper_5ae5 li {
  margin-bottom: 0.75rem;
}

.cold-31f4 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.focus-7fbd {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.focus-7fbd a {
  font-weight: 600;
}

/* === Data Tables === */
.sort_thick_de64 {
  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;
}

.sort_thick_de64 table {
  width: 100%;
  min-width: 600px;
}

.sort_thick_de64 thead {
  background-color: var(--primary-color);
  color: white;
}

.sort_thick_de64 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.sort_thick_de64 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.sort_thick_de64 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.sort_thick_de64 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.grid-7a2a {
  list-style: none;
  margin: 1.5rem 0;
}

.grid-7a2a li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.grid-7a2a li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.right-d043::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-8510::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 === */
.alert_2e76 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.label_b898 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.label_b898 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.label_b898 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.label_b898 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.alert_2e76 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.lower-38d5 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.lower-38d5::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.active_785f {
  position: relative;
  margin-bottom: 3rem;
}

.background_north_ea02 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.background_north_ea02 .gallery-b282 {
  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;
}

.pagination-9f68 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.pagination-9f68 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.pagination-9f68 ul {
  margin: 1rem 0;
}

.pagination-9f68 li {
  margin-bottom: 0.75rem;
}

.card-f700 {
  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 === */
.header-84a9 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.header-84a9 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.hot-bb6f {
  list-style: none;
  margin: 1.5rem 0;
}

.hot-bb6f li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.hot-bb6f a {
  font-weight: 600;
}

.out_469f {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.border-21e0 {
  margin: 2.5rem 0;
}

.avatar_2c01 {
  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;
}

.avatar_2c01:hover {
  box-shadow: var(--shadow-lg);
}

.avatar_2c01.block_1488 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.card-5b8f {
  flex-shrink: 0;
}

.card-5b8f 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-fb05 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.shadow-bottom-c2aa,
.basic-32af,
.motion_1e9a {
  width: 100%;
  margin: 1.5rem 0;
}

.button_upper_a145 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.button_upper_a145 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.pagination-hard-3cae {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.pagination-hard-3cae strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.component-4322 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.component-4322 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.description-d8fc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.wood_0cd9 {
  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;
}

.wood_0cd9:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.wood_0cd9.tooltip_ec8a {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.wood_0cd9 .green-90bd {
  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;
}

.wood_0cd9 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.down-8727 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.module_small_af22 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.module_small_af22 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.caption-17c6 {
  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 === */
.logo_deed {
  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;
}

.new-e432 {
  background-color: var(--primary-color);
  color: white;
}

.new-e432:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.mini-050a {
  background-color: var(--text-secondary);
  color: white;
}

.mini-050a:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.thumbnail_86f4 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.thumbnail_86f4:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.focus-b55e {
  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;
}

.focus-b55e:hover {
  background-color: var(--primary-dark);
}

.notice-8685 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.notification_07c7 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.layout_hovered_c8dd {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.active_pro_4c52 {
  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 === */
.thumbnail_7067 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.lower_d9b7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.lower_d9b7 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.new-331c {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.frame-ed2f {
  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;
}

.tabs-narrow-ea54 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.icon-white-b54a {
  list-style: none;
  counter-reset: rank-counter;
}

.icon-white-b54a li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.icon-white-b54a 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;
}

.upper_3453 {
  list-style: none;
}

.upper_3453 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.heading_c3fb {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.text_c747 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.text_c747 .box-7bc9 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.text_c747 .footer_e167 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.prev-c369 {
  margin-top: 3rem;
}

.tiny-5727 {
  width: 100%;
}

.heading-current-411a {
  background-color: #fef3c7;
}

.banner-narrow-a383 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.block_9384 {
  margin: 3rem 0;
}

.box_70a6 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.hard_0a8e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.hard_0a8e:hover {
  box-shadow: var(--shadow-lg);
}

.hard_0a8e.complex_cacb {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.new-c1ed {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.content-static-c1c9 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.content-static-c1c9 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.modal_3e13 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hard_0a8e blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.brown_aa68 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.outline_68a6 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.item-hot-c059 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.table-8263 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.east-b71a {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.input-1d90 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.inner-070a {
  max-width: 900px;
  margin: 0 auto;
}

.white-b1c1 {
  margin: 2rem 0;
}

.item-54db {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.item-54db summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.item-54db summary::-webkit-details-marker {
  display: none;
}

.item-54db summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.smooth-fa06 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.item-54db[open] .smooth-fa06 {
  transform: rotate(45deg);
}

.pro_b4c2 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.pro_b4c2 p:last-child {
  margin-bottom: 0;
}

.tabs-pink-50ae {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.main_fast_ac63 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.layout-7494 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.layout-7494 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.layout-7494 .logo_deed {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.static_505c {
  max-width: 900px;
  margin: 0 auto;
}

.tiny_0a4f {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.link-c322 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.link-c322.fn-success-8510 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.hidden-8c07 {
  font-size: 3rem;
  line-height: 1;
}

.tooltip_dynamic_ffd0 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.link-32ea {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.advanced-9175,
.border-simple-c4d3 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.advanced-9175 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.border-simple-c4d3 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.border_38f0,
.active_84cd {
  margin: 1.5rem 0;
}

.border_38f0 li,
.active_84cd li {
  margin-bottom: 1rem;
}

.dark-f656 {
  margin: 3rem 0;
}

.avatar-8f38 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.avatar-8f38 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.avatar-8f38 ol {
  margin: 1rem 0;
}

.avatar-8f38 li {
  margin-bottom: 0.75rem;
}

.backdrop_tall_2583 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.alert_thick_23cd {
  margin: 2rem 0;
}

.alert_a84e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.liquid_a742 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.pagination_orange_2007 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.liquid_df1e {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.button-43a7 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.heading-a38e {
  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;
}

.heading-a38e img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.first-047b {
  flex: 1;
}

.first-047b h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.video-huge-0850 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.dynamic_abaf p {
  margin-bottom: 1rem;
}

.short-a52f {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.first_568c {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.breadcrumb-e753 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.breadcrumb-e753 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.highlight-middle-c98b h3 {
  margin-bottom: 1.5rem;
}

.mask-small-bb66 {
  display: grid;
  gap: 2rem;
}

.hero-00d3 {
  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;
}

.hero-00d3 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.hero-00d3 h4 {
  margin: 0 0 0.25rem;
}

.hero-00d3 p {
  margin: 0;
  font-size: 0.9375rem;
}

.active_2508 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.west_54e0 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.west_54e0 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.west_54e0 ul {
  margin: 1.5rem 0;
}

.west_54e0 li {
  margin-bottom: 0.75rem;
}

.message_silver_4f65 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.box_lower_e759 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.logo_outer_b087 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.wrapper_wide_b87a h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.wrapper_wide_b87a p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.aside_last_8721 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.aside_last_8721 a {
  color: rgba(255, 255, 255, 0.8);
}

.notice-faf7 {
  list-style: none;
}

.notice-faf7 li {
  margin-bottom: 0.75rem;
}

.notice-faf7 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.notice-faf7 a:hover {
  color: white;
}

.bottom-4cce {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.border_inner_bc9a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.tag_soft_8c52 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.bright-d5e8 {
  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_6a3a {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .frame_f9e3 {
    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;
  }

  .backdrop-large-1f6f {
    font-size: 1.5rem !important;
  }

  .purple-e95a {
    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 */
  .upper_5ae5,
  .plasma_dd75,
  .pagination-9f68,
  .link-fb05,
  .new-c1ed,
  .hard_0a8e,
  .pro_b4c2,
  .stone-1c83,
  .focus_b14a,
  .rough-9b85 {
    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 */
  .gradient_5426 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .dark-434c {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .search-plasma-df04 {
    flex-shrink: 0;
  }

  .first-047b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .stone-ce72,
  .heading_694f {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .heading_694f {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .frame-advanced-9297 {
    display: none;
  }

  /* Show mobile actions */
  .caption-7c6d {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .button-new-20c9 {
    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;
  }

  .button-new-20c9 svg {
    flex-shrink: 0;
  }

  .button-new-20c9 .description-7a9f {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .button-new-20c9 .chip-1616 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .layout_rough_9416 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .bright-5b9e {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .button-new-20c9:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .pro-57ad {
    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;
  }

  .pro-57ad.fn-active-8510 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .pro-57ad li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .pro-57ad li:last-child {
    border-bottom: none;
  }

  .pro-57ad a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .section-657a {
    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;
  }

  .section-657a li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .section-657a li:last-child {
    border-bottom: none;
  }

  .section-657a a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .secondary_62e7 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .out_f854 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .footer_1081,
  .summary-easy-0526 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .footer_1081 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .summary-easy-0526 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .section-657a.fn-active-8510 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .up-2bbe {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .gas_f2f8 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .paragraph-506d {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .container-60e9 {
    margin-top: 0;
  }

  /* Hero section */
  .container-60e9 {
    padding: 2rem 0 1.5rem;
  }

  .purple-e95a {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .focus_b14a {
    font-size: 1rem;
  }

  /* Hero brand image */
  .detail_tall_038b {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .notice-c287 {
    max-width: 100%;
    border-radius: 8px;
  }

  .over_cf50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .advanced-572d {
    padding: 1rem;
  }

  .message-active-d8c3 {
    font-size: 1.5rem;
  }

  .popup_9a29 {
    font-size: 0.75rem;
  }

  .stone-1c83 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .thumbnail_fa86 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .thumbnail_fa86 .logo_deed {
    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 */
  .under-0878 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .avatar_2c01 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .card-5b8f {
    margin-bottom: 1rem;
  }

  /* Author */
  .liquid-5db9 {
    flex-direction: column;
  }

  .heading-a38e {
    flex-direction: column;
  }

  /* Quotes */
  .new-c1ed {
    flex-direction: column;
  }

  /* Pros/Cons */
  .link-32ea {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .liquid_df1e {
    flex-direction: column;
  }

  .liquid_df1e .logo_deed {
    width: 100%;
  }

  /* Version comparison */
  .description-d8fc {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .thumbnail_7067 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .logo_outer_b087 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tag_soft_8c52 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .sort_thick_de64,
  .basic-32af,
  .menu_4df1,
  .tiny-5727,
  .shadow-bottom-c2aa,
  .motion_1e9a {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sort_thick_de64 table,
  .basic-32af table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .caption-17c6 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .frame_f9e3 {
    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;
  }

  .backdrop-large-1f6f {
    font-size: 1.25rem !important;
  }

  .purple-e95a {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .gas_f2f8 {
    position: fixed;
  }

  .paragraph-506d {
    padding: 0.625rem 0;
  }

  .input-full-bc7b img {
    height: 26px;
  }

  .section-657a {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .pro-57ad {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .button-new-20c9 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .button-new-20c9 svg {
    width: 18px;
    height: 18px;
  }

  .button-new-20c9 .description-7a9f {
    font-size: 0.7rem;
  }

  .button-new-20c9 .chip-1616 {
    font-size: 0.65rem;
  }

  .footer_1081,
  .summary-easy-0526 {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
  }

  /* Ultra aggressive word breaking for small screens */
  * {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  /* Ensure no element exceeds viewport */
  body, .frame_f9e3, .rough-9a75, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .detail_tall_038b {
    padding: 1rem;
  }

  .over_cf50 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .advanced-572d {
    padding: 0.875rem;
  }

  .message-active-d8c3 {
    font-size: 1.25rem;
  }

  .thumbnail_fa86 .logo_deed {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .purple-e95a {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .logo_deed {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .notice-8685 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .avatar_2c01 {
    padding: 1rem;
  }

  .card-5b8f span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .upper_5ae5,
  .light-710d,
  .summary-first-ac0c,
  .main_steel_e4a7 {
    padding: 1rem;
  }
}

@media print {
  .gas_f2f8,
  .tag-focused-79ff,
  .up-2bbe,
  .logo_deed,
  .box_lower_e759 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .frame_f9e3 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.soft-2439 {
  margin-bottom: 3rem;
  text-align: center;
}

.backdrop-large-1f6f {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.pressed-bb15 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.short-b08d,
.up-44e3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.accordion-6fa7 {
  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;
}

.accordion-6fa7:hover {
  transform: translateY(-5px);
}

.accordion-6fa7 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.accordion-6fa7 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.dark_d782 {
  margin: 3rem 0;
}

.outline-huge-c022 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.up_fd5d {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.up_fd5d:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.down-d227 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.surface_old_59d8 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.header_e270 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.wide_f2e3 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.title_fresh_0481 {
  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;
}

.title_fresh_0481:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.title_fresh_0481.mini-22d5 {
  border-left: 4px solid var(--primary-color);
}

.texture-red-a1c8 {
  flex-shrink: 0;
}

.texture-red-a1c8 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.video_hard_aad9 {
  flex: 1;
}

.video_hard_aad9 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.header-static-5264 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.full_a917,
.card_dark_0ea0,
.gas-b351 {
  margin-bottom: 1.5rem;
}

.full_a917 h4,
.card_dark_0ea0 h4,
.gas-b351 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.full_a917 ul,
.card_dark_0ea0 ul,
.gas-b351 ul {
  list-style: none;
  padding: 0;
}

.full_a917 li,
.card_dark_0ea0 li,
.gas-b351 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.full_a917 li:before,
.card_dark_0ea0 li:before,
.gas-b351 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.accordion-next-efb5 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.accordion-next-efb5 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;
}

.accordion-next-efb5 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.basic-7286 { margin: 2rem 0; }
.warm-1822 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.warm-1822 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.accordion-wide-02df p { margin-bottom: 1rem; line-height: 1.7; }
.accordion-wide-02df strong { color: var(--text-primary); }
.accordion-wide-02df ul { list-style: none; padding-left: 0; }
.accordion-wide-02df ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.accordion-wide-02df ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.basic-6090 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.title-fresh-1e8e { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.title-fresh-1e8e:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.wrapper_tiny_a2cb { font-size: 3rem; margin-bottom: 1rem; }
.title-fresh-1e8e h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.title-fresh-1e8e p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.heading_90ff { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.heading_90ff span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.icon_pressed_cdd6 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.lite_7b86 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.status_left_dbde { text-align: center; }
.message_dc1c { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.liquid-c3e5 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.row-0342 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.search-top-4c4c { margin: 2rem 0; }
.middle_5597 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.middle_5597 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.middle_5597 p, .middle_5597 ul { line-height: 1.7; }
.middle_5597 ul { list-style: none; padding-left: 0; }
.middle_5597 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.middle_5597 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.shade_f583 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.thumbnail-cool-ebe1 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.plasma_1d70 { text-align: center; }
.backdrop_dd7d { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.fast_ca05 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.hovered-7e3e { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.section-pink-5c31 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.filter_91ac { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.filter_91ac:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.filter_91ac h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.filter_91ac p, .filter_91ac ul { line-height: 1.7; }
.filter_91ac ul { list-style: none; padding-left: 0; }
.filter_91ac ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.filter_91ac ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: b469 */
.widget-item-i1 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.3;
}
