/* ============================================
   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 */
.slow_3fa0 p,
.wide_58e9,
.filter_paper_bb3e,
.media-green-df08,
.clean-8a66,
.item-dbab,
.clean_deb2,
.wood_9646 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.lite-a7a9 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.lite-a7a9 > *,
.center-9c15,
.slow_3fa0,
.next_9808 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .lite-a7a9 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .lite-a7a9 {
    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 === */
.video_55e1 {
  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 */
.video_55e1.video_brown_a365 {
  box-shadow: var(--shadow-md);
}

.paper_eb25 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.purple_2b4f img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.tertiary_stale_dc35 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.caption_a1b1 {
  display: none;
}

/* Hide mobile actions on desktop */
.logo_dim_978d {
  display: none;
}

.header-799d a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.header-799d a:hover,
.header-799d a.fn-active-aa59 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.yellow-407b {
  margin-left: 1rem;
}

.logo-over-ab65 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.motion_95a8,
.pattern_light_7284 {
  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;
}

.motion_95a8 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.motion_95a8: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;
}

.pattern_light_7284 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.pattern_light_7284: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;
}

.motion_95a8 svg,
.pattern_light_7284 svg {
  flex-shrink: 0;
}

.easy_562a {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.center_a172 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.center_a172::before,
.center_a172::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.center_a172::before {
  top: -7px;
}

.center_a172::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.box_0df3 {
  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 === */
.column_cool_fa60 {
  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);
}

.column-wood-21df {
  margin: 0 0 2rem;
  text-align: center;
}

.notice-39a0 {
  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;
}

.notice-39a0:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.outline_last_fcd0 {
  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);
}

.outline_last_fcd0 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.label_lite_a26e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.bright-43ae {
  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;
}

.bright-43ae:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.notification-4c34 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hidden_6754 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.over-da91 {
  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);
}

.over-da91 .table_hovered_9a67 {
  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;
}

.over-da91 .table_hovered_9a67 svg {
  flex-shrink: 0;
}

.over-da91 .carousel_old_0819 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.over-da91 .carousel_old_0819: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);
}

.over-da91 .thick_5da7 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.over-da91 .thick_5da7: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) {
  .column_cool_fa60 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .notice-39a0 {
    max-width: 100%;
  }

  .label_lite_a26e {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .bright-43ae {
    padding: 1rem;
  }

  .notification-4c34 {
    font-size: 1.5rem;
  }

  .hidden_6754 {
    font-size: 0.75rem;
  }

  .outline_last_fcd0 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .over-da91 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .over-da91 .table_hovered_9a67 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .label_lite_a26e {
    grid-template-columns: 1fr;
  }
}

.bottom_bece {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.status-pressed-5580 {
  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 === */
.gallery_bottom_4357 {
  margin-bottom: 2.5rem;
}

.shade_east_f656 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.bottom_bece {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.message_clean_faa1 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stone_5d58 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.thick-bd54 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.preview_static_f811 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.photo-fef8 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.backdrop_silver_25bc {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hot_bfc9 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hot_bfc9 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.old-8a00 {
  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);
}

.box-f291 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.badge-solid-ecd6 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.notification_0be0 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.progress-3203 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.progress-smooth-3630 {
  display: grid;
  gap: 1rem;
}

.caption_liquid_fed3 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.highlight_iron_c407 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.popup-1615 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.box-a5aa {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.chip-yellow-368c {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.progress-fixed-7345 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.progress-fixed-7345 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.wide_58e9 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.in_67a9 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.south_bf2b {
  display: grid;
  gap: 2rem;
}

.top-bb9a {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.stone_5d58 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.message_clean_faa1 {
  flex: 1;
}

.preview_static_f811 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.preview_static_f811 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.tabs_static_3bae {
  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;
}

.photo-fef8 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.link_9f88 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.link_9f88 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.breadcrumb_cool_8c4a {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.breadcrumb_cool_8c4a a {
  font-size: 0.875rem;
  font-weight: 500;
}

.nav_brown_0e2d {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.nav_brown_0e2d strong {
  display: block;
  margin-bottom: 0.75rem;
}

.nav_brown_0e2d ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav_brown_0e2d li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.label_62c4 {
  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 === */
.hot_e024 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.notification-92aa {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.tabs_9d9d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.border_eb5f h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.border_eb5f ol {
  list-style: none;
  counter-reset: toc-counter;
}

.border_eb5f ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.border_eb5f 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;
}

.border_eb5f ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.border_eb5f ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.slow_3fa0 {
  padding: 3rem 0 5rem;
}

.next_9808 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.next_9808.link-99e9 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.filter_paper_bb3e {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.video_small_d2f8 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.warm_e05c {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.warm_e05c h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.outline_current_db13 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.description_34ba {
  text-align: center;
}

.huge_123b {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.dropdown-slow-4fe4 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.hard-b59f {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.item-dbab {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.media-green-df08 {
  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;
}

.media-green-df08 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.media-green-df08:hover {
  box-shadow: var(--shadow-lg);
}

.media-green-df08.accordion_c500 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.media-green-df08 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.media-green-df08 ul {
  margin: 1rem 0;
}

.media-green-df08 li {
  margin-bottom: 0.75rem;
}

.hard-b69d {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.table_72b0 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.table_72b0 a {
  font-weight: 600;
}

/* === Data Tables === */
.footer_63c7 {
  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;
}

.footer_63c7 table {
  width: 100%;
  min-width: 600px;
}

.footer_63c7 thead {
  background-color: var(--primary-color);
  color: white;
}

.footer_63c7 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.footer_63c7 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.footer_63c7 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.footer_63c7 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.inner_41d1 {
  list-style: none;
  margin: 1.5rem 0;
}

.inner_41d1 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.inner_41d1 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.hidden_b263::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-aa59::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 === */
.border_a0c6 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.slider-purple-f95f {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.slider-purple-f95f img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.slider-purple-f95f strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.slider-purple-f95f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.border_a0c6 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.clean_deb2 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.clean_deb2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.badge_dirty_ec28 {
  position: relative;
  margin-bottom: 3rem;
}

.border-1640 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.border-1640 .media_stone_8e0e {
  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;
}

.row-in-64be {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.row-in-64be h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.row-in-64be ul {
  margin: 1rem 0;
}

.row-in-64be li {
  margin-bottom: 0.75rem;
}

.main-down-d1d3 {
  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 === */
.large-760e {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.large-760e h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.highlight_steel_7bff {
  list-style: none;
  margin: 1.5rem 0;
}

.highlight_steel_7bff li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.highlight_steel_7bff a {
  font-weight: 600;
}

.dim-6d2c {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.wood_9646 {
  margin: 2.5rem 0;
}

.media_b00b {
  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;
}

.media_b00b:hover {
  box-shadow: var(--shadow-lg);
}

.media_b00b.gallery_e099 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.module-plasma-a48b {
  flex-shrink: 0;
}

.module-plasma-a48b 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);
}

.thumbnail_2d3c h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.column-focused-6972,
.steel_f10e,
.gradient_9a22 {
  width: 100%;
  margin: 1.5rem 0;
}

.fluid-8f48 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.fluid-8f48 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.info_copper_f4ac {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.info_copper_f4ac strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.overlay-south-d224 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.overlay-south-d224 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.progress_orange_13bd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.block_d41c {
  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;
}

.block_d41c:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.block_d41c.header-9210 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.block_d41c .yellow-aad6 {
  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;
}

.block_d41c h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.feature_orange_68cf {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.accent-9a94 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.accent-9a94 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.static_2ffb {
  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 === */
.table_hovered_9a67 {
  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;
}

.carousel_old_0819 {
  background-color: var(--primary-color);
  color: white;
}

.carousel_old_0819:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.thick_5da7 {
  background-color: var(--text-secondary);
  color: white;
}

.thick_5da7:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.cool_14d5 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.cool_14d5:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.focused_aa3e {
  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;
}

.focused_aa3e:hover {
  background-color: var(--primary-dark);
}

.heading-5553 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.detail-iron-4eeb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.hidden-fast-c7d0 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.gas-0eae {
  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 === */
.complex-cb47 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.pattern-63df {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.pattern-63df h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.mini-2d83 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.focus-gold-a90c {
  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;
}

.dim_d3a4 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.column_over_38db {
  list-style: none;
  counter-reset: rank-counter;
}

.column_over_38db li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.column_over_38db 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;
}

.section_25a4 {
  list-style: none;
}

.section_25a4 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.plasma-2ee2 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.lower_b9a2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.lower_b9a2 .gas-0e8e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.lower_b9a2 .thumbnail-next-e39d {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.full-4d94 {
  margin-top: 3rem;
}

.tooltip_ce63 {
  width: 100%;
}

.light_fb6e {
  background-color: #fef3c7;
}

.upper_f84f {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.surface_right_acec {
  margin: 3rem 0;
}

.table-af67 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.picture-dirty-9bc8 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.picture-dirty-9bc8:hover {
  box-shadow: var(--shadow-lg);
}

.picture-dirty-9bc8.block-3c23 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.summary_white_9aa4 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.medium_f027 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.medium_f027 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.picture_5434 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.picture-dirty-9bc8 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.gas-dbb2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.image_east_c55a {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.slider_tiny_364f {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.sort-top-195d {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.container_793a {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.media-advanced-8a99 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.backdrop_lite_4c6c {
  max-width: 900px;
  margin: 0 auto;
}

.form_df08 {
  margin: 2rem 0;
}

.label-28f4 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.label-28f4 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.label-28f4 summary::-webkit-details-marker {
  display: none;
}

.label-28f4 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.mask_9c69 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.label-28f4[open] .mask_9c69 {
  transform: rotate(45deg);
}

.tag_b6dd {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.tag_b6dd p:last-child {
  margin-bottom: 0;
}

.fluid_ac87 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.small_b8b6 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.large_a2d4 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.large_a2d4 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.large_a2d4 .table_hovered_9a67 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.caption-23a5 {
  max-width: 900px;
  margin: 0 auto;
}

.static_18a0 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.column_2da8 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.column_2da8.fn-success-aa59 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.dirty-30af {
  font-size: 3rem;
  line-height: 1;
}

.picture-b2f3 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.wide_5882 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.component_north_c2b1,
.gallery-08df {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.component_north_c2b1 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.gallery-08df h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.motion-f245,
.next-c65b {
  margin: 1.5rem 0;
}

.motion-f245 li,
.next-c65b li {
  margin-bottom: 1rem;
}

.popup_ab45 {
  margin: 3rem 0;
}

.status_advanced_334f {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.status_advanced_334f h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.status_advanced_334f ol {
  margin: 1rem 0;
}

.status_advanced_334f li {
  margin-bottom: 0.75rem;
}

.footer_3510 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.sort-718d {
  margin: 2rem 0;
}

.grid_red_c946 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.liquid-765d {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.sort-focused-f518 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.main-2258 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.photo-ad51 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.notice-pro-6ba7 {
  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;
}

.notice-pro-6ba7 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.thick-bd54 {
  flex: 1;
}

.thick-bd54 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.current_3f56 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.pattern-action-168e p {
  margin-bottom: 1rem;
}

.main_c15d {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.preview-clean-8eff {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.notice-fluid-0d85 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.notice-fluid-0d85 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.accent-north-d87b h3 {
  margin-bottom: 1.5rem;
}

.text-77c9 {
  display: grid;
  gap: 2rem;
}

.short-b6ff {
  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;
}

.short-b6ff img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.short-b6ff h4 {
  margin: 0 0 0.25rem;
}

.short-b6ff p {
  margin: 0;
  font-size: 0.9375rem;
}

.huge-39c0 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.tabs-easy-1e10 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.tabs-easy-1e10 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.tabs-easy-1e10 ul {
  margin: 1.5rem 0;
}

.tabs-easy-1e10 li {
  margin-bottom: 0.75rem;
}

.frame-stale-f98d {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.hero_e237 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.button-under-0404 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.container-paper-09ee h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.container-paper-09ee p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.east_005b {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.east_005b a {
  color: rgba(255, 255, 255, 0.8);
}

.yellow-cb37 {
  list-style: none;
}

.yellow-cb37 li {
  margin-bottom: 0.75rem;
}

.yellow-cb37 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.yellow-cb37 a:hover {
  color: white;
}

.alert-c078 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.button_dirty_e44b {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.menu_7f6b {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.dropdown-da6c {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.heading-e38b {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .lite-a7a9 {
    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;
  }

  .notification-644c {
    font-size: 1.5rem !important;
  }

  .shade_east_f656 {
    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 */
  .media-green-df08,
  .clean-8a66,
  .row-in-64be,
  .thumbnail_2d3c,
  .summary_white_9aa4,
  .picture-dirty-9bc8,
  .tag_b6dd,
  .outline_last_fcd0,
  .wide_58e9,
  .filter_paper_bb3e {
    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 */
  .bottom_bece {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .message_clean_faa1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .stone_5d58 {
    flex-shrink: 0;
  }

  .thick-bd54 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .preview_static_f811,
  .photo-fef8 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .photo-fef8 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .tertiary_stale_dc35 {
    display: none;
  }

  /* Show mobile actions */
  .logo_dim_978d {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .complex-14bd {
    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;
  }

  .complex-14bd svg {
    flex-shrink: 0;
  }

  .complex-14bd .header-91d5 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .complex-14bd .dark_bca1 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .preview-large-a49d {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .element-inner-2553 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .complex-14bd:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .caption_a1b1 {
    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;
  }

  .caption_a1b1.fn-active-aa59 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .caption_a1b1 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .caption_a1b1 li:last-child {
    border-bottom: none;
  }

  .caption_a1b1 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .header-799d {
    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;
  }

  .header-799d li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .header-799d li:last-child {
    border-bottom: none;
  }

  .header-799d a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .yellow-407b {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .logo-over-ab65 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .motion_95a8,
  .pattern_light_7284 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .motion_95a8 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .pattern_light_7284 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .header-799d.fn-active-aa59 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .easy_562a {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .video_55e1 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .paper_eb25 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .box_0df3 {
    margin-top: 0;
  }

  /* Hero section */
  .box_0df3 {
    padding: 2rem 0 1.5rem;
  }

  .shade_east_f656 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .wide_58e9 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .column_cool_fa60 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .notice-39a0 {
    max-width: 100%;
    border-radius: 8px;
  }

  .label_lite_a26e {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .bright-43ae {
    padding: 1rem;
  }

  .notification-4c34 {
    font-size: 1.5rem;
  }

  .hidden_6754 {
    font-size: 0.75rem;
  }

  .outline_last_fcd0 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .over-da91 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .over-da91 .table_hovered_9a67 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }

  /* Typography */
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  /* TOC */
  .tabs_9d9d {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .media_b00b {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .module-plasma-a48b {
    margin-bottom: 1rem;
  }

  /* Author */
  .top-bb9a {
    flex-direction: column;
  }

  .notice-pro-6ba7 {
    flex-direction: column;
  }

  /* Quotes */
  .summary_white_9aa4 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .wide_5882 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .main-2258 {
    flex-direction: column;
  }

  .main-2258 .table_hovered_9a67 {
    width: 100%;
  }

  /* Version comparison */
  .progress_orange_13bd {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .complex-cb47 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .button-under-0404 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .menu_7f6b {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .footer_63c7,
  .steel_f10e,
  .status_north_ad31,
  .tooltip_ce63,
  .column-focused-6972,
  .gradient_9a22 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .footer_63c7 table,
  .steel_f10e table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .static_2ffb {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .lite-a7a9 {
    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;
  }

  .notification-644c {
    font-size: 1.25rem !important;
  }

  .shade_east_f656 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .video_55e1 {
    position: fixed;
  }

  .paper_eb25 {
    padding: 0.625rem 0;
  }

  .purple_2b4f img {
    height: 26px;
  }

  .header-799d {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .caption_a1b1 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .complex-14bd {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .complex-14bd svg {
    width: 18px;
    height: 18px;
  }

  .complex-14bd .header-91d5 {
    font-size: 0.7rem;
  }

  .complex-14bd .dark_bca1 {
    font-size: 0.65rem;
  }

  .motion_95a8,
  .pattern_light_7284 {
    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, .lite-a7a9, .center-9c15, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .column_cool_fa60 {
    padding: 1rem;
  }

  .label_lite_a26e {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .bright-43ae {
    padding: 0.875rem;
  }

  .notification-4c34 {
    font-size: 1.25rem;
  }

  .over-da91 .table_hovered_9a67 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .shade_east_f656 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .table_hovered_9a67 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .heading-5553 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .media_b00b {
    padding: 1rem;
  }

  .module-plasma-a48b span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .media-green-df08,
  .info-f9b9,
  .surface-ece4,
  .gas_718e {
    padding: 1rem;
  }
}

@media print {
  .video_55e1,
  .hot_e024,
  .easy_562a,
  .table_hovered_9a67,
  .hero_e237 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .lite-a7a9 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.sort_in_83ab {
  margin-bottom: 3rem;
  text-align: center;
}

.notification-644c {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.component-0aa4 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.chip-154a,
.button-d7a3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.glass_c6c1 {
  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;
}

.glass_c6c1:hover {
  transform: translateY(-5px);
}

.glass_c6c1 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.glass_c6c1 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.copper-97fa {
  margin: 3rem 0;
}

.feature-89f8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.widget_0d9f {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.widget_0d9f:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.feature_simple_279c {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.alert-1a0b {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.box-dirty-af1a {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.mask-0d7b {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.modal_404b {
  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;
}

.modal_404b:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.modal_404b.gas_8af0 {
  border-left: 4px solid var(--primary-color);
}

.cool_dc7b {
  flex-shrink: 0;
}

.cool_dc7b svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.badge_prev_783b {
  flex: 1;
}

.badge_prev_783b h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.media_red_b6fc {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.accordion_gold_a17d,
.tooltip-3850,
.tertiary-gold-e40e {
  margin-bottom: 1.5rem;
}

.accordion_gold_a17d h4,
.tooltip-3850 h4,
.tertiary-gold-e40e h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.accordion_gold_a17d ul,
.tooltip-3850 ul,
.tertiary-gold-e40e ul {
  list-style: none;
  padding: 0;
}

.accordion_gold_a17d li,
.tooltip-3850 li,
.tertiary-gold-e40e li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.accordion_gold_a17d li:before,
.tooltip-3850 li:before,
.tertiary-gold-e40e li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.tooltip_white_3da7 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.tooltip_white_3da7 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;
}

.tooltip_white_3da7 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.mask_7e8b { margin: 2rem 0; }
.fluid-8cfe { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.fluid-8cfe h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.paper-4f12 p { margin-bottom: 1rem; line-height: 1.7; }
.paper-4f12 strong { color: var(--text-primary); }
.paper-4f12 ul { list-style: none; padding-left: 0; }
.paper-4f12 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.paper-4f12 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.popup_c46a { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.alert_bottom_dc45 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.alert_bottom_dc45:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.light-fbcb { font-size: 3rem; margin-bottom: 1rem; }
.alert_bottom_dc45 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.alert_bottom_dc45 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.item_3eb9 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.item_3eb9 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.photo_stone_e05a { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.stone_8191 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.module_gold_cfd7 { text-align: center; }
.mask_711e { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.gold-0eaa { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.full_5678 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.gallery-warm-9627 { margin: 2rem 0; }
.slow-1113 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.slow-1113 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.slow-1113 p, .slow-1113 ul { line-height: 1.7; }
.slow-1113 ul { list-style: none; padding-left: 0; }
.slow-1113 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.slow-1113 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.progress_middle_7355 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.iron_5512 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.purple-ee3d { text-align: center; }
.notice_lower_80d8 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.primary_2c34 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.grid_copper_bd55 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.hover-fast-8a28 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.heading-4bdf { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.heading-4bdf:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.heading-4bdf h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.heading-4bdf p, .heading-4bdf ul { line-height: 1.7; }
.heading-4bdf ul { list-style: none; padding-left: 0; }
.heading-4bdf ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.heading-4bdf ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: f7c8 */
.promo-block-f6 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.0;
}
