/* ============================================
   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 */
.header_c2a9 p,
.focused_e62d,
.form-solid-cf4f,
.rough-d524,
.alert-simple-fd3c,
.widget-a3ab,
.iron_b310,
.progress_6aed {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.notification-4ee4 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.notification-4ee4 > *,
.caption_bright_fa57,
.header_c2a9,
.container_1c30 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .notification-4ee4 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .notification-4ee4 {
    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 === */
.tag_340b {
  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 */
.tag_340b.filter-focused-ea19 {
  box-shadow: var(--shadow-md);
}

.fluid-90e0 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.purple-c021 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.media-advanced-b0ba {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.pressed_82da {
  display: none;
}

/* Hide mobile actions on desktop */
.form_dark_b8a3 {
  display: none;
}

.dim-e701 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.dim-e701 a:hover,
.dim-e701 a.fn-active-aafb {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.dropdown_north_c6ab {
  margin-left: 1rem;
}

.wood-4ef7 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.mask_0d59,
.top-b944 {
  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;
}

.mask_0d59 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.mask_0d59: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;
}

.top-b944 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.top-b944: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;
}

.mask_0d59 svg,
.top-b944 svg {
  flex-shrink: 0;
}

.picture_stone_1a59 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.pressed-9108 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.pressed-9108::before,
.pressed-9108::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.pressed-9108::before {
  top: -7px;
}

.pressed-9108::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.nav-large-0cf6 {
  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 === */
.notice-9a68 {
  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);
}

.progress-steel-f84b {
  margin: 0 0 2rem;
  text-align: center;
}

.gas-1771 {
  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;
}

.gas-1771:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.search_fresh_978a {
  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);
}

.search_fresh_978a strong {
  color: var(--primary-color);
  font-weight: 700;
}

.component-cold-547a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.button_short_e34b {
  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;
}

.button_short_e34b:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.outline-pro-56ca {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.widget-230b {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.upper-45fe {
  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);
}

.upper-45fe .media-pink-b3dc {
  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;
}

.upper-45fe .media-pink-b3dc svg {
  flex-shrink: 0;
}

.upper-45fe .media-9793 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.upper-45fe .media-9793: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);
}

.upper-45fe .accent-bottom-b8e0 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.upper-45fe .accent-bottom-b8e0: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) {
  .notice-9a68 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .gas-1771 {
    max-width: 100%;
  }

  .component-cold-547a {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .button_short_e34b {
    padding: 1rem;
  }

  .outline-pro-56ca {
    font-size: 1.5rem;
  }

  .widget-230b {
    font-size: 0.75rem;
  }

  .search_fresh_978a {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .upper-45fe {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .upper-45fe .media-pink-b3dc {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .component-cold-547a {
    grid-template-columns: 1fr;
  }
}

.main-6c60 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.button_wide_7054 {
  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 === */
.panel-dark-2dbc {
  margin-bottom: 2.5rem;
}

.top-5a41 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.main-6c60 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.box_complex_a0e2 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.label_f6e0 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.inner_2066 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.logo_action_edff {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.slow_34e6 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.glass-07ed {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.module_prev_42cf {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.module_prev_42cf svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.accent-6190 {
  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);
}

.banner_east_560a {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.up-a81f {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section_9425 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.section_pink_ee6f {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.green_dfd8 {
  display: grid;
  gap: 1rem;
}

.tooltip_inner_361d {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.icon-clean-af84 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.short-5c3c {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.banner_fixed_babc {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.sort_c5bb {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.widget-4a2b {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.widget-4a2b p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.focused_e62d {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.filter_0953 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.wood_a7c4 {
  display: grid;
  gap: 2rem;
}

.input-77e2 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.label_f6e0 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.box_complex_a0e2 {
  flex: 1;
}

.logo_action_edff {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.logo_action_edff a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.notification_8b36 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
}

.slow_34e6 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.footer_e4d7 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.footer_e4d7 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.fast_a09f {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.fast_a09f a {
  font-size: 0.875rem;
  font-weight: 500;
}

.photo_slow_10c9 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.photo_slow_10c9 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.photo_slow_10c9 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.photo_slow_10c9 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.secondary-5dc7 {
  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 === */
.title_0878 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.search_d9e6 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.medium_abc8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mask_1479 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.mask_1479 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.mask_1479 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.mask_1479 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;
}

.mask_1479 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.mask_1479 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.header_c2a9 {
  padding: 3rem 0 5rem;
}

.container_1c30 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.container_1c30.summary_ba98 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.form-solid-cf4f {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.item-pressed-0403 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.bottom_f1ec {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.bottom_f1ec h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.sidebar-lower-8661 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.grid-2c61 {
  text-align: center;
}

.pagination-dark-c7d1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.smooth_8448 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.header_1b9c {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.widget-a3ab {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.rough-d524 {
  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;
}

.rough-d524 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.rough-d524:hover {
  box-shadow: var(--shadow-lg);
}

.rough-d524.mini_ff8e {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.rough-d524 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.rough-d524 ul {
  margin: 1rem 0;
}

.rough-d524 li {
  margin-bottom: 0.75rem;
}

.easy_4719 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.paragraph_paper_c4fa {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.paragraph_paper_c4fa a {
  font-weight: 600;
}

/* === Data Tables === */
.pressed-f192 {
  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;
}

.pressed-f192 table {
  width: 100%;
  min-width: 600px;
}

.pressed-f192 thead {
  background-color: var(--primary-color);
  color: white;
}

.pressed-f192 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.pressed-f192 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.pressed-f192 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.pressed-f192 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.grid-hovered-c68d {
  list-style: none;
  margin: 1.5rem 0;
}

.grid-hovered-c68d li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.grid-hovered-c68d li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.gallery_iron_2f92::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-aafb::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 === */
.carousel-0ded {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.article_inner_2d9a {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.article_inner_2d9a img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.article_inner_2d9a strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.article_inner_2d9a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.carousel-0ded blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.iron_b310 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.iron_b310::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.search_7ecd {
  position: relative;
  margin-bottom: 3rem;
}

.rough-751e {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.rough-751e .status-hot-29cd {
  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;
}

.banner-4d2a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.banner-4d2a h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.banner-4d2a ul {
  margin: 1rem 0;
}

.banner-4d2a li {
  margin-bottom: 0.75rem;
}

.carousel_241a {
  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 === */
.focused_322c {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.focused_322c h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.filter_ac79 {
  list-style: none;
  margin: 1.5rem 0;
}

.filter_ac79 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.filter_ac79 a {
  font-weight: 600;
}

.nav_west_1773 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.progress_6aed {
  margin: 2.5rem 0;
}

.list-bdf2 {
  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;
}

.list-bdf2:hover {
  box-shadow: var(--shadow-lg);
}

.list-bdf2.breadcrumb_under_7c91 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.text-dim-d971 {
  flex-shrink: 0;
}

.text-dim-d971 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);
}

.purple-3a65 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.content_3722,
.shade_105e,
.box-04f0 {
  width: 100%;
  margin: 1.5rem 0;
}

.large_af16 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.large_af16 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.section_gold_51bc {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.section_gold_51bc strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.tooltip_large_f3a2 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.tooltip_large_f3a2 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.component_white_f3f3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.rough-1269 {
  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;
}

.rough-1269:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.rough-1269.gold_ffc4 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.rough-1269 .gradient_liquid_a455 {
  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;
}

.rough-1269 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.nav-wood-f53f {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.photo-yellow-e328 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.photo-yellow-e328 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.chip_d8f7 {
  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 === */
.media-pink-b3dc {
  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;
}

.media-9793 {
  background-color: var(--primary-color);
  color: white;
}

.media-9793:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.accent-bottom-b8e0 {
  background-color: var(--text-secondary);
  color: white;
}

.accent-bottom-b8e0:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.mask-3607 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.mask-3607:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.simple-0846 {
  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;
}

.simple-0846:hover {
  background-color: var(--primary-dark);
}

.photo_2c1f {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.left_e813 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.sidebar-right-0f6c {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.layout-bd83 {
  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 === */
.dropdown_1bf0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.liquid-ec3b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.liquid-ec3b h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.shadow_216d {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.in_448e {
  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;
}

.alert-wood-6ba3 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.old_40f7 {
  list-style: none;
  counter-reset: rank-counter;
}

.old_40f7 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.old_40f7 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;
}

.west-1527 {
  list-style: none;
}

.west-1527 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.mask-dynamic-016a {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.panel-23e7 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.panel-23e7 .iron-17ca {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.panel-23e7 .panel_new_68f4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.highlight-5b13 {
  margin-top: 3rem;
}

.primary_91ca {
  width: 100%;
}

.glass-b8b1 {
  background-color: #fef3c7;
}

.progress_full_b9dc {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.logo_wood_987d {
  margin: 3rem 0;
}

.input_fluid_eb15 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.video_84ac {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.video_84ac:hover {
  box-shadow: var(--shadow-lg);
}

.video_84ac.in-385a {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.accent_wide_f01e {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.basic_e66a strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.basic_e66a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.bottom_ac8e {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.video_84ac blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.hard-8b3b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.modal-295a {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.static_33f3 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.carousel-short-818c {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.frame-0d47 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.text-lower-99bd {
  margin-top: 1rem;
}

/* === FAQ Section === */
.filter_prev_943a {
  max-width: 900px;
  margin: 0 auto;
}

.sidebar-b5c8 {
  margin: 2rem 0;
}

.highlight_351c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.highlight_351c summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.highlight_351c summary::-webkit-details-marker {
  display: none;
}

.highlight_351c summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.focused_b694 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.highlight_351c[open] .focused_b694 {
  transform: rotate(45deg);
}

.light-2774 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.light-2774 p:last-child {
  margin-bottom: 0;
}

.left_dfa8 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.last_29aa {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.medium-0fa9 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.medium-0fa9 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.medium-0fa9 .media-pink-b3dc {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.footer-48c2 {
  max-width: 900px;
  margin: 0 auto;
}

.header-gas-0f5e {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.label_de30 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.label_de30.fn-success-aafb {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.overlay_bde4 {
  font-size: 3rem;
  line-height: 1;
}

.first-d18d h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.lower-751b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.article-1bd9,
.nav-3ee8 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.article-1bd9 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.nav-3ee8 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.disabled-571e,
.search-968b {
  margin: 1.5rem 0;
}

.disabled-571e li,
.search-968b li {
  margin-bottom: 1rem;
}

.tag-482b {
  margin: 3rem 0;
}

.surface_edd0 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.surface_edd0 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.surface_edd0 ol {
  margin: 1rem 0;
}

.surface_edd0 li {
  margin-bottom: 0.75rem;
}

.blue_f0eb {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.hover-hovered-502c {
  margin: 2rem 0;
}

.pattern-up-96de {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.pro-e797 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.detail_5514 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.slow-5f84 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.stone_6d5e {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.filter_easy_790a {
  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;
}

.filter_easy_790a img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.inner_2066 {
  flex: 1;
}

.inner_2066 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.heading-77aa {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.mini-9cb1 p {
  margin-bottom: 1rem;
}

.solid_d672 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.form_a1b3 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.static_aca4 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.static_aca4 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.mask_735d h3 {
  margin-bottom: 1.5rem;
}

.bronze-0754 {
  display: grid;
  gap: 2rem;
}

.fast_e1ff {
  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;
}

.fast_e1ff img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.fast_e1ff h4 {
  margin: 0 0 0.25rem;
}

.fast_e1ff p {
  margin: 0;
  font-size: 0.9375rem;
}

.text_middle_859d {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.iron_6b90 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.iron_6b90 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.iron_6b90 ul {
  margin: 1.5rem 0;
}

.iron_6b90 li {
  margin-bottom: 0.75rem;
}

.paragraph-red-52fb {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.menu-hovered-9ca5 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.column-huge-bcbf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.grid_825f h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.grid_825f p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.photo-motion-a165 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.photo-motion-a165 a {
  color: rgba(255, 255, 255, 0.8);
}

.right-d558 {
  list-style: none;
}

.right-d558 li {
  margin-bottom: 0.75rem;
}

.right-d558 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.right-d558 a:hover {
  color: white;
}

.lite-04e0 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.fresh-e51f {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.purple-bf27 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.active_003e {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.progress-a20c {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .notification-4ee4 {
    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;
  }

  .item-c969 {
    font-size: 1.5rem !important;
  }

  .top-5a41 {
    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 */
  .rough-d524,
  .alert-simple-fd3c,
  .banner-4d2a,
  .purple-3a65,
  .accent_wide_f01e,
  .video_84ac,
  .light-2774,
  .search_fresh_978a,
  .focused_e62d,
  .form-solid-cf4f {
    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 */
  .main-6c60 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .box_complex_a0e2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .label_f6e0 {
    flex-shrink: 0;
  }

  .inner_2066 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .logo_action_edff,
  .slow_34e6 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .slow_34e6 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .media-advanced-b0ba {
    display: none;
  }

  /* Show mobile actions */
  .form_dark_b8a3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .notice_outer_3959 {
    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;
  }

  .notice_outer_3959 svg {
    flex-shrink: 0;
  }

  .notice_outer_3959 .widget-dim-d6e5 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .notice_outer_3959 .blue-3421 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .block-583d {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .notice_left_9f06 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .notice_outer_3959:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .pressed_82da {
    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;
  }

  .pressed_82da.fn-active-aafb {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .pressed_82da li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .pressed_82da li:last-child {
    border-bottom: none;
  }

  .pressed_82da a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .dim-e701 {
    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;
  }

  .dim-e701 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .dim-e701 li:last-child {
    border-bottom: none;
  }

  .dim-e701 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .dropdown_north_c6ab {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .wood-4ef7 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .mask_0d59,
  .top-b944 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .mask_0d59 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .top-b944 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .dim-e701.fn-active-aafb {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .picture_stone_1a59 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .tag_340b {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .fluid-90e0 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .nav-large-0cf6 {
    margin-top: 0;
  }

  /* Hero section */
  .nav-large-0cf6 {
    padding: 2rem 0 1.5rem;
  }

  .top-5a41 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .focused_e62d {
    font-size: 1rem;
  }

  /* Hero brand image */
  .notice-9a68 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .gas-1771 {
    max-width: 100%;
    border-radius: 8px;
  }

  .component-cold-547a {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .button_short_e34b {
    padding: 1rem;
  }

  .outline-pro-56ca {
    font-size: 1.5rem;
  }

  .widget-230b {
    font-size: 0.75rem;
  }

  .search_fresh_978a {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .upper-45fe {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .upper-45fe .media-pink-b3dc {
    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 */
  .medium_abc8 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .list-bdf2 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .text-dim-d971 {
    margin-bottom: 1rem;
  }

  /* Author */
  .input-77e2 {
    flex-direction: column;
  }

  .filter_easy_790a {
    flex-direction: column;
  }

  /* Quotes */
  .accent_wide_f01e {
    flex-direction: column;
  }

  /* Pros/Cons */
  .lower-751b {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .slow-5f84 {
    flex-direction: column;
  }

  .slow-5f84 .media-pink-b3dc {
    width: 100%;
  }

  /* Version comparison */
  .component_white_f3f3 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .dropdown_1bf0 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .column-huge-bcbf {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .purple-bf27 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .pressed-f192,
  .shade_105e,
  .input-49cf,
  .primary_91ca,
  .content_3722,
  .box-04f0 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pressed-f192 table,
  .shade_105e table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .chip_d8f7 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .notification-4ee4 {
    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;
  }

  .item-c969 {
    font-size: 1.25rem !important;
  }

  .top-5a41 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .tag_340b {
    position: fixed;
  }

  .fluid-90e0 {
    padding: 0.625rem 0;
  }

  .purple-c021 img {
    height: 26px;
  }

  .dim-e701 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .pressed_82da {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .notice_outer_3959 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .notice_outer_3959 svg {
    width: 18px;
    height: 18px;
  }

  .notice_outer_3959 .widget-dim-d6e5 {
    font-size: 0.7rem;
  }

  .notice_outer_3959 .blue-3421 {
    font-size: 0.65rem;
  }

  .mask_0d59,
  .top-b944 {
    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, .notification-4ee4, .caption_bright_fa57, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .notice-9a68 {
    padding: 1rem;
  }

  .component-cold-547a {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .button_short_e34b {
    padding: 0.875rem;
  }

  .outline-pro-56ca {
    font-size: 1.25rem;
  }

  .upper-45fe .media-pink-b3dc {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .top-5a41 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .media-pink-b3dc {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .photo_2c1f {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .list-bdf2 {
    padding: 1rem;
  }

  .text-dim-d971 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .rough-d524,
  .item_f95f,
  .article_eb7c,
  .secondary-plasma-f0a8 {
    padding: 1rem;
  }
}

@media print {
  .tag_340b,
  .title_0878,
  .picture_stone_1a59,
  .media-pink-b3dc,
  .menu-hovered-9ca5 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .notification-4ee4 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.card_over_df10 {
  margin-bottom: 3rem;
  text-align: center;
}

.item-c969 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.menu_5762 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.alert-steel-a269,
.shade-a1a2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.paragraph_54ae {
  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;
}

.paragraph_54ae:hover {
  transform: translateY(-5px);
}

.paragraph_54ae strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.paragraph_54ae span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.progress-3005 {
  margin: 3rem 0;
}

.aside-out-53e4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.out_e36a {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.out_e36a:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.top-a82b {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.stone_7484 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.accordion_75b4 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.sort-glass-95f5 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.steel_43c8 {
  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;
}

.steel_43c8:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.steel_43c8.outer_4ca3 {
  border-left: 4px solid var(--primary-color);
}

.silver_d98a {
  flex-shrink: 0;
}

.silver_d98a svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.dim-a3b5 {
  flex: 1;
}

.dim-a3b5 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.rough_0448 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.outline_rough_5137,
.soft_17c6,
.glass_4889 {
  margin-bottom: 1.5rem;
}

.outline_rough_5137 h4,
.soft_17c6 h4,
.glass_4889 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.outline_rough_5137 ul,
.soft_17c6 ul,
.glass_4889 ul {
  list-style: none;
  padding: 0;
}

.outline_rough_5137 li,
.soft_17c6 li,
.glass_4889 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.outline_rough_5137 li:before,
.soft_17c6 li:before,
.glass_4889 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.aside_dim_b452 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.aside_dim_b452 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_dim_b452 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.under_f18d { margin: 2rem 0; }
.lower_8cc2 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.lower_8cc2 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.background-easy-fdd0 p { margin-bottom: 1rem; line-height: 1.7; }
.background-easy-fdd0 strong { color: var(--text-primary); }
.background-easy-fdd0 ul { list-style: none; padding-left: 0; }
.background-easy-fdd0 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.background-easy-fdd0 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.popup_6750 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.notification-white-bb02 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.notification-white-bb02:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.preview-ab0e { font-size: 3rem; margin-bottom: 1rem; }
.notification-white-bb02 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.notification-white-bb02 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.frame-b514 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.frame-b514 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.sort-6178 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.block_e89b { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.green-5b93 { text-align: center; }
.element_narrow_9869 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.next_22f1 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.paper_e575 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.list-out-3b07 { margin: 2rem 0; }
.pagination-in-1d74 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.pagination-in-1d74 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.pagination-in-1d74 p, .pagination-in-1d74 ul { line-height: 1.7; }
.pagination-in-1d74 ul { list-style: none; padding-left: 0; }
.pagination-in-1d74 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.pagination-in-1d74 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.media_glass_1e00 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.red-7742 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.content_17e4 { text-align: center; }
.silver-ae7b { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.search_selected_ade4 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.primary-large-2a22 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.filter_2659 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.progress_8911 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.progress_8911:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.progress_8911 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.progress_8911 p, .progress_8911 ul { line-height: 1.7; }
.progress_8911 ul { list-style: none; padding-left: 0; }
.progress_8911 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.progress_8911 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: d73b */
.shadow-element-g7 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.2;
}
