/* ============================================
   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 */
.border-copper-def4 p,
.form_narrow_fef3,
.yellow_9f53,
.backdrop-inner-4992,
.tooltip_west_12f6,
.medium-81a1,
.shadow-simple-7d81,
.component-dc74 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.next_bc9d {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.next_bc9d > *,
.search_1e28,
.border-copper-def4,
.search-north-be09 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .next_bc9d {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .next_bc9d {
    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 === */
.content_3b48 {
  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 */
.content_3b48.module_c36b {
  box-shadow: var(--shadow-md);
}

.mask_2828 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.chip_4a45 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.surface-8c95 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.logo_static_7f86 {
  display: none;
}

/* Hide mobile actions on desktop */
.section_7ddb {
  display: none;
}

.hovered-c655 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.hovered-c655 a:hover,
.hovered-c655 a.fn-active-76b9 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.west_91ba {
  margin-left: 1rem;
}

.tiny-4e49 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.overlay_small_8b07,
.pagination-5b8c {
  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;
}

.overlay_small_8b07 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.overlay_small_8b07: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;
}

.pagination-5b8c {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.pagination-5b8c: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;
}

.overlay_small_8b07 svg,
.pagination-5b8c svg {
  flex-shrink: 0;
}

.picture_0feb {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.slider_ace9 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.slider_ace9::before,
.slider_ace9::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.slider_ace9::before {
  top: -7px;
}

.slider_ace9::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.last-9596 {
  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 === */
.down-f175 {
  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);
}

.alert-middle-6d20 {
  margin: 0 0 2rem;
  text-align: center;
}

.image_purple_7483 {
  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;
}

.image_purple_7483:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.lower-3f7d {
  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);
}

.lower-3f7d strong {
  color: var(--primary-color);
  font-weight: 700;
}

.background-0a32 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.silver_f998 {
  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;
}

.silver_f998:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.shadow-727b {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.thick_2ab8 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.video-624b {
  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);
}

.video-624b .focused-b05f {
  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;
}

.video-624b .focused-b05f svg {
  flex-shrink: 0;
}

.video-624b .fast_5880 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.video-624b .fast_5880: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);
}

.video-624b .sidebar-c03c {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.video-624b .sidebar-c03c: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) {
  .down-f175 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .image_purple_7483 {
    max-width: 100%;
  }

  .background-0a32 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .silver_f998 {
    padding: 1rem;
  }

  .shadow-727b {
    font-size: 1.5rem;
  }

  .thick_2ab8 {
    font-size: 0.75rem;
  }

  .lower-3f7d {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .video-624b {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .video-624b .focused-b05f {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .background-0a32 {
    grid-template-columns: 1fr;
  }
}

.picture-11a2 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.fixed_0524 {
  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 === */
.sidebar-b1fa {
  margin-bottom: 2.5rem;
}

.hot_7512 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.picture-11a2 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.thumbnail-7e99 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info_current_003f {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.white-b8c8 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.slow_58b8 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.block_in_a608 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.complex_8900 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.east_fccb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.east_fccb svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.label_694a {
  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);
}

.header-focused-3b04 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.summary_3a37 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.caption-silver-63e2 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.dynamic_b692 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.cold_3963 {
  display: grid;
  gap: 1rem;
}

.tooltip_7e22 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.cold_d159 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.border_bdcd {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.aside_3270 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.footer-up-8ab4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.shade_ada7 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.shade_ada7 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.form_narrow_fef3 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.top_e7b7 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.header-11c9 {
  display: grid;
  gap: 2rem;
}

.focus_1ece {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.info_current_003f {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.thumbnail-7e99 {
  flex: 1;
}

.slow_58b8 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.slow_58b8 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hover_last_d243 {
  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;
}

.block_in_a608 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.mask_up_6c98 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.mask_up_6c98 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.background-03c0 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.background-03c0 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.mask-fca7 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.mask-fca7 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.mask-fca7 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mask-fca7 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.selected-664e {
  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 === */
.thumbnail-d51b {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.main_9fd5 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.tabs-4570 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.iron_b086 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.iron_b086 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.iron_b086 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.iron_b086 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;
}

.iron_b086 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.iron_b086 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.border-copper-def4 {
  padding: 3rem 0 5rem;
}

.search-north-be09 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.search-north-be09.grid-first-0d53 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.yellow_9f53 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.thumbnail-up-375b {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.description-88df {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.description-88df h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.nav_small_0ce5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.search-soft-798d {
  text-align: center;
}

.orange_994f {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.dark-0faa {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.middle-f546 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.medium-81a1 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.backdrop-inner-4992 {
  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;
}

.backdrop-inner-4992 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.backdrop-inner-4992:hover {
  box-shadow: var(--shadow-lg);
}

.backdrop-inner-4992.modal-6947 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.backdrop-inner-4992 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.backdrop-inner-4992 ul {
  margin: 1rem 0;
}

.backdrop-inner-4992 li {
  margin-bottom: 0.75rem;
}

.white-5f64 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.large-c42f {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.large-c42f a {
  font-weight: 600;
}

/* === Data Tables === */
.orange_309b {
  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;
}

.orange_309b table {
  width: 100%;
  min-width: 600px;
}

.orange_309b thead {
  background-color: var(--primary-color);
  color: white;
}

.orange_309b th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.orange_309b td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.orange_309b tbody tr:hover {
  background-color: var(--bg-secondary);
}

.orange_309b tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.texture-cold-e6fe {
  list-style: none;
  margin: 1.5rem 0;
}

.texture-cold-e6fe li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.texture-cold-e6fe li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.primary-static-c079::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-76b9::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 === */
.filter_96ff {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.avatar-south-7ef5 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.avatar-south-7ef5 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.avatar-south-7ef5 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.avatar-south-7ef5 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.filter_96ff blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.shadow-simple-7d81 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.shadow-simple-7d81::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.light_15ab {
  position: relative;
  margin-bottom: 3rem;
}

.hovered-c089 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.hovered-c089 .photo-ef73 {
  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;
}

.accordion-huge-6f49 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.accordion-huge-6f49 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.accordion-huge-6f49 ul {
  margin: 1rem 0;
}

.accordion-huge-6f49 li {
  margin-bottom: 0.75rem;
}

.mask-209f {
  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 === */
.detail_48eb {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.detail_48eb h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.header-b6dd {
  list-style: none;
  margin: 1.5rem 0;
}

.header-b6dd li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.header-b6dd a {
  font-weight: 600;
}

.section-e11c {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.component-dc74 {
  margin: 2.5rem 0;
}

.gradient_solid_d2a7 {
  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;
}

.gradient_solid_d2a7:hover {
  box-shadow: var(--shadow-lg);
}

.gradient_solid_d2a7.glass-ef19 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.avatar-action-b8da {
  flex-shrink: 0;
}

.avatar-action-b8da 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);
}

.button-light-7cf3 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.paragraph-fe1e,
.detail-bda9,
.label-out-07f2 {
  width: 100%;
  margin: 1.5rem 0;
}

.overlay-mini-b911 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.overlay-mini-b911 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.filter-7c58 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.filter-7c58 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.title-silver-edbb {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.title-silver-edbb strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.inner-77b1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.paragraph-fixed-a7b4 {
  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;
}

.paragraph-fixed-a7b4:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.paragraph-fixed-a7b4.picture-1fe4 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.paragraph-fixed-a7b4 .active-current-fe92 {
  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;
}

.paragraph-fixed-a7b4 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.picture_pressed_ae99 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.hover-fast-a4fc {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.hover-fast-a4fc label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.photo_b4fe {
  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 === */
.focused-b05f {
  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;
}

.fast_5880 {
  background-color: var(--primary-color);
  color: white;
}

.fast_5880:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.sidebar-c03c {
  background-color: var(--text-secondary);
  color: white;
}

.sidebar-c03c:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.media-0d69 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.media-0d69:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.caption_a6a7 {
  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;
}

.caption_a6a7:hover {
  background-color: var(--primary-dark);
}

.hover-hard-80ff {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.column-27a6 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.purple_4c27 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.gradient-fixed-ae01 {
  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 === */
.dynamic_1a23 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.green-4e52 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.green-4e52 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.layout-ce80 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.texture_under_e4fb {
  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;
}

.cool_8c74 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.avatar_narrow_ba22 {
  list-style: none;
  counter-reset: rank-counter;
}

.avatar_narrow_ba22 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.avatar_narrow_ba22 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;
}

.row-bronze-8d80 {
  list-style: none;
}

.row-bronze-8d80 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.glass_6055 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.breadcrumb_008b {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb_008b .outline-new-21d8 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.breadcrumb_008b .notification_8fcc {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.notice_aca3 {
  margin-top: 3rem;
}

.backdrop-0540 {
  width: 100%;
}

.video-d659 {
  background-color: #fef3c7;
}

.status-baab {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.accent-8826 {
  margin: 3rem 0;
}

.list_0a65 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.video-511f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.video-511f:hover {
  box-shadow: var(--shadow-lg);
}

.video-511f.tertiary_497f {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.gas_8252 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.pattern_dim_a2ca strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.pattern_dim_a2ca span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.badge-plasma-d5d7 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.video-511f blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.item_hot_cbe5 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.highlight_focused_7f50 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.advanced_0170 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.alert-cool-c0db {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.dirty-f712 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.gold-f88a {
  margin-top: 1rem;
}

/* === FAQ Section === */
.item-da20 {
  max-width: 900px;
  margin: 0 auto;
}

.pattern-c83c {
  margin: 2rem 0;
}

.slider-small-a16c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.slider-small-a16c summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.slider-small-a16c summary::-webkit-details-marker {
  display: none;
}

.slider-small-a16c summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.popup_current_c15a {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.slider-small-a16c[open] .popup_current_c15a {
  transform: rotate(45deg);
}

.video-c69d {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.video-c69d p:last-child {
  margin-bottom: 0;
}

.shade_current_2a93 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.large-515d {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.pagination_current_8791 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.pagination_current_8791 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.pagination_current_8791 .focused-b05f {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.stone-6a28 {
  max-width: 900px;
  margin: 0 auto;
}

.container_e260 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.cold-5c0e {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.cold-5c0e.fn-success-76b9 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.section_64b4 {
  font-size: 3rem;
  line-height: 1;
}

.purple-6c87 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.action_b742 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.current_80b2,
.summary-3056 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.current_80b2 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.summary-3056 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.text-b196,
.section_fixed_c67c {
  margin: 1.5rem 0;
}

.text-b196 li,
.section_fixed_c67c li {
  margin-bottom: 1rem;
}

.item_new_75b4 {
  margin: 3rem 0;
}

.panel_dim_8eb4 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.panel_dim_8eb4 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.panel_dim_8eb4 ol {
  margin: 1rem 0;
}

.panel_dim_8eb4 li {
  margin-bottom: 0.75rem;
}

.paragraph-clean-eaf3 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.wrapper-93f8 {
  margin: 2rem 0;
}

.content_cool_3477 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.nav-iron-e1f4 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.plasma-7b3c {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.mask-right-710e {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.clean-5753 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.container_74ee {
  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;
}

.container_74ee img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.white-b8c8 {
  flex: 1;
}

.white-b8c8 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.link_up_5a94 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.info-b01b p {
  margin-bottom: 1rem;
}

.plasma-882b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.section_yellow_bcca {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.popup-fluid-c7eb {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.popup-fluid-c7eb a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.icon_hard_56b6 h3 {
  margin-bottom: 1.5rem;
}

.accent_tiny_b92f {
  display: grid;
  gap: 2rem;
}

.west-4c71 {
  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;
}

.west-4c71 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.west-4c71 h4 {
  margin: 0 0 0.25rem;
}

.west-4c71 p {
  margin: 0;
  font-size: 0.9375rem;
}

.steel_6cc6 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.list_6ee2 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.list_6ee2 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.list_6ee2 ul {
  margin: 1.5rem 0;
}

.list_6ee2 li {
  margin-bottom: 0.75rem;
}

.caption_f3a3 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.wrapper-complex-c9b8 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.button_6f77 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.static_1d67 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.static_1d67 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.box_bottom_38f0 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.box_bottom_38f0 a {
  color: rgba(255, 255, 255, 0.8);
}

.tabs-south-a3f0 {
  list-style: none;
}

.tabs-south-a3f0 li {
  margin-bottom: 0.75rem;
}

.tabs-south-a3f0 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.tabs-south-a3f0 a:hover {
  color: white;
}

.inner_f926 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.badge-blue-b896 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.steel-b625 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.title-7b16 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.tooltip_fresh_b9fd {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .next_bc9d {
    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;
  }

  .pattern-east-02d6 {
    font-size: 1.5rem !important;
  }

  .hot_7512 {
    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 */
  .backdrop-inner-4992,
  .tooltip_west_12f6,
  .accordion-huge-6f49,
  .button-light-7cf3,
  .gas_8252,
  .video-511f,
  .video-c69d,
  .lower-3f7d,
  .form_narrow_fef3,
  .yellow_9f53 {
    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 */
  .picture-11a2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .thumbnail-7e99 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .info_current_003f {
    flex-shrink: 0;
  }

  .white-b8c8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .slow_58b8,
  .block_in_a608 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .block_in_a608 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .surface-8c95 {
    display: none;
  }

  /* Show mobile actions */
  .section_7ddb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .secondary_8236 {
    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;
  }

  .secondary_8236 svg {
    flex-shrink: 0;
  }

  .secondary_8236 .banner_1004 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .secondary_8236 .box_5d9d {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .modal-brown-72b9 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .section-light-f663 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .secondary_8236:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .logo_static_7f86 {
    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;
  }

  .logo_static_7f86.fn-active-76b9 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .logo_static_7f86 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .logo_static_7f86 li:last-child {
    border-bottom: none;
  }

  .logo_static_7f86 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .hovered-c655 {
    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;
  }

  .hovered-c655 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .hovered-c655 li:last-child {
    border-bottom: none;
  }

  .hovered-c655 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .west_91ba {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .tiny-4e49 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .overlay_small_8b07,
  .pagination-5b8c {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .overlay_small_8b07 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .pagination-5b8c {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .hovered-c655.fn-active-76b9 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .picture_0feb {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .content_3b48 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .mask_2828 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .last-9596 {
    margin-top: 0;
  }

  /* Hero section */
  .last-9596 {
    padding: 2rem 0 1.5rem;
  }

  .hot_7512 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .form_narrow_fef3 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .down-f175 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .image_purple_7483 {
    max-width: 100%;
    border-radius: 8px;
  }

  .background-0a32 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .silver_f998 {
    padding: 1rem;
  }

  .shadow-727b {
    font-size: 1.5rem;
  }

  .thick_2ab8 {
    font-size: 0.75rem;
  }

  .lower-3f7d {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .video-624b {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .video-624b .focused-b05f {
    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 */
  .tabs-4570 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .gradient_solid_d2a7 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .avatar-action-b8da {
    margin-bottom: 1rem;
  }

  /* Author */
  .focus_1ece {
    flex-direction: column;
  }

  .container_74ee {
    flex-direction: column;
  }

  /* Quotes */
  .gas_8252 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .action_b742 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .mask-right-710e {
    flex-direction: column;
  }

  .mask-right-710e .focused-b05f {
    width: 100%;
  }

  /* Version comparison */
  .inner-77b1 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .dynamic_1a23 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .button_6f77 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .steel-b625 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .orange_309b,
  .detail-bda9,
  .black_c96a,
  .backdrop-0540,
  .paragraph-fe1e,
  .label-out-07f2 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .orange_309b table,
  .detail-bda9 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .photo_b4fe {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .next_bc9d {
    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;
  }

  .pattern-east-02d6 {
    font-size: 1.25rem !important;
  }

  .hot_7512 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .content_3b48 {
    position: fixed;
  }

  .mask_2828 {
    padding: 0.625rem 0;
  }

  .chip_4a45 img {
    height: 26px;
  }

  .hovered-c655 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .logo_static_7f86 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .secondary_8236 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .secondary_8236 svg {
    width: 18px;
    height: 18px;
  }

  .secondary_8236 .banner_1004 {
    font-size: 0.7rem;
  }

  .secondary_8236 .box_5d9d {
    font-size: 0.65rem;
  }

  .overlay_small_8b07,
  .pagination-5b8c {
    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, .next_bc9d, .search_1e28, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .down-f175 {
    padding: 1rem;
  }

  .background-0a32 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .silver_f998 {
    padding: 0.875rem;
  }

  .shadow-727b {
    font-size: 1.25rem;
  }

  .video-624b .focused-b05f {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .hot_7512 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .focused-b05f {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .hover-hard-80ff {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .gradient_solid_d2a7 {
    padding: 1rem;
  }

  .avatar-action-b8da span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .backdrop-inner-4992,
  .progress_59cf,
  .filter_d5b2,
  .tabs-0e83 {
    padding: 1rem;
  }
}

@media print {
  .content_3b48,
  .thumbnail-d51b,
  .picture_0feb,
  .focused-b05f,
  .wrapper-complex-c9b8 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .next_bc9d {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.top_5dfd {
  margin-bottom: 3rem;
  text-align: center;
}

.pattern-east-02d6 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.top_2196 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.stone_576e,
.tag_white_3b10 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.wrapper_9d85 {
  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;
}

.wrapper_9d85:hover {
  transform: translateY(-5px);
}

.wrapper_9d85 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.wrapper_9d85 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.container_e7f8 {
  margin: 3rem 0;
}

.paragraph_bright_2560 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.fast-4568 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.fast-4568:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.orange_69a5 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.widget_103b {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.dark_138b {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.gallery-6b18 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.left-94fc {
  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;
}

.left-94fc:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.left-94fc.list_d792 {
  border-left: 4px solid var(--primary-color);
}

.orange_26b2 {
  flex-shrink: 0;
}

.orange_26b2 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.picture-a8f4 {
  flex: 1;
}

.picture-a8f4 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.row_hovered_2717 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.block-narrow-c381,
.down-e58b,
.focused-e455 {
  margin-bottom: 1.5rem;
}

.block-narrow-c381 h4,
.down-e58b h4,
.focused-e455 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.block-narrow-c381 ul,
.down-e58b ul,
.focused-e455 ul {
  list-style: none;
  padding: 0;
}

.block-narrow-c381 li,
.down-e58b li,
.focused-e455 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.block-narrow-c381 li:before,
.down-e58b li:before,
.focused-e455 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.warm_74b5 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.warm_74b5 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;
}

.warm_74b5 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.fixed-77be { margin: 2rem 0; }
.gold-a378 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.gold-a378 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.header_down_b334 p { margin-bottom: 1rem; line-height: 1.7; }
.header_down_b334 strong { color: var(--text-primary); }
.header_down_b334 ul { list-style: none; padding-left: 0; }
.header_down_b334 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.header_down_b334 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.title_light_c20e { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.pink_caf2 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.pink_caf2:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.clean-ec33 { font-size: 3rem; margin-bottom: 1rem; }
.pink_caf2 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.pink_caf2 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.hard-4cf8 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.hard-4cf8 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.overlay_plasma_db6f { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.purple_351e { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.accordion_middle_e676 { text-align: center; }
.complex-8c16 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.paper-2e0a { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.wrapper-simple-91dd { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.new_56ad { margin: 2rem 0; }
.title-lower-c3ae { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.title-lower-c3ae h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.title-lower-c3ae p, .title-lower-c3ae ul { line-height: 1.7; }
.title-lower-c3ae ul { list-style: none; padding-left: 0; }
.title-lower-c3ae ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.title-lower-c3ae ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.nav_bd24 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.layout-f00c { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.paragraph_fluid_7ff1 { text-align: center; }
.black_4a28 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.outline_8340 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.module_paper_7d0e { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.old_c357 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.overlay-da7b { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.overlay-da7b:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.overlay-da7b h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.overlay-da7b p, .overlay-da7b ul { line-height: 1.7; }
.overlay-da7b ul { list-style: none; padding-left: 0; }
.overlay-da7b ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.overlay-da7b ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: e1bd */
.ghost-box-d5 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.2;
}
