/* ============================================
   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 */
.video_pink_b5bf p,
.full_7f11,
.picture-dynamic-4afe,
.search_0c07,
.detail_fluid_59a0,
.steel-1892,
.thumbnail-last-4501,
.accordion_dynamic_e283 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.focus-liquid-c0d7 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.focus-liquid-c0d7 > *,
.light-cb99,
.video_pink_b5bf,
.card-9f08 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .focus-liquid-c0d7 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .focus-liquid-c0d7 {
    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 === */
.preview-9d5e {
  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 */
.preview-9d5e.hero-slow-5b51 {
  box-shadow: var(--shadow-md);
}

.video-huge-f30a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.top-f65d img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.article-4cbf {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.pink-b3e2 {
  display: none;
}

/* Hide mobile actions on desktop */
.pattern_8bb6 {
  display: none;
}

.backdrop_6c38 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.backdrop_6c38 a:hover,
.backdrop_6c38 a.fn-active-cfa1 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.stone-e2ff {
  margin-left: 1rem;
}

.paper_2831 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.hot-2484,
.link-3481 {
  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;
}

.hot-2484 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.hot-2484: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;
}

.link-3481 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.link-3481: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;
}

.hot-2484 svg,
.link-3481 svg {
  flex-shrink: 0;
}

.tooltip_1a5b {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.thumbnail-0f54 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.thumbnail-0f54::before,
.thumbnail-0f54::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.thumbnail-0f54::before {
  top: -7px;
}

.thumbnail-0f54::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.title-stone-e8e4 {
  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 === */
.input-basic-b4a0 {
  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);
}

.sidebar_selected_e158 {
  margin: 0 0 2rem;
  text-align: center;
}

.backdrop-in-f167 {
  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;
}

.backdrop-in-f167:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.bright-e820 {
  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);
}

.bright-e820 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.header-3299 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.over-fae1 {
  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;
}

.over-fae1:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.large_83bc {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.frame_ab90 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.logo-031f {
  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);
}

.logo-031f .lower-5cb2 {
  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;
}

.logo-031f .lower-5cb2 svg {
  flex-shrink: 0;
}

.logo-031f .soft-1ea2 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.logo-031f .soft-1ea2: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);
}

.logo-031f .column_9b1c {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.logo-031f .column_9b1c: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) {
  .input-basic-b4a0 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .backdrop-in-f167 {
    max-width: 100%;
  }

  .header-3299 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .over-fae1 {
    padding: 1rem;
  }

  .large_83bc {
    font-size: 1.5rem;
  }

  .frame_ab90 {
    font-size: 0.75rem;
  }

  .bright-e820 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .logo-031f {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .logo-031f .lower-5cb2 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .header-3299 {
    grid-template-columns: 1fr;
  }
}

.heading_bottom_9907 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tall_7667 {
  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 === */
.item-0b97 {
  margin-bottom: 2.5rem;
}

.copper-61c4 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.heading_bottom_9907 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.logo-easy-3cf7 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.container-outer-b3c8 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.fresh-250c {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.article_8180 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.popup_hard_ff2a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.current-78eb {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.shade-53da {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.shade-53da svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.pressed_4e0e {
  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);
}

.east-9ea6 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.north-ed5f {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.silver_0090 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.outline_55ef {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.badge-brown-7192 {
  display: grid;
  gap: 1rem;
}

.search-pink-bca4 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.pressed_6c55 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.easy_8c21 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.highlight_b798 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.box_static_be4a {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.panel-9c67 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.panel-9c67 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.full_7f11 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.shade-clean-2c5b {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.section-light-8468 {
  display: grid;
  gap: 2rem;
}

.carousel_4200 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.container-outer-b3c8 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.logo-easy-3cf7 {
  flex: 1;
}

.article_8180 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.article_8180 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.prev_e137 {
  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;
}

.popup_hard_ff2a {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.under_f718 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.under_f718 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.container_white_af76 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.container_white_af76 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.rough_4ae3 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.rough_4ae3 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.rough_4ae3 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rough_4ae3 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.link-current-3bee {
  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 === */
.hidden-right-bf76 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.red_7651 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.tag_smooth_60bf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.dropdown-0801 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.dropdown-0801 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.dropdown-0801 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.dropdown-0801 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;
}

.dropdown-0801 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.dropdown-0801 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.video_pink_b5bf {
  padding: 3rem 0 5rem;
}

.card-9f08 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.card-9f08.column-liquid-dd03 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.picture-dynamic-4afe {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.chip_silver_32b7 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.element_f4ff {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.element_f4ff h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.dirty-8d54 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.focus_over_6b25 {
  text-align: center;
}

.popup-48b5 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.disabled_glass_7893 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.modal_ff4d {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.steel-1892 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.search_0c07 {
  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;
}

.search_0c07 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.search_0c07:hover {
  box-shadow: var(--shadow-lg);
}

.search_0c07.tertiary_90e3 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.search_0c07 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.search_0c07 ul {
  margin: 1rem 0;
}

.search_0c07 li {
  margin-bottom: 0.75rem;
}

.lite-0888 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.notification_over_f765 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.notification_over_f765 a {
  font-weight: 600;
}

/* === Data Tables === */
.mini_b1eb {
  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;
}

.mini_b1eb table {
  width: 100%;
  min-width: 600px;
}

.mini_b1eb thead {
  background-color: var(--primary-color);
  color: white;
}

.mini_b1eb th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.mini_b1eb td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.mini_b1eb tbody tr:hover {
  background-color: var(--bg-secondary);
}

.mini_b1eb tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.hidden-299e {
  list-style: none;
  margin: 1.5rem 0;
}

.hidden-299e li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.hidden-299e li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.basic-2db6::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-cfa1::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 === */
.hidden-dynamic-5a2c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.wide-fe15 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.wide-fe15 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.wide-fe15 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.wide-fe15 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hidden-dynamic-5a2c blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.thumbnail-last-4501 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.thumbnail-last-4501::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.tabs-advanced-1f6b {
  position: relative;
  margin-bottom: 3rem;
}

.soft_5220 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.soft_5220 .gradient-2e7e {
  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;
}

.gas-b2dd {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.gas-b2dd h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.gas-b2dd ul {
  margin: 1rem 0;
}

.gas-b2dd li {
  margin-bottom: 0.75rem;
}

.content-4176 {
  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 === */
.widget-fluid-7dda {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.widget-fluid-7dda h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.shade_bf4a {
  list-style: none;
  margin: 1.5rem 0;
}

.shade_bf4a li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.shade_bf4a a {
  font-weight: 600;
}

.aside_dim_7369 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.accordion_dynamic_e283 {
  margin: 2.5rem 0;
}

.old-f0c7 {
  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;
}

.old-f0c7:hover {
  box-shadow: var(--shadow-lg);
}

.old-f0c7.backdrop-dim-7992 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.preview-cdb2 {
  flex-shrink: 0;
}

.preview-cdb2 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);
}

.status-north-0524 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.hidden_full_a16a,
.feature-4c18,
.disabled-in-004d {
  width: 100%;
  margin: 1.5rem 0;
}

.texture-6413 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.texture-6413 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.purple-c3ce {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.purple-c3ce strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.video-static-77ef {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.video-static-77ef strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.grid-west-60e9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.footer_a7d0 {
  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;
}

.footer_a7d0:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.footer_a7d0.status_6dd2 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.footer_a7d0 .container_c0c1 {
  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;
}

.footer_a7d0 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.smooth-ad8d {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.paragraph_1cad {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.paragraph_1cad label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.in_613d {
  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 === */
.lower-5cb2 {
  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;
}

.soft-1ea2 {
  background-color: var(--primary-color);
  color: white;
}

.soft-1ea2:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.column_9b1c {
  background-color: var(--text-secondary);
  color: white;
}

.column_9b1c:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.red-e94f {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.red-e94f:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.accordion-mini-47c2 {
  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;
}

.accordion-mini-47c2:hover {
  background-color: var(--primary-dark);
}

.complex_7863 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.input_4115 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.sort_east_b5b3 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.rough_8d70 {
  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 === */
.highlight-22e0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.center_dc89 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.center_dc89 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.link_light_48a7 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.hot_87cd {
  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;
}

.layout_c7fc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.title_bf91 {
  list-style: none;
  counter-reset: rank-counter;
}

.title_bf91 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.title_bf91 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;
}

.header_gold_40e0 {
  list-style: none;
}

.header_gold_40e0 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.mask_lower_eec6 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.thick-cdfd {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.thick-cdfd .gallery_af5f {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.thick-cdfd .summary-red-b9d7 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.texture_dd42 {
  margin-top: 3rem;
}

.main-1dc1 {
  width: 100%;
}

.slow-bc1c {
  background-color: #fef3c7;
}

.aside_d364 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.module_03b7 {
  margin: 3rem 0;
}

.rough-0b58 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.dark_a5b1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.dark_a5b1:hover {
  box-shadow: var(--shadow-lg);
}

.dark_a5b1.accent-8cfb {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.mask-9478 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.active-f2fe strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.active-f2fe span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-dim-8d05 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.dark_a5b1 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.modal-988f {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.selected_8102 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.sort-inner-a31f {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.soft_2a40 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.motion_08ec {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.narrow-7cf5 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.pressed-03f6 {
  max-width: 900px;
  margin: 0 auto;
}

.prev_d512 {
  margin: 2rem 0;
}

.out-5961 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.out-5961 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.out-5961 summary::-webkit-details-marker {
  display: none;
}

.out-5961 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.complex_d935 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.out-5961[open] .complex_d935 {
  transform: rotate(45deg);
}

.popup-0100 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.popup-0100 p:last-child {
  margin-bottom: 0;
}

.advanced_a7e0 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.hard-c750 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.nav_next_2932 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.nav_next_2932 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.nav_next_2932 .lower-5cb2 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.selected-db2c {
  max-width: 900px;
  margin: 0 auto;
}

.prev_a2e8 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.icon-02b9 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.icon-02b9.fn-success-cfa1 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.panel_713c {
  font-size: 3rem;
  line-height: 1;
}

.backdrop_slow_4756 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.paper_9456 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.summary_focused_f74f,
.hero-12ce {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.summary_focused_f74f h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.hero-12ce h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.header_15c1,
.right-6e30 {
  margin: 1.5rem 0;
}

.header_15c1 li,
.right-6e30 li {
  margin-bottom: 1rem;
}

.texture_7742 {
  margin: 3rem 0;
}

.box_7f91 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.box_7f91 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.box_7f91 ol {
  margin: 1rem 0;
}

.box_7f91 li {
  margin-bottom: 0.75rem;
}

.dim_702c {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.video-e6cc {
  margin: 2rem 0;
}

.aside-last-4028 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.pagination-tall-6b4b {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.text_0457 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.wrapper-0af2 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.gold-b6ec {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.first-0aff {
  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;
}

.first-0aff img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.fresh-250c {
  flex: 1;
}

.fresh-250c h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.thick-d69c {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.smooth_6aae p {
  margin-bottom: 1rem;
}

.accordion_pro_82f2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.tall_0878 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.logo-daf2 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.logo-daf2 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.dim_20e3 h3 {
  margin-bottom: 1.5rem;
}

.outline-88a8 {
  display: grid;
  gap: 2rem;
}

.over-3aee {
  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;
}

.over-3aee img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.over-3aee h4 {
  margin: 0 0 0.25rem;
}

.over-3aee p {
  margin: 0;
  font-size: 0.9375rem;
}

.table_hovered_a8d6 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.card-wide-aa6f {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.card-wide-aa6f h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.card-wide-aa6f ul {
  margin: 1.5rem 0;
}

.card-wide-aa6f li {
  margin-bottom: 0.75rem;
}

.photo-dim-4261 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.box_tiny_9c50 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.menu-668c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.summary-722c h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.summary-722c p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.focused_5407 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.focused_5407 a {
  color: rgba(255, 255, 255, 0.8);
}

.detail_7c79 {
  list-style: none;
}

.detail_7c79 li {
  margin-bottom: 0.75rem;
}

.detail_7c79 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.detail_7c79 a:hover {
  color: white;
}

.avatar_9694 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.alert-c4dc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.aside-f851 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.description-huge-25e9 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.copper-7f0a {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .focus-liquid-c0d7 {
    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;
  }

  .panel-fixed-b778 {
    font-size: 1.5rem !important;
  }

  .copper-61c4 {
    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 */
  .search_0c07,
  .detail_fluid_59a0,
  .gas-b2dd,
  .status-north-0524,
  .mask-9478,
  .dark_a5b1,
  .popup-0100,
  .bright-e820,
  .full_7f11,
  .picture-dynamic-4afe {
    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 */
  .heading_bottom_9907 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .logo-easy-3cf7 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .container-outer-b3c8 {
    flex-shrink: 0;
  }

  .fresh-250c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .article_8180,
  .popup_hard_ff2a {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .popup_hard_ff2a {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .article-4cbf {
    display: none;
  }

  /* Show mobile actions */
  .pattern_8bb6 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .dim-3aea {
    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;
  }

  .dim-3aea svg {
    flex-shrink: 0;
  }

  .dim-3aea .down-2ab2 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .dim-3aea .bottom_7011 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .heading-north-8be1 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .mask_stale_f0fa {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .dim-3aea:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .pink-b3e2 {
    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;
  }

  .pink-b3e2.fn-active-cfa1 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .pink-b3e2 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .pink-b3e2 li:last-child {
    border-bottom: none;
  }

  .pink-b3e2 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .backdrop_6c38 {
    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;
  }

  .backdrop_6c38 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .backdrop_6c38 li:last-child {
    border-bottom: none;
  }

  .backdrop_6c38 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .stone-e2ff {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .paper_2831 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .hot-2484,
  .link-3481 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .hot-2484 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .link-3481 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .backdrop_6c38.fn-active-cfa1 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .tooltip_1a5b {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .preview-9d5e {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .video-huge-f30a {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .title-stone-e8e4 {
    margin-top: 0;
  }

  /* Hero section */
  .title-stone-e8e4 {
    padding: 2rem 0 1.5rem;
  }

  .copper-61c4 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .full_7f11 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .input-basic-b4a0 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .backdrop-in-f167 {
    max-width: 100%;
    border-radius: 8px;
  }

  .header-3299 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .over-fae1 {
    padding: 1rem;
  }

  .large_83bc {
    font-size: 1.5rem;
  }

  .frame_ab90 {
    font-size: 0.75rem;
  }

  .bright-e820 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .logo-031f {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .logo-031f .lower-5cb2 {
    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 */
  .tag_smooth_60bf {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .old-f0c7 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .preview-cdb2 {
    margin-bottom: 1rem;
  }

  /* Author */
  .carousel_4200 {
    flex-direction: column;
  }

  .first-0aff {
    flex-direction: column;
  }

  /* Quotes */
  .mask-9478 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .paper_9456 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .wrapper-0af2 {
    flex-direction: column;
  }

  .wrapper-0af2 .lower-5cb2 {
    width: 100%;
  }

  /* Version comparison */
  .grid-west-60e9 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .highlight-22e0 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .menu-668c {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .aside-f851 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .mini_b1eb,
  .feature-4c18,
  .prev_c6ab,
  .main-1dc1,
  .hidden_full_a16a,
  .disabled-in-004d {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mini_b1eb table,
  .feature-4c18 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .in_613d {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .focus-liquid-c0d7 {
    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;
  }

  .panel-fixed-b778 {
    font-size: 1.25rem !important;
  }

  .copper-61c4 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .preview-9d5e {
    position: fixed;
  }

  .video-huge-f30a {
    padding: 0.625rem 0;
  }

  .top-f65d img {
    height: 26px;
  }

  .backdrop_6c38 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .pink-b3e2 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .dim-3aea {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .dim-3aea svg {
    width: 18px;
    height: 18px;
  }

  .dim-3aea .down-2ab2 {
    font-size: 0.7rem;
  }

  .dim-3aea .bottom_7011 {
    font-size: 0.65rem;
  }

  .hot-2484,
  .link-3481 {
    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, .focus-liquid-c0d7, .light-cb99, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .input-basic-b4a0 {
    padding: 1rem;
  }

  .header-3299 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .over-fae1 {
    padding: 0.875rem;
  }

  .large_83bc {
    font-size: 1.25rem;
  }

  .logo-031f .lower-5cb2 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .copper-61c4 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .lower-5cb2 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .complex_7863 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .old-f0c7 {
    padding: 1rem;
  }

  .preview-cdb2 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .search_0c07,
  .short-018d,
  .description_d467,
  .overlay_glass_c65e {
    padding: 1rem;
  }
}

@media print {
  .preview-9d5e,
  .hidden-right-bf76,
  .tooltip_1a5b,
  .lower-5cb2,
  .box_tiny_9c50 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .focus-liquid-c0d7 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.tertiary_1952 {
  margin-bottom: 3rem;
  text-align: center;
}

.panel-fixed-b778 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.tag-down-f78f {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.next-6119,
.feature_8f47 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.small_27b7 {
  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;
}

.small_27b7:hover {
  transform: translateY(-5px);
}

.small_27b7 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.small_27b7 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.pro-6336 {
  margin: 3rem 0;
}

.hover-c3bc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.caption-next-de10 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.caption-next-de10:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.hero_clean_6174 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.widget_04f3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.container-cc64 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.layout-top-0cf3 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.gallery-south-5f08 {
  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;
}

.gallery-south-5f08:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.gallery-south-5f08.paper-6348 {
  border-left: 4px solid var(--primary-color);
}

.text_easy_a867 {
  flex-shrink: 0;
}

.text_easy_a867 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.upper_e4cf {
  flex: 1;
}

.upper_e4cf h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.aside-orange-ddc2 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.focus-right-f0e6,
.photo_c605,
.plasma_6369 {
  margin-bottom: 1.5rem;
}

.focus-right-f0e6 h4,
.photo_c605 h4,
.plasma_6369 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.focus-right-f0e6 ul,
.photo_c605 ul,
.plasma_6369 ul {
  list-style: none;
  padding: 0;
}

.focus-right-f0e6 li,
.photo_c605 li,
.plasma_6369 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.focus-right-f0e6 li:before,
.photo_c605 li:before,
.plasma_6369 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.aside-3df1 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.aside-3df1 a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.aside-3df1 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.element-dim-7489 { margin: 2rem 0; }
.search_7a2d { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.search_7a2d h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.gradient_current_b8ce p { margin-bottom: 1rem; line-height: 1.7; }
.gradient_current_b8ce strong { color: var(--text-primary); }
.gradient_current_b8ce ul { list-style: none; padding-left: 0; }
.gradient_current_b8ce ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.gradient_current_b8ce ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.action_f848 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.texture-wood-c09b { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.texture-wood-c09b:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.clean_413b { font-size: 3rem; margin-bottom: 1rem; }
.texture-wood-c09b h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.texture-wood-c09b p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.accordion_ccf8 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.accordion_ccf8 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.column-2459 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.border-f6f8 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.gas_a173 { text-align: center; }
.active-33bf { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.picture-dc04 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.bottom-9edd { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.form-cb71 { margin: 2rem 0; }
.summary-tall-4973 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.summary-tall-4973 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.summary-tall-4973 p, .summary-tall-4973 ul { line-height: 1.7; }
.summary-tall-4973 ul { list-style: none; padding-left: 0; }
.summary-tall-4973 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.summary-tall-4973 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.progress_3a60 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.disabled_fresh_2f85 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.filter_dark_b299 { text-align: center; }
.text_glass_5ff3 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.steel-5bfa { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.header-liquid-c2c1 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.icon-f9de { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.block-gold-a8e8 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.block-gold-a8e8:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.block-gold-a8e8 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.block-gold-a8e8 p, .block-gold-a8e8 ul { line-height: 1.7; }
.block-gold-a8e8 ul { list-style: none; padding-left: 0; }
.block-gold-a8e8 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.block-gold-a8e8 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 86c6 */
.ghost-box-z9 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.3;
}
