/* ============================================
   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 */
.center_2bdc p,
.next_b799,
.silver_2eaa,
.table_f7d5,
.description-liquid-1d5e,
.next_ec73,
.mask_2498,
.brown-4f67 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.pagination-0c32 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.pagination-0c32 > *,
.center_2a79,
.center_2bdc,
.modal_advanced_d9a9 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .pagination-0c32 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .pagination-0c32 {
    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 === */
.sort_26ba {
  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 */
.sort_26ba.module-b399 {
  box-shadow: var(--shadow-md);
}

.pink_b612 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.media-dynamic-51ed img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.alert_3057 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.image_9bde {
  display: none;
}

/* Hide mobile actions on desktop */
.item_current_fbe4 {
  display: none;
}

.picture-1bfc a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.picture-1bfc a:hover,
.picture-1bfc a.fn-active-4379 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.link_motion_da94 {
  margin-left: 1rem;
}

.content-complex-bd2c {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.soft_825f,
.banner-clean-44b4 {
  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;
}

.soft_825f {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.soft_825f: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;
}

.banner-clean-44b4 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.banner-clean-44b4: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;
}

.soft_825f svg,
.banner-clean-44b4 svg {
  flex-shrink: 0;
}

.active_wide_95f4 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.header_dd95 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.header_dd95::before,
.header_dd95::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.header_dd95::before {
  top: -7px;
}

.header_dd95::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.out-f5c5 {
  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 === */
.red_ebab {
  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);
}

.full_4211 {
  margin: 0 0 2rem;
  text-align: center;
}

.carousel-bright-a2f9 {
  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;
}

.carousel-bright-a2f9:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.image_91d5 {
  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);
}

.image_91d5 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.badge-fixed-6fa4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.row-easy-f948 {
  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;
}

.row-easy-f948:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.fresh-dfb5 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.table_e7e3 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.popup-white-d0f0 {
  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);
}

.popup-white-d0f0 .frame_ff9a {
  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;
}

.popup-white-d0f0 .frame_ff9a svg {
  flex-shrink: 0;
}

.popup-white-d0f0 .bottom_3e6d {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.popup-white-d0f0 .bottom_3e6d: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);
}

.popup-white-d0f0 .footer_rough_9036 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.popup-white-d0f0 .footer_rough_9036: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) {
  .red_ebab {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .carousel-bright-a2f9 {
    max-width: 100%;
  }

  .badge-fixed-6fa4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .row-easy-f948 {
    padding: 1rem;
  }

  .fresh-dfb5 {
    font-size: 1.5rem;
  }

  .table_e7e3 {
    font-size: 0.75rem;
  }

  .image_91d5 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .popup-white-d0f0 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .popup-white-d0f0 .frame_ff9a {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .badge-fixed-6fa4 {
    grid-template-columns: 1fr;
  }
}

.gold_5010 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.row-down-4729 {
  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 === */
.shade-easy-5f2c {
  margin-bottom: 2.5rem;
}

.element-ab34 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.gold_5010 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.info-76d6 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.thumbnail-6a18 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.sidebar_new_558f {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.button_black_8d8e {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.slow_96ea {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.center_69b1 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hidden-0821 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hidden-0821 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.old-13cb {
  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);
}

.pro_da44 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.right-5695 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.breadcrumb-old-a8d7 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.modal_thick_d847 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.heading_635a {
  display: grid;
  gap: 1rem;
}

.center_7b58 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.backdrop_c1f5 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.black-05a1 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.motion_ce14 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.soft-e80a {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.sort-thick-572e {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.sort-thick-572e p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.next_b799 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.north_b48a {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.title-a322 {
  display: grid;
  gap: 2rem;
}

.liquid_4fc5 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.thumbnail-6a18 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.info-76d6 {
  flex: 1;
}

.button_black_8d8e {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.button_black_8d8e a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.plasma-8dc9 {
  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;
}

.slow_96ea {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.popup_33e5 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.popup_33e5 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.media-ce2a {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.media-ce2a a {
  font-size: 0.875rem;
  font-weight: 500;
}

.west_664d {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.west_664d strong {
  display: block;
  margin-bottom: 0.75rem;
}

.west_664d ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.west_664d li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.header_orange_a1f0 {
  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 === */
.nav-bottom-aadf {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.item-basic-f92d {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.status_c695 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.short-7923 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.short-7923 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.short-7923 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.short-7923 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;
}

.short-7923 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.short-7923 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.center_2bdc {
  padding: 3rem 0 5rem;
}

.modal_advanced_d9a9 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.modal_advanced_d9a9.nav_fluid_7cc7 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.silver_2eaa {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.header_down_e247 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.pressed_922e {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.pressed_922e h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.wide_f7b8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.icon-feea {
  text-align: center;
}

.tiny-158e {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.active_d5e6 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.brown-bf92 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.next_ec73 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.table_f7d5 {
  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;
}

.table_f7d5 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.table_f7d5:hover {
  box-shadow: var(--shadow-lg);
}

.table_f7d5.pressed_abe9 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.table_f7d5 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.table_f7d5 ul {
  margin: 1rem 0;
}

.table_f7d5 li {
  margin-bottom: 0.75rem;
}

.shadow_hard_4608 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.column-action-cbad {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.column-action-cbad a {
  font-weight: 600;
}

/* === Data Tables === */
.main_bee1 {
  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;
}

.main_bee1 table {
  width: 100%;
  min-width: 600px;
}

.main_bee1 thead {
  background-color: var(--primary-color);
  color: white;
}

.main_bee1 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.main_bee1 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.main_bee1 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.main_bee1 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.badge-tiny-1e53 {
  list-style: none;
  margin: 1.5rem 0;
}

.badge-tiny-1e53 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.badge-tiny-1e53 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.slider_upper_e8f9::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-4379::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 === */
.menu_outer_552e {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.hard_3644 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hard_3644 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.hard_3644 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.hard_3644 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.menu_outer_552e blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.mask_2498 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.mask_2498::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.down_a230 {
  position: relative;
  margin-bottom: 3rem;
}

.preview_orange_8ed6 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.preview_orange_8ed6 .stone-baac {
  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;
}

.solid_5226 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.solid_5226 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.solid_5226 ul {
  margin: 1rem 0;
}

.solid_5226 li {
  margin-bottom: 0.75rem;
}

.glass-b3ce {
  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 === */
.secondary-a6d4 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.secondary-a6d4 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.active_012b {
  list-style: none;
  margin: 1.5rem 0;
}

.active_012b li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.active_012b a {
  font-weight: 600;
}

.silver_7998 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.brown-4f67 {
  margin: 2.5rem 0;
}

.chip-8db5 {
  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;
}

.chip-8db5:hover {
  box-shadow: var(--shadow-lg);
}

.chip-8db5.box-d537 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.dirty-3e51 {
  flex-shrink: 0;
}

.dirty-3e51 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);
}

.media_6040 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.center-5a70,
.pagination_0e74,
.bottom_5ec1 {
  width: 100%;
  margin: 1.5rem 0;
}

.lower_e64f {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.lower_e64f strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.detail_tall_d214 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.detail_tall_d214 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.pattern-52a5 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.pattern-52a5 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.carousel_wide_b0fd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.chip_d3e9 {
  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;
}

.chip_d3e9:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.chip_d3e9.preview-3e36 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.chip_d3e9 .sort-941c {
  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;
}

.chip_d3e9 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.mask_east_feeb {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.progress-47b1 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.progress-47b1 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.column_8206 {
  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 === */
.frame_ff9a {
  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;
}

.bottom_3e6d {
  background-color: var(--primary-color);
  color: white;
}

.bottom_3e6d:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.footer_rough_9036 {
  background-color: var(--text-secondary);
  color: white;
}

.footer_rough_9036:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.notice_soft_d5af {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.notice_soft_d5af:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.hover-f350 {
  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;
}

.hover-f350:hover {
  background-color: var(--primary-dark);
}

.hard-203d {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.pagination_full_0b19 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.text_4d3a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.aside-fluid-c8a9 {
  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 === */
.frame-inner-334b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.popup-right-2c95 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.popup-right-2c95 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.disabled_6072 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.heading-dbc2 {
  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;
}

.menu-6aae {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.west_cadd {
  list-style: none;
  counter-reset: rank-counter;
}

.west_cadd li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.west_cadd 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;
}

.wood-b69e {
  list-style: none;
}

.wood-b69e li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.caption_ee9b {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.tiny_d8f8 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.tiny_d8f8 .description-glass-fb68 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.tiny_d8f8 .clean_222e {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.slider-6b49 {
  margin-top: 3rem;
}

.west-4e4a {
  width: 100%;
}

.tall_6b25 {
  background-color: #fef3c7;
}

.accordion-bd98 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.sidebar_tall_b01c {
  margin: 3rem 0;
}

.pressed_8c19 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.gallery-liquid-4133 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.gallery-liquid-4133:hover {
  box-shadow: var(--shadow-lg);
}

.gallery-liquid-4133.header_soft_e9f3 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.info-9e8c {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.banner-35a4 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.banner-35a4 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hard_a06c {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.gallery-liquid-4133 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.border_3496 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.shadow_fresh_b5a4 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.over_f317 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.list-upper-5fa4 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.aside-purple-e515 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.breadcrumb-next-a2da {
  margin-top: 1rem;
}

/* === FAQ Section === */
.pagination-ea41 {
  max-width: 900px;
  margin: 0 auto;
}

.section-brown-b1ed {
  margin: 2rem 0;
}

.picture_cold_bc13 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.picture_cold_bc13 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.picture_cold_bc13 summary::-webkit-details-marker {
  display: none;
}

.picture_cold_bc13 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.last-34d6 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.picture_cold_bc13[open] .last-34d6 {
  transform: rotate(45deg);
}

.avatar_96be {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.avatar_96be p:last-child {
  margin-bottom: 0;
}

.lite_8833 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.lower_eee5 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.picture-full-f7d0 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.picture-full-f7d0 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.picture-full-f7d0 .frame_ff9a {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.full_bad0 {
  max-width: 900px;
  margin: 0 auto;
}

.sort_last_8eb8 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.description-medium-b1ba {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.description-medium-b1ba.fn-success-4379 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.aside-short-f11a {
  font-size: 3rem;
  line-height: 1;
}

.gallery_tall_66bd h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.nav_08a0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.input_out_332a,
.icon-459a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.input_out_332a h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.icon-459a h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.aside_up_4fe9,
.tabs_smooth_7c46 {
  margin: 1.5rem 0;
}

.aside_up_4fe9 li,
.tabs_smooth_7c46 li {
  margin-bottom: 1rem;
}

.prev-e232 {
  margin: 3rem 0;
}

.button-da84 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.button-da84 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.button-da84 ol {
  margin: 1rem 0;
}

.button-da84 li {
  margin-bottom: 0.75rem;
}

.widget_ccad {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.first-60c2 {
  margin: 2rem 0;
}

.purple_e751 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.summary-left-432e {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.slow-a75d {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.carousel-fast-6f96 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.pagination-0d39 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.smooth_5df3 {
  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;
}

.smooth_5df3 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.sidebar_new_558f {
  flex: 1;
}

.sidebar_new_558f h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.element_mini_03a9 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.link_8d57 p {
  margin-bottom: 1rem;
}

.right_11cf {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.thick-b62d {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.paper-7ec9 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.paper-7ec9 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.texture_b029 h3 {
  margin-bottom: 1.5rem;
}

.north-8f51 {
  display: grid;
  gap: 2rem;
}

.status-f855 {
  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;
}

.status-f855 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.status-f855 h4 {
  margin: 0 0 0.25rem;
}

.status-f855 p {
  margin: 0;
  font-size: 0.9375rem;
}

.row-simple-261f {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.background-65f0 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.background-65f0 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.background-65f0 ul {
  margin: 1.5rem 0;
}

.background-65f0 li {
  margin-bottom: 0.75rem;
}

.pagination_a5f5 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.tertiary-complex-f0ac {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.caption-small-8e93 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.notification-easy-b555 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.notification-easy-b555 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.slider-top-4ede {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.slider-top-4ede a {
  color: rgba(255, 255, 255, 0.8);
}

.table_cc54 {
  list-style: none;
}

.table_cc54 li {
  margin-bottom: 0.75rem;
}

.table_cc54 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.table_cc54 a:hover {
  color: white;
}

.advanced_1c25 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.avatar-c486 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.article_931f {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.table-gas-4b19 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.input-c63d {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .pagination-0c32 {
    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;
  }

  .next_ee38 {
    font-size: 1.5rem !important;
  }

  .element-ab34 {
    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 */
  .table_f7d5,
  .description-liquid-1d5e,
  .solid_5226,
  .media_6040,
  .info-9e8c,
  .gallery-liquid-4133,
  .avatar_96be,
  .image_91d5,
  .next_b799,
  .silver_2eaa {
    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 */
  .gold_5010 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .info-76d6 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .thumbnail-6a18 {
    flex-shrink: 0;
  }

  .sidebar_new_558f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .button_black_8d8e,
  .slow_96ea {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .slow_96ea {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .alert_3057 {
    display: none;
  }

  /* Show mobile actions */
  .item_current_fbe4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .element-940f {
    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;
  }

  .element-940f svg {
    flex-shrink: 0;
  }

  .element-940f .search-b233 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .element-940f .secondary-current-845d {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .module_action_2ed9 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .form-lite-0b56 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .element-940f:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .image_9bde {
    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;
  }

  .image_9bde.fn-active-4379 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .image_9bde li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .image_9bde li:last-child {
    border-bottom: none;
  }

  .image_9bde a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .picture-1bfc {
    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;
  }

  .picture-1bfc li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .picture-1bfc li:last-child {
    border-bottom: none;
  }

  .picture-1bfc a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .link_motion_da94 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .content-complex-bd2c {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .soft_825f,
  .banner-clean-44b4 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .soft_825f {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .banner-clean-44b4 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .picture-1bfc.fn-active-4379 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .active_wide_95f4 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .sort_26ba {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .pink_b612 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .out-f5c5 {
    margin-top: 0;
  }

  /* Hero section */
  .out-f5c5 {
    padding: 2rem 0 1.5rem;
  }

  .element-ab34 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .next_b799 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .red_ebab {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .carousel-bright-a2f9 {
    max-width: 100%;
    border-radius: 8px;
  }

  .badge-fixed-6fa4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .row-easy-f948 {
    padding: 1rem;
  }

  .fresh-dfb5 {
    font-size: 1.5rem;
  }

  .table_e7e3 {
    font-size: 0.75rem;
  }

  .image_91d5 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .popup-white-d0f0 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .popup-white-d0f0 .frame_ff9a {
    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 */
  .status_c695 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .chip-8db5 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .dirty-3e51 {
    margin-bottom: 1rem;
  }

  /* Author */
  .liquid_4fc5 {
    flex-direction: column;
  }

  .smooth_5df3 {
    flex-direction: column;
  }

  /* Quotes */
  .info-9e8c {
    flex-direction: column;
  }

  /* Pros/Cons */
  .nav_08a0 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .carousel-fast-6f96 {
    flex-direction: column;
  }

  .carousel-fast-6f96 .frame_ff9a {
    width: 100%;
  }

  /* Version comparison */
  .carousel_wide_b0fd {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .frame-inner-334b {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .caption-small-8e93 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .article_931f {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .main_bee1,
  .pagination_0e74,
  .form_fbfa,
  .west-4e4a,
  .center-5a70,
  .bottom_5ec1 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main_bee1 table,
  .pagination_0e74 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .column_8206 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .pagination-0c32 {
    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;
  }

  .next_ee38 {
    font-size: 1.25rem !important;
  }

  .element-ab34 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .sort_26ba {
    position: fixed;
  }

  .pink_b612 {
    padding: 0.625rem 0;
  }

  .media-dynamic-51ed img {
    height: 26px;
  }

  .picture-1bfc {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .image_9bde {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .element-940f {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .element-940f svg {
    width: 18px;
    height: 18px;
  }

  .element-940f .search-b233 {
    font-size: 0.7rem;
  }

  .element-940f .secondary-current-845d {
    font-size: 0.65rem;
  }

  .soft_825f,
  .banner-clean-44b4 {
    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, .pagination-0c32, .center_2a79, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .red_ebab {
    padding: 1rem;
  }

  .badge-fixed-6fa4 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .row-easy-f948 {
    padding: 0.875rem;
  }

  .fresh-dfb5 {
    font-size: 1.25rem;
  }

  .popup-white-d0f0 .frame_ff9a {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .element-ab34 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .frame_ff9a {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .hard-203d {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .chip-8db5 {
    padding: 1rem;
  }

  .dirty-3e51 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .table_f7d5,
  .container_8f8e,
  .picture_d856,
  .breadcrumb-solid-5de7 {
    padding: 1rem;
  }
}

@media print {
  .sort_26ba,
  .nav-bottom-aadf,
  .active_wide_95f4,
  .frame_ff9a,
  .tertiary-complex-f0ac {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .pagination-0c32 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.input_tall_e524 {
  margin-bottom: 3rem;
  text-align: center;
}

.next_ee38 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.brown_9fec {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.in_1f36,
.accent-8cc3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.component_726f {
  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;
}

.component_726f:hover {
  transform: translateY(-5px);
}

.component_726f strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.component_726f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.footer_basic_a471 {
  margin: 3rem 0;
}

.search-orange-ed95 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.green_1612 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.green_1612:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.header-over-b5a1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.item-db04 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.popup_7666 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.liquid_41b6 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.mini_e695 {
  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;
}

.mini_e695:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.mini_e695.rough_9a66 {
  border-left: 4px solid var(--primary-color);
}

.slider-c1a4 {
  flex-shrink: 0;
}

.slider-c1a4 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.focus_cd3c {
  flex: 1;
}

.focus_cd3c h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.article_hovered_4bf4 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.secondary_static_0989,
.aside_full_f2c7,
.highlight_cd13 {
  margin-bottom: 1.5rem;
}

.secondary_static_0989 h4,
.aside_full_f2c7 h4,
.highlight_cd13 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.secondary_static_0989 ul,
.aside_full_f2c7 ul,
.highlight_cd13 ul {
  list-style: none;
  padding: 0;
}

.secondary_static_0989 li,
.aside_full_f2c7 li,
.highlight_cd13 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.secondary_static_0989 li:before,
.aside_full_f2c7 li:before,
.highlight_cd13 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.aside_hard_826b {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.aside_hard_826b 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;
}

.aside_hard_826b a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.popup_dark_a36e { margin: 2rem 0; }
.popup-ef50 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.popup-ef50 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.status-bronze-6542 p { margin-bottom: 1rem; line-height: 1.7; }
.status-bronze-6542 strong { color: var(--text-primary); }
.status-bronze-6542 ul { list-style: none; padding-left: 0; }
.status-bronze-6542 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.status-bronze-6542 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.short-52ab { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.fresh_f391 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.fresh_f391:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.wrapper-over-4c9d { font-size: 3rem; margin-bottom: 1rem; }
.fresh_f391 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.fresh_f391 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.wood_d044 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.wood_d044 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.hidden-fluid-6faf { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.component-copper-03b4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.shadow_84b2 { text-align: center; }
.status-255c { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.secondary_top_9f85 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.info_gas_a6ce { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.component_98f2 { margin: 2rem 0; }
.accordion-south-f2c1 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.accordion-south-f2c1 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.accordion-south-f2c1 p, .accordion-south-f2c1 ul { line-height: 1.7; }
.accordion-south-f2c1 ul { list-style: none; padding-left: 0; }
.accordion-south-f2c1 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.accordion-south-f2c1 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.new-ad3f { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.hot-838f { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.list_f95f { text-align: center; }
.surface_7e4b { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.overlay-047f { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.pattern-c9e9 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.surface-fluid-59ae { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.preview-aa13 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.preview-aa13:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.preview-aa13 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.preview-aa13 p, .preview-aa13 ul { line-height: 1.7; }
.preview-aa13 ul { list-style: none; padding-left: 0; }
.preview-aa13 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.preview-aa13 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: f925 */
.promo-block-d3 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.2;
}
