/* ============================================
   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 */
.east_00e0 p,
.text-current-1ccd,
.dim-97f7,
.header_selected_0f60,
.cool-2dea,
.footer-hovered-cb04,
.brown_f809,
.button-down-5f85 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.shadow_f9bc {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.shadow_f9bc > *,
.gold_5635,
.east_00e0,
.dim_5b5e {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .shadow_f9bc {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .shadow_f9bc {
    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 === */
.row_warm_1e8b {
  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 */
.row_warm_1e8b.backdrop_south_80a9 {
  box-shadow: var(--shadow-md);
}

.message-42af {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.detail-83d1 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.button_large_b87c {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.right-4afd {
  display: none;
}

/* Hide mobile actions on desktop */
.outline-102c {
  display: none;
}

.wrapper_pink_5d15 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.wrapper_pink_5d15 a:hover,
.wrapper_pink_5d15 a.fn-active-0e47 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.purple-0dd0 {
  margin-left: 1rem;
}

.list-9835 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.badge-new-394b,
.hot_6b4c {
  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;
}

.badge-new-394b {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.badge-new-394b: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;
}

.hot_6b4c {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.hot_6b4c: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;
}

.badge-new-394b svg,
.hot_6b4c svg {
  flex-shrink: 0;
}

.yellow_5734 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.south_f534 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.south_f534::before,
.south_f534::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.south_f534::before {
  top: -7px;
}

.south_f534::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.slow_7d35 {
  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 === */
.border-91b6 {
  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);
}

.hover_96e9 {
  margin: 0 0 2rem;
  text-align: center;
}

.small-b7bf {
  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;
}

.small-b7bf:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.pro_c841 {
  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);
}

.pro_c841 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.search_2f01 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.info-short-b863 {
  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;
}

.info-short-b863:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.icon_short_1dae {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.shade_d175 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.hard_88c2 {
  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);
}

.hard_88c2 .title-a3b4 {
  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;
}

.hard_88c2 .title-a3b4 svg {
  flex-shrink: 0;
}

.hard_88c2 .header_c0a7 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.hard_88c2 .header_c0a7: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);
}

.hard_88c2 .block_1c85 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.hard_88c2 .block_1c85: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) {
  .border-91b6 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .small-b7bf {
    max-width: 100%;
  }

  .search_2f01 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .info-short-b863 {
    padding: 1rem;
  }

  .icon_short_1dae {
    font-size: 1.5rem;
  }

  .shade_d175 {
    font-size: 0.75rem;
  }

  .pro_c841 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .hard_88c2 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .hard_88c2 .title-a3b4 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .search_2f01 {
    grid-template-columns: 1fr;
  }
}

.disabled_4dfa {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.gallery_7b75 {
  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 === */
.caption_3c2f {
  margin-bottom: 2.5rem;
}

.pattern-old-efa0 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.disabled_4dfa {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.notification-fresh-017b {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tooltip-out-9f2e {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.menu-b44a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.picture-soft-85b7 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.card_b0ea {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.gold-5ed0 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.accordion-prev-bf71 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.accordion-prev-bf71 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.yellow-0c4e {
  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);
}

.block_glass_9b64 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.pro_7f19 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.text-1783 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.breadcrumb-top-3e9d {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.top-3a36 {
  display: grid;
  gap: 1rem;
}

.footer-e403 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.thumbnail_f7af {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.grid_narrow_4ef7 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.column_white_ad9c {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.thumbnail_smooth_2295 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.button-6f49 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.button-6f49 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.text-current-1ccd {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.avatar_2fc6 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.wrapper-warm-5753 {
  display: grid;
  gap: 2rem;
}

.main-52d2 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.tooltip-out-9f2e {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.notification-fresh-017b {
  flex: 1;
}

.picture-soft-85b7 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.picture-soft-85b7 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.dynamic-3fdf {
  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;
}

.card_b0ea {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.liquid-6044 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.liquid-6044 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.lite-97aa {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.lite-97aa a {
  font-size: 0.875rem;
  font-weight: 500;
}

.pagination_682f {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.pagination_682f strong {
  display: block;
  margin-bottom: 0.75rem;
}

.pagination_682f ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pagination_682f li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.fresh_e693 {
  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 === */
.hover-current-49b1 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.caption-3e8c {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.notice_be97 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.main-narrow-bfa7 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.main-narrow-bfa7 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.main-narrow-bfa7 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.main-narrow-bfa7 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;
}

.main-narrow-bfa7 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.main-narrow-bfa7 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.east_00e0 {
  padding: 3rem 0 5rem;
}

.dim_5b5e {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.dim_5b5e.purple_95f3 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.dim-97f7 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.cool_81bf {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.copper-4fa8 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.copper-4fa8 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.dark-f146 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.filter-7f18 {
  text-align: center;
}

.liquid-62b1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.inner_6165 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.copper_37c6 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.footer-hovered-cb04 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.header_selected_0f60 {
  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;
}

.header_selected_0f60 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.header_selected_0f60:hover {
  box-shadow: var(--shadow-lg);
}

.header_selected_0f60.liquid-f4b2 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.header_selected_0f60 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.header_selected_0f60 ul {
  margin: 1rem 0;
}

.header_selected_0f60 li {
  margin-bottom: 0.75rem;
}

.menu-0718 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.orange_f0d1 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.orange_f0d1 a {
  font-weight: 600;
}

/* === Data Tables === */
.dirty-a311 {
  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;
}

.dirty-a311 table {
  width: 100%;
  min-width: 600px;
}

.dirty-a311 thead {
  background-color: var(--primary-color);
  color: white;
}

.dirty-a311 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.dirty-a311 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.dirty-a311 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.dirty-a311 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.message-996f {
  list-style: none;
  margin: 1.5rem 0;
}

.message-996f li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.message-996f li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.basic_f314::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-0e47::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 === */
.modal-ee0e {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.border-be86 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.border-be86 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.border-be86 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.border-be86 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.modal-ee0e blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.brown_f809 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.brown_f809::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.feature-plasma-6b3c {
  position: relative;
  margin-bottom: 3rem;
}

.fresh_3cb4 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.fresh_3cb4 .dark-1e1b {
  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;
}

.sort_51a1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.sort_51a1 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.sort_51a1 ul {
  margin: 1rem 0;
}

.sort_51a1 li {
  margin-bottom: 0.75rem;
}

.red-7590 {
  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 === */
.gradient-advanced-4441 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.gradient-advanced-4441 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.video_69c7 {
  list-style: none;
  margin: 1.5rem 0;
}

.video_69c7 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.video_69c7 a {
  font-weight: 600;
}

.focused-74a4 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.button-down-5f85 {
  margin: 2.5rem 0;
}

.sort-medium-55c5 {
  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;
}

.sort-medium-55c5:hover {
  box-shadow: var(--shadow-lg);
}

.sort-medium-55c5.surface_dynamic_b85e {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.main_lite_6fee {
  flex-shrink: 0;
}

.main_lite_6fee 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);
}

.logo-6dff h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.in-0b90,
.paper_99ab,
.hovered-815b {
  width: 100%;
  margin: 1.5rem 0;
}

.notification-0170 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.notification-0170 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.down-c4ab {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.down-c4ab strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.search_74e7 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.search_74e7 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.thumbnail-1983 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.title-468f {
  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;
}

.title-468f:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.title-468f.chip-slow-8452 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.title-468f .video_static_65c4 {
  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;
}

.title-468f h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.bronze-5248 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.table_pressed_b7c7 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.table_pressed_b7c7 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.aside_warm_d9fc {
  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 === */
.title-a3b4 {
  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;
}

.header_c0a7 {
  background-color: var(--primary-color);
  color: white;
}

.header_c0a7:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.block_1c85 {
  background-color: var(--text-secondary);
  color: white;
}

.block_1c85:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.notice_1b79 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.notice_1b79:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.dirty_b8da {
  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;
}

.dirty_b8da:hover {
  background-color: var(--primary-dark);
}

.image_white_ceb0 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.black-6e02 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.first-286b {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pattern_left_88f8 {
  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 === */
.huge_b44c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.upper_53b1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.upper_53b1 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.current_5e55 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.media-smooth-5036 {
  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;
}

.thumbnail-rough-b6cc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.feature-white-2ddc {
  list-style: none;
  counter-reset: rank-counter;
}

.feature-white-2ddc li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.feature-white-2ddc 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;
}

.summary_soft_7e4e {
  list-style: none;
}

.summary_soft_7e4e li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.rough-3760 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.stone_61ba {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stone_61ba .footer-wood-be84 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.stone_61ba .menu-955d {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.new_9487 {
  margin-top: 3rem;
}

.thick-ba75 {
  width: 100%;
}

.message-dynamic-cae1 {
  background-color: #fef3c7;
}

.dropdown-under-c948 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.picture_1679 {
  margin: 3rem 0;
}

.overlay-bb82 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.sidebar_a893 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.sidebar_a893:hover {
  box-shadow: var(--shadow-lg);
}

.sidebar_a893.fast_3cc0 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.hero-gold-af3d {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.aside_1af8 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.aside_1af8 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.backdrop-d8e9 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.sidebar_a893 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.liquid-fa88 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.bottom-d8cc {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.card-right-3488 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.basic_a117 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.hero-fluid-835d {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.fresh_2b8e {
  margin-top: 1rem;
}

/* === FAQ Section === */
.article_9e9c {
  max-width: 900px;
  margin: 0 auto;
}

.video_f1c4 {
  margin: 2rem 0;
}

.footer-1430 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.footer-1430 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.footer-1430 summary::-webkit-details-marker {
  display: none;
}

.footer-1430 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.picture_9daa {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.footer-1430[open] .picture_9daa {
  transform: rotate(45deg);
}

.paper-70d7 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.paper-70d7 p:last-child {
  margin-bottom: 0;
}

.link_ef58 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.search_advanced_3005 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.selected-ff32 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.selected-ff32 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.selected-ff32 .title-a3b4 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.new_6545 {
  max-width: 900px;
  margin: 0 auto;
}

.popup_lower_b8d2 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.alert-309a {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.alert-309a.fn-success-0e47 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.shadow_narrow_bcbe {
  font-size: 3rem;
  line-height: 1;
}

.under_a884 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.hidden-cool-411c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.secondary_e4e7,
.chip_1ada {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.secondary_e4e7 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.chip_1ada h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.box-hovered-41a8,
.notification-right-07ef {
  margin: 1.5rem 0;
}

.box-hovered-41a8 li,
.notification-right-07ef li {
  margin-bottom: 1rem;
}

.nav_29f2 {
  margin: 3rem 0;
}

.new_e395 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.new_e395 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.new_e395 ol {
  margin: 1rem 0;
}

.new_e395 li {
  margin-bottom: 0.75rem;
}

.button_dynamic_8241 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.message-selected-f507 {
  margin: 2rem 0;
}

.iron-e1d6 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.box_brown_298a {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.tertiary_paper_07bf {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.in_5b21 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.pattern-eb8a {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.outline_08c1 {
  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;
}

.outline_08c1 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.menu-b44a {
  flex: 1;
}

.menu-b44a h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.button_5aaa {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.form-over-4c12 p {
  margin-bottom: 1rem;
}

.icon_large_6959 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.carousel_e87b {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.white_e4b7 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.white_e4b7 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.description_slow_3a30 h3 {
  margin-bottom: 1.5rem;
}

.table_light_b692 {
  display: grid;
  gap: 2rem;
}

.sidebar-bronze-43df {
  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;
}

.sidebar-bronze-43df img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.sidebar-bronze-43df h4 {
  margin: 0 0 0.25rem;
}

.sidebar-bronze-43df p {
  margin: 0;
  font-size: 0.9375rem;
}

.easy-435f {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.stone-ad6c {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.stone-ad6c h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.stone-ad6c ul {
  margin: 1.5rem 0;
}

.stone-ad6c li {
  margin-bottom: 0.75rem;
}

.rough_9fdb {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.table-ca10 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.red_1a79 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.container-hot-3ec8 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.container-hot-3ec8 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.white-9387 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.white-9387 a {
  color: rgba(255, 255, 255, 0.8);
}

.panel-d573 {
  list-style: none;
}

.panel-d573 li {
  margin-bottom: 0.75rem;
}

.panel-d573 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.panel-d573 a:hover {
  color: white;
}

.photo-complex-b03d {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.dynamic_6bcc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.dropdown_smooth_a502 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.picture-large-c879 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.module-lower-169f {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .shadow_f9bc {
    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;
  }

  .card-bde7 {
    font-size: 1.5rem !important;
  }

  .pattern-old-efa0 {
    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 */
  .header_selected_0f60,
  .cool-2dea,
  .sort_51a1,
  .logo-6dff,
  .hero-gold-af3d,
  .sidebar_a893,
  .paper-70d7,
  .pro_c841,
  .text-current-1ccd,
  .dim-97f7 {
    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 */
  .disabled_4dfa {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .notification-fresh-017b {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .tooltip-out-9f2e {
    flex-shrink: 0;
  }

  .menu-b44a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .picture-soft-85b7,
  .card_b0ea {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .card_b0ea {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .button_large_b87c {
    display: none;
  }

  /* Show mobile actions */
  .outline-102c {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .sort_stone_dd2d {
    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;
  }

  .sort_stone_dd2d svg {
    flex-shrink: 0;
  }

  .sort_stone_dd2d .carousel-6caa {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .sort_stone_dd2d .active_short_95a6 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .hot-9920 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .list-plasma-6c47 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .sort_stone_dd2d:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .right-4afd {
    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;
  }

  .right-4afd.fn-active-0e47 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .right-4afd li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .right-4afd li:last-child {
    border-bottom: none;
  }

  .right-4afd a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .wrapper_pink_5d15 {
    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;
  }

  .wrapper_pink_5d15 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .wrapper_pink_5d15 li:last-child {
    border-bottom: none;
  }

  .wrapper_pink_5d15 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .purple-0dd0 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .list-9835 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .badge-new-394b,
  .hot_6b4c {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .badge-new-394b {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .hot_6b4c {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .wrapper_pink_5d15.fn-active-0e47 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .yellow_5734 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .row_warm_1e8b {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .message-42af {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .slow_7d35 {
    margin-top: 0;
  }

  /* Hero section */
  .slow_7d35 {
    padding: 2rem 0 1.5rem;
  }

  .pattern-old-efa0 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .text-current-1ccd {
    font-size: 1rem;
  }

  /* Hero brand image */
  .border-91b6 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .small-b7bf {
    max-width: 100%;
    border-radius: 8px;
  }

  .search_2f01 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .info-short-b863 {
    padding: 1rem;
  }

  .icon_short_1dae {
    font-size: 1.5rem;
  }

  .shade_d175 {
    font-size: 0.75rem;
  }

  .pro_c841 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .hard_88c2 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .hard_88c2 .title-a3b4 {
    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 */
  .notice_be97 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .sort-medium-55c5 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .main_lite_6fee {
    margin-bottom: 1rem;
  }

  /* Author */
  .main-52d2 {
    flex-direction: column;
  }

  .outline_08c1 {
    flex-direction: column;
  }

  /* Quotes */
  .hero-gold-af3d {
    flex-direction: column;
  }

  /* Pros/Cons */
  .hidden-cool-411c {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .in_5b21 {
    flex-direction: column;
  }

  .in_5b21 .title-a3b4 {
    width: 100%;
  }

  /* Version comparison */
  .thumbnail-1983 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .huge_b44c {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .red_1a79 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .dropdown_smooth_a502 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .dirty-a311,
  .paper_99ab,
  .sort-complex-906f,
  .thick-ba75,
  .in-0b90,
  .hovered-815b {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .dirty-a311 table,
  .paper_99ab table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .aside_warm_d9fc {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .shadow_f9bc {
    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;
  }

  .card-bde7 {
    font-size: 1.25rem !important;
  }

  .pattern-old-efa0 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .row_warm_1e8b {
    position: fixed;
  }

  .message-42af {
    padding: 0.625rem 0;
  }

  .detail-83d1 img {
    height: 26px;
  }

  .wrapper_pink_5d15 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .right-4afd {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .sort_stone_dd2d {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .sort_stone_dd2d svg {
    width: 18px;
    height: 18px;
  }

  .sort_stone_dd2d .carousel-6caa {
    font-size: 0.7rem;
  }

  .sort_stone_dd2d .active_short_95a6 {
    font-size: 0.65rem;
  }

  .badge-new-394b,
  .hot_6b4c {
    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, .shadow_f9bc, .gold_5635, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .border-91b6 {
    padding: 1rem;
  }

  .search_2f01 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .info-short-b863 {
    padding: 0.875rem;
  }

  .icon_short_1dae {
    font-size: 1.25rem;
  }

  .hard_88c2 .title-a3b4 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .pattern-old-efa0 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .title-a3b4 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .image_white_ceb0 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .sort-medium-55c5 {
    padding: 1rem;
  }

  .main_lite_6fee span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .header_selected_0f60,
  .modal_solid_b8d2,
  .label_hot_e517,
  .chip_e15f {
    padding: 1rem;
  }
}

@media print {
  .row_warm_1e8b,
  .hover-current-49b1,
  .yellow_5734,
  .title-a3b4,
  .table-ca10 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .shadow_f9bc {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.input_abfa {
  margin-bottom: 3rem;
  text-align: center;
}

.card-bde7 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.button_3898 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.text-new-1083,
.popup_10a2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.fresh_7722 {
  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;
}

.fresh_7722:hover {
  transform: translateY(-5px);
}

.fresh_7722 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.fresh_7722 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.texture_cbb1 {
  margin: 3rem 0;
}

.gold_4808 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.north-9d38 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.north-9d38:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.section-f70c {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.gallery_prev_acfc {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.action_f8c5 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.alert_hard_9ce1 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.active_6be2 {
  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;
}

.active_6be2:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.active_6be2.shadow_brown_ec0d {
  border-left: 4px solid var(--primary-color);
}

.glass-65ae {
  flex-shrink: 0;
}

.glass-65ae svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.center-68a2 {
  flex: 1;
}

.center-68a2 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.content_bffb {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.narrow_79a1,
.card-fast-47ad,
.out-b06f {
  margin-bottom: 1.5rem;
}

.narrow_79a1 h4,
.card-fast-47ad h4,
.out-b06f h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.narrow_79a1 ul,
.card-fast-47ad ul,
.out-b06f ul {
  list-style: none;
  padding: 0;
}

.narrow_79a1 li,
.card-fast-47ad li,
.out-b06f li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.narrow_79a1 li:before,
.card-fast-47ad li:before,
.out-b06f li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.thumbnail-under-c9bc {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.thumbnail-under-c9bc 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;
}

.thumbnail-under-c9bc a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.focus-b0e0 { margin: 2rem 0; }
.short_f079 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.short_f079 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.avatar-f670 p { margin-bottom: 1rem; line-height: 1.7; }
.avatar-f670 strong { color: var(--text-primary); }
.avatar-f670 ul { list-style: none; padding-left: 0; }
.avatar-f670 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.avatar-f670 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.in-4982 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.gallery-over-0e12 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.gallery-over-0e12:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.gas_8ecb { font-size: 3rem; margin-bottom: 1rem; }
.gallery-over-0e12 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.gallery-over-0e12 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.panel_clean_b068 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.panel_clean_b068 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.column-middle-434b { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.sort_e7f8 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.input_f762 { text-align: center; }
.caption-1f9f { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.thick_42df { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.simple_516f { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.outer_2261 { margin: 2rem 0; }
.avatar_yellow_77a0 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.avatar_yellow_77a0 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.avatar_yellow_77a0 p, .avatar_yellow_77a0 ul { line-height: 1.7; }
.avatar_yellow_77a0 ul { list-style: none; padding-left: 0; }
.avatar_yellow_77a0 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.avatar_yellow_77a0 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.aside-4b2c { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.narrow_8cb5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.outer-a3aa { text-align: center; }
.article-9b61 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.primary_06e9 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.slider_91dc { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.old-884e { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.easy-aea6 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.easy-aea6:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.easy-aea6 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.easy-aea6 p, .easy-aea6 ul { line-height: 1.7; }
.easy-aea6 ul { list-style: none; padding-left: 0; }
.easy-aea6 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.easy-aea6 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 1aac */
.ghost-box-c7 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.1;
}
