/* ============================================
   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 */
.purple-e69a p,
.notification-2b92,
.hard-b623,
.carousel-hovered-d685,
.black-5a05,
.current_f63c,
.alert-current-0d1d,
.surface-d70a {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.brown_2a88 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.brown_2a88 > *,
.heading-fixed-1865,
.purple-e69a,
.orange-aab9 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .brown_2a88 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .brown_2a88 {
    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 === */
.advanced-7009 {
  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 */
.advanced-7009.focus-active-602a {
  box-shadow: var(--shadow-md);
}

.frame-middle-b13b {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.badge_5b1e img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.advanced-1cf5 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.table_center_f64e {
  display: none;
}

/* Hide mobile actions on desktop */
.hovered-1e99 {
  display: none;
}

.sidebar-paper-0a82 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.sidebar-paper-0a82 a:hover,
.sidebar-paper-0a82 a.fn-active-e3c9 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.list_stone_adb7 {
  margin-left: 1rem;
}

.border_7e91 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.hover-pro-6d4e,
.red-a87f {
  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;
}

.hover-pro-6d4e {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.hover-pro-6d4e: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;
}

.red-a87f {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.red-a87f: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;
}

.hover-pro-6d4e svg,
.red-a87f svg {
  flex-shrink: 0;
}

.overlay_hot_ab24 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.container_1e0f {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.container_1e0f::before,
.container_1e0f::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.container_1e0f::before {
  top: -7px;
}

.container_1e0f::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.purple-c34a {
  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 === */
.cool-fcb4 {
  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);
}

.message-6ef8 {
  margin: 0 0 2rem;
  text-align: center;
}

.article_b4da {
  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;
}

.article_b4da:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.component_4e23 {
  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);
}

.component_4e23 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.module-prev-5a39 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.panel_yellow_2184 {
  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;
}

.panel_yellow_2184:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.title_fd57 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.container_selected_f111 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.paragraph_6e6d {
  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);
}

.paragraph_6e6d .accent_6323 {
  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;
}

.paragraph_6e6d .accent_6323 svg {
  flex-shrink: 0;
}

.paragraph_6e6d .component-54a6 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.paragraph_6e6d .component-54a6: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);
}

.paragraph_6e6d .center-2488 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.paragraph_6e6d .center-2488: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) {
  .cool-fcb4 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .article_b4da {
    max-width: 100%;
  }

  .module-prev-5a39 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .panel_yellow_2184 {
    padding: 1rem;
  }

  .title_fd57 {
    font-size: 1.5rem;
  }

  .container_selected_f111 {
    font-size: 0.75rem;
  }

  .component_4e23 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .paragraph_6e6d {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .paragraph_6e6d .accent_6323 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .module-prev-5a39 {
    grid-template-columns: 1fr;
  }
}

.content_fixed_a555 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.section_north_9207 {
  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 === */
.thumbnail_orange_9c1d {
  margin-bottom: 2.5rem;
}

.slider-bronze-67a9 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.content_fixed_a555 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.tertiary-f346 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.message-east-6192 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.summary_90f2 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mask-2baa {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.search_orange_8b67 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.gradient-hard-7fb8 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.outer_57db {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.outer_57db svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.dropdown-bright-f244 {
  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);
}

.element_last_8b08 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.button_9a1a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.link-dark-8863 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.component-86e5 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.layout_pro_c3d2 {
  display: grid;
  gap: 1rem;
}

.slow_eeab {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.soft_2a6e {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.tag_37bb {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.bright_0c10 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.notification-pink-9b35 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.media_stale_207f {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.media_stale_207f p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.notification-2b92 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.hero_c32d {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.layout-e442 {
  display: grid;
  gap: 2rem;
}

.secondary-simple-261e {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.message-east-6192 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.tertiary-f346 {
  flex: 1;
}

.mask-2baa {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.mask-2baa a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.accent_wide_07f8 {
  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;
}

.search_orange_8b67 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.cold_059b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.cold_059b span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.under_892a {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.under_892a a {
  font-size: 0.875rem;
  font-weight: 500;
}

.warm_aeb9 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.warm_aeb9 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.warm_aeb9 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.warm_aeb9 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.east-29e9 {
  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 === */
.item-gas-dafd {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.tag_a207 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.image-86fe {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.black-29c8 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.black-29c8 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.black-29c8 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.black-29c8 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;
}

.black-29c8 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.black-29c8 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.purple-e69a {
  padding: 3rem 0 5rem;
}

.orange-aab9 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.orange-aab9.filter-east-912b {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.hard-b623 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.logo_8d00 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.alert-1092 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.alert-1092 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.fresh-de10 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.sort-0c18 {
  text-align: center;
}

.column-b089 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.message-4e0f {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.component-short-1363 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.current_f63c {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.carousel-hovered-d685 {
  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;
}

.carousel-hovered-d685 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.carousel-hovered-d685:hover {
  box-shadow: var(--shadow-lg);
}

.carousel-hovered-d685.alert_static_0a62 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.carousel-hovered-d685 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.carousel-hovered-d685 ul {
  margin: 1rem 0;
}

.carousel-hovered-d685 li {
  margin-bottom: 0.75rem;
}

.badge-hovered-2945 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.article-46d9 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.article-46d9 a {
  font-weight: 600;
}

/* === Data Tables === */
.wood-65c2 {
  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;
}

.wood-65c2 table {
  width: 100%;
  min-width: 600px;
}

.wood-65c2 thead {
  background-color: var(--primary-color);
  color: white;
}

.wood-65c2 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.wood-65c2 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.wood-65c2 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.wood-65c2 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.hover_ca5b {
  list-style: none;
  margin: 1.5rem 0;
}

.hover_ca5b li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.hover_ca5b li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.detail_45c3::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-e3c9::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 === */
.hero-slow-06ba {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.badge-bright-8c0a {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.badge-bright-8c0a img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.badge-bright-8c0a strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.badge-bright-8c0a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-slow-06ba blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.alert-current-0d1d {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.alert-current-0d1d::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.gas-282b {
  position: relative;
  margin-bottom: 3rem;
}

.inner-65e8 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.inner-65e8 .gradient-5587 {
  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;
}

.backdrop_paper_2989 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.backdrop_paper_2989 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.backdrop_paper_2989 ul {
  margin: 1rem 0;
}

.backdrop_paper_2989 li {
  margin-bottom: 0.75rem;
}

.preview_6391 {
  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 === */
.preview_full_ce03 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.preview_full_ce03 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.link_643e {
  list-style: none;
  margin: 1.5rem 0;
}

.link_643e li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.link_643e a {
  font-weight: 600;
}

.thumbnail_south_e701 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.surface-d70a {
  margin: 2.5rem 0;
}

.block-4a2f {
  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;
}

.block-4a2f:hover {
  box-shadow: var(--shadow-lg);
}

.block-4a2f.banner_297e {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.tiny-566e {
  flex-shrink: 0;
}

.tiny-566e 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);
}

.bright-49df h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.smooth_d223,
.popup-hot-a6a1,
.solid_6a75 {
  width: 100%;
  margin: 1.5rem 0;
}

.form-65b9 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.form-65b9 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.paper_9af9 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.paper_9af9 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.text-57f6 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.text-57f6 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.paper-893c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.header_c742 {
  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;
}

.header_c742:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.header_c742.active-53d4 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.header_c742 .silver-3a6f {
  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;
}

.header_c742 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.nav_08d2 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.out-cced {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.out-cced label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.old-e452 {
  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 === */
.accent_6323 {
  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;
}

.component-54a6 {
  background-color: var(--primary-color);
  color: white;
}

.component-54a6:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.center-2488 {
  background-color: var(--text-secondary);
  color: white;
}

.center-2488:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.orange_8be0 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.orange_8be0:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.link-brown-d42f {
  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;
}

.link-brown-d42f:hover {
  background-color: var(--primary-dark);
}

.wood-bb04 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.smooth_e675 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.aside_777f {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.slider-d2ff {
  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 === */
.content-bottom-0b99 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.article-brown-27ea {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.article-brown-27ea h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.aside-narrow-9a57 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.media_wood_9c88 {
  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;
}

.border-south-f7fd {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.badge-b954 {
  list-style: none;
  counter-reset: rank-counter;
}

.badge-b954 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.badge-b954 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;
}

.description-clean-e6d2 {
  list-style: none;
}

.description-clean-e6d2 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.footer-95a4 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.message_brown_053b {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.message_brown_053b .static_dc13 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.message_brown_053b .block-solid-6638 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.button-226d {
  margin-top: 3rem;
}

.purple_a447 {
  width: 100%;
}

.alert-top-76f4 {
  background-color: #fef3c7;
}

.description_cold_db0a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.black_fa20 {
  margin: 3rem 0;
}

.photo_south_5e1b {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.dropdown_249b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.dropdown_249b:hover {
  box-shadow: var(--shadow-lg);
}

.dropdown_249b.border-top-9b52 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.east_5eaa {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.icon_wood_2eb2 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.icon_wood_2eb2 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.summary_cb9e {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.dropdown_249b blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.alert-rough-eb96 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.under_d75f {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.dirty_a89b {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.disabled_ac45 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.block_96bc {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.accent_f3e1 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.hard_037d {
  max-width: 900px;
  margin: 0 auto;
}

.alert_thick_987d {
  margin: 2rem 0;
}

.south-259d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.south-259d summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.south-259d summary::-webkit-details-marker {
  display: none;
}

.south-259d summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.mask-4b2e {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.south-259d[open] .mask-4b2e {
  transform: rotate(45deg);
}

.input_ca71 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.input_ca71 p:last-child {
  margin-bottom: 0;
}

.thumbnail-ede1 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.active-569c {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.middle_69a7 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.middle_69a7 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.middle_69a7 .accent_6323 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.grid_9aa4 {
  max-width: 900px;
  margin: 0 auto;
}

.shadow-selected-9851 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.shade_4719 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.shade_4719.fn-success-e3c9 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.grid_1863 {
  font-size: 3rem;
  line-height: 1;
}

.down-8d96 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.form_motion_6616 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.bottom_4524,
.dim_0ff0 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.bottom_4524 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.dim_0ff0 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.disabled-e565,
.dynamic_5853 {
  margin: 1.5rem 0;
}

.disabled-e565 li,
.dynamic_5853 li {
  margin-bottom: 1rem;
}

.table_blue_a4a9 {
  margin: 3rem 0;
}

.content-22e5 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.content-22e5 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.content-22e5 ol {
  margin: 1rem 0;
}

.content-22e5 li {
  margin-bottom: 0.75rem;
}

.menu_plasma_c9b5 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.cold_7bfe {
  margin: 2rem 0;
}

.menu_6894 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.action-794b {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.north-d237 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.box_099a {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.shade_a374 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.pagination-933d {
  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;
}

.pagination-933d img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.summary_90f2 {
  flex: 1;
}

.summary_90f2 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.bottom_514e {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.popup_a248 p {
  margin-bottom: 1rem;
}

.silver_4e8d {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.container_8b60 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.rough_5bf6 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.rough_5bf6 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.icon_1944 h3 {
  margin-bottom: 1.5rem;
}

.dirty-9bc0 {
  display: grid;
  gap: 2rem;
}

.slider-9602 {
  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;
}

.slider-9602 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.slider-9602 h4 {
  margin: 0 0 0.25rem;
}

.slider-9602 p {
  margin: 0;
  font-size: 0.9375rem;
}

.border_east_c25f {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.backdrop-a914 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.backdrop-a914 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.backdrop-a914 ul {
  margin: 1.5rem 0;
}

.backdrop-a914 li {
  margin-bottom: 0.75rem;
}

.sort_4928 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.active-cf64 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.banner-easy-c630 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.card-silver-aff8 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.card-silver-aff8 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.avatar-c11e {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.avatar-c11e a {
  color: rgba(255, 255, 255, 0.8);
}

.progress_3cac {
  list-style: none;
}

.progress_3cac li {
  margin-bottom: 0.75rem;
}

.progress_3cac a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.progress_3cac a:hover {
  color: white;
}

.hover-west-37bc {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.pink-8c5e {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.advanced-60b6 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.cold-3ad2 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.disabled-c512 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .brown_2a88 {
    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;
  }

  .alert-17d0 {
    font-size: 1.5rem !important;
  }

  .slider-bronze-67a9 {
    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 */
  .carousel-hovered-d685,
  .black-5a05,
  .backdrop_paper_2989,
  .bright-49df,
  .east_5eaa,
  .dropdown_249b,
  .input_ca71,
  .component_4e23,
  .notification-2b92,
  .hard-b623 {
    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 */
  .content_fixed_a555 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .tertiary-f346 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .message-east-6192 {
    flex-shrink: 0;
  }

  .summary_90f2 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .mask-2baa,
  .search_orange_8b67 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .search_orange_8b67 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .advanced-1cf5 {
    display: none;
  }

  /* Show mobile actions */
  .hovered-1e99 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .current-a7e0 {
    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;
  }

  .current-a7e0 svg {
    flex-shrink: 0;
  }

  .current-a7e0 .search-gold-f1bb {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .current-a7e0 .footer-warm-746a {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .small_de0d {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .accent_5ac5 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .current-a7e0:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .table_center_f64e {
    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;
  }

  .table_center_f64e.fn-active-e3c9 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .table_center_f64e li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .table_center_f64e li:last-child {
    border-bottom: none;
  }

  .table_center_f64e a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .sidebar-paper-0a82 {
    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;
  }

  .sidebar-paper-0a82 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .sidebar-paper-0a82 li:last-child {
    border-bottom: none;
  }

  .sidebar-paper-0a82 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .list_stone_adb7 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .border_7e91 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .hover-pro-6d4e,
  .red-a87f {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .hover-pro-6d4e {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .red-a87f {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .sidebar-paper-0a82.fn-active-e3c9 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .overlay_hot_ab24 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .advanced-7009 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .frame-middle-b13b {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .purple-c34a {
    margin-top: 0;
  }

  /* Hero section */
  .purple-c34a {
    padding: 2rem 0 1.5rem;
  }

  .slider-bronze-67a9 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .notification-2b92 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .cool-fcb4 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .article_b4da {
    max-width: 100%;
    border-radius: 8px;
  }

  .module-prev-5a39 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .panel_yellow_2184 {
    padding: 1rem;
  }

  .title_fd57 {
    font-size: 1.5rem;
  }

  .container_selected_f111 {
    font-size: 0.75rem;
  }

  .component_4e23 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .paragraph_6e6d {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .paragraph_6e6d .accent_6323 {
    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 */
  .image-86fe {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .block-4a2f {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .tiny-566e {
    margin-bottom: 1rem;
  }

  /* Author */
  .secondary-simple-261e {
    flex-direction: column;
  }

  .pagination-933d {
    flex-direction: column;
  }

  /* Quotes */
  .east_5eaa {
    flex-direction: column;
  }

  /* Pros/Cons */
  .form_motion_6616 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .box_099a {
    flex-direction: column;
  }

  .box_099a .accent_6323 {
    width: 100%;
  }

  /* Version comparison */
  .paper-893c {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .content-bottom-0b99 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .banner-easy-c630 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .advanced-60b6 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .wood-65c2,
  .popup-hot-a6a1,
  .tertiary_bronze_185b,
  .purple_a447,
  .smooth_d223,
  .solid_6a75 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .wood-65c2 table,
  .popup-hot-a6a1 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .old-e452 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .brown_2a88 {
    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;
  }

  .alert-17d0 {
    font-size: 1.25rem !important;
  }

  .slider-bronze-67a9 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .advanced-7009 {
    position: fixed;
  }

  .frame-middle-b13b {
    padding: 0.625rem 0;
  }

  .badge_5b1e img {
    height: 26px;
  }

  .sidebar-paper-0a82 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .table_center_f64e {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .current-a7e0 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .current-a7e0 svg {
    width: 18px;
    height: 18px;
  }

  .current-a7e0 .search-gold-f1bb {
    font-size: 0.7rem;
  }

  .current-a7e0 .footer-warm-746a {
    font-size: 0.65rem;
  }

  .hover-pro-6d4e,
  .red-a87f {
    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, .brown_2a88, .heading-fixed-1865, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .cool-fcb4 {
    padding: 1rem;
  }

  .module-prev-5a39 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .panel_yellow_2184 {
    padding: 0.875rem;
  }

  .title_fd57 {
    font-size: 1.25rem;
  }

  .paragraph_6e6d .accent_6323 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .slider-bronze-67a9 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .accent_6323 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .wood-bb04 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .block-4a2f {
    padding: 1rem;
  }

  .tiny-566e span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .carousel-hovered-d685,
  .hidden_8aa3,
  .button_f852,
  .modal-8969 {
    padding: 1rem;
  }
}

@media print {
  .advanced-7009,
  .item-gas-dafd,
  .overlay_hot_ab24,
  .accent_6323,
  .active-cf64 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .brown_2a88 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.feature_liquid_55da {
  margin-bottom: 3rem;
  text-align: center;
}

.alert-17d0 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.widget_8956 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.tooltip_6d89,
.south_56bf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.summary_ae63 {
  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;
}

.summary_ae63:hover {
  transform: translateY(-5px);
}

.summary_ae63 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.summary_ae63 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.notice_warm_ce61 {
  margin: 3rem 0;
}

.highlight_4811 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.advanced_1d9d {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.advanced_1d9d:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.fluid-685f {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.motion-2d10 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.summary-warm-5ed3 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.table_hot_6d4c {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.button_silver_516f {
  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;
}

.button_silver_516f:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.button_silver_516f.liquid_eea5 {
  border-left: 4px solid var(--primary-color);
}

.notification-9a65 {
  flex-shrink: 0;
}

.notification-9a65 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.active_slow_ced0 {
  flex: 1;
}

.active_slow_ced0 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.backdrop-9dda {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.content-pressed-5bce,
.tooltip-58dc,
.grid-in-8c67 {
  margin-bottom: 1.5rem;
}

.content-pressed-5bce h4,
.tooltip-58dc h4,
.grid-in-8c67 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.content-pressed-5bce ul,
.tooltip-58dc ul,
.grid-in-8c67 ul {
  list-style: none;
  padding: 0;
}

.content-pressed-5bce li,
.tooltip-58dc li,
.grid-in-8c67 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.content-pressed-5bce li:before,
.tooltip-58dc li:before,
.grid-in-8c67 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.outer_4f9b {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.outer_4f9b 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;
}

.outer_4f9b a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.pattern-new-a62e { margin: 2rem 0; }
.disabled_472f { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.disabled_472f h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.background_b7c5 p { margin-bottom: 1rem; line-height: 1.7; }
.background_b7c5 strong { color: var(--text-primary); }
.background_b7c5 ul { list-style: none; padding-left: 0; }
.background_b7c5 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.background_b7c5 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.simple_9afd { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.popup-copper-9e93 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.popup-copper-9e93:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.caption-9408 { font-size: 3rem; margin-bottom: 1rem; }
.popup-copper-9e93 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.popup-copper-9e93 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.grid_eaec { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.grid_eaec span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.tabs-lower-cfbb { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.hero-orange-ae66 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.smooth-87b4 { text-align: center; }
.sort_tiny_fb9c { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.mask-e565 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.chip_f96e { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.huge-1601 { margin: 2rem 0; }
.cold-76b4 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.cold-76b4 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.cold-76b4 p, .cold-76b4 ul { line-height: 1.7; }
.cold-76b4 ul { list-style: none; padding-left: 0; }
.cold-76b4 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.cold-76b4 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.texture_00ab { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.nav-hard-883f { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.photo-upper-c674 { text-align: center; }
.article_fdb8 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.tabs_center_0c0f { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.description-white-70d7 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.north_2839 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.slow-59e3 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.slow-59e3:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.slow-59e3 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.slow-59e3 p, .slow-59e3 ul { line-height: 1.7; }
.slow-59e3 ul { list-style: none; padding-left: 0; }
.slow-59e3 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.slow-59e3 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 5165 */
.ghost-box-a5 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.2;
}
