/* ============================================
   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 */
.text-soft-ef73 p,
.list_east_c7d3,
.solid-1d1f,
.hidden_e4b9,
.article-9c69,
.layout-9eeb,
.south_cb33,
.tall_823c {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.notification-bf86 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.notification-bf86 > *,
.title-b9da,
.text-soft-ef73,
.form_acf0 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .notification-bf86 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .notification-bf86 {
    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 === */
.bronze-27c5 {
  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 */
.bronze-27c5.link_3b76 {
  box-shadow: var(--shadow-md);
}

.content-red-ff32 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.block-a96b img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.carousel-bright-d6a7 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.wide_a87b {
  display: none;
}

/* Hide mobile actions on desktop */
.status_ff74 {
  display: none;
}

.hot-7dae a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.hot-7dae a:hover,
.hot-7dae a.fn-active-a5f3 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.pro_8fd3 {
  margin-left: 1rem;
}

.pressed-c845 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.bright-bc2f,
.badge-purple-29df {
  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;
}

.bright-bc2f {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.bright-bc2f: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;
}

.badge-purple-29df {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.badge-purple-29df: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;
}

.bright-bc2f svg,
.badge-purple-29df svg {
  flex-shrink: 0;
}

.hover-dim-6dbd {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.highlight-silver-1f88 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.highlight-silver-1f88::before,
.highlight-silver-1f88::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.highlight-silver-1f88::before {
  top: -7px;
}

.highlight-silver-1f88::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.mini-5ad0 {
  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 === */
.solid-cd42 {
  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);
}

.header-active-253b {
  margin: 0 0 2rem;
  text-align: center;
}

.frame_3e30 {
  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;
}

.frame_3e30:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.filter_fast_8347 {
  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);
}

.filter_fast_8347 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.video-soft-aa6a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.detail_out_92d0 {
  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;
}

.detail_out_92d0:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.label_73a2 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.item_orange_7322 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.component-brown-ce54 {
  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);
}

.component-brown-ce54 .accordion_5d55 {
  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;
}

.component-brown-ce54 .accordion_5d55 svg {
  flex-shrink: 0;
}

.component-brown-ce54 .fixed_10bf {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.component-brown-ce54 .fixed_10bf: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);
}

.component-brown-ce54 .tooltip_ea89 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.component-brown-ce54 .tooltip_ea89: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) {
  .solid-cd42 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .frame_3e30 {
    max-width: 100%;
  }

  .video-soft-aa6a {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .detail_out_92d0 {
    padding: 1rem;
  }

  .label_73a2 {
    font-size: 1.5rem;
  }

  .item_orange_7322 {
    font-size: 0.75rem;
  }

  .filter_fast_8347 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .component-brown-ce54 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .component-brown-ce54 .accordion_5d55 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .video-soft-aa6a {
    grid-template-columns: 1fr;
  }
}

.component-b810 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.large_6b02 {
  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 === */
.overlay-b430 {
  margin-bottom: 2.5rem;
}

.input-blue-7e61 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.component-b810 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.gradient_focused_5e32 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge-gas-dce5 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.block_a608 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hard_0dfd {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.alert-1c7c {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.menu_1f84 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.motion_9341 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.motion_9341 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.chip-small-0070 {
  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);
}

.preview_2744 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.top-6478 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.active-dim-f71e {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.tertiary-6428 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.iron_b6b0 {
  display: grid;
  gap: 1rem;
}

.gold-66f0 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.wrapper-1bae {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.active_6596 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.out-e74d {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.sidebar_941f {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.filter_thick_c9ab {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.filter_thick_c9ab p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.list_east_c7d3 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.tooltip_0c6e {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.inner_db7b {
  display: grid;
  gap: 2rem;
}

.solid-b85b {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.badge-gas-dce5 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.gradient_focused_5e32 {
  flex: 1;
}

.hard_0dfd {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.hard_0dfd a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.card-e45a {
  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;
}

.alert-1c7c {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.left_ca84 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.left_ca84 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.info_selected_ffc9 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.info_selected_ffc9 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.layout_huge_a7aa {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.layout_huge_a7aa strong {
  display: block;
  margin-bottom: 0.75rem;
}

.layout_huge_a7aa ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.layout_huge_a7aa li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.article_c571 {
  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 === */
.shadow-7b00 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.table-paper-d743 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.header-eafe {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.motion_5940 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.motion_5940 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.motion_5940 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.motion_5940 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;
}

.motion_5940 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.motion_5940 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.text-soft-ef73 {
  padding: 3rem 0 5rem;
}

.form_acf0 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.form_acf0.basic-cc86 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.solid-1d1f {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.tooltip-down-d5d1 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.input-e4d7 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.input-e4d7 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.secondary-wide-1b39 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.active_be0f {
  text-align: center;
}

.hard_2caa {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.steel_e78a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.accordion-bronze-73bc {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.layout-9eeb {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.hidden_e4b9 {
  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;
}

.hidden_e4b9 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hidden_e4b9:hover {
  box-shadow: var(--shadow-lg);
}

.hidden_e4b9.logo-4f7d {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.hidden_e4b9 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.hidden_e4b9 ul {
  margin: 1rem 0;
}

.hidden_e4b9 li {
  margin-bottom: 0.75rem;
}

.huge-3c95 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.outer_7c61 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.outer_7c61 a {
  font-weight: 600;
}

/* === Data Tables === */
.block_old_c8a3 {
  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;
}

.block_old_c8a3 table {
  width: 100%;
  min-width: 600px;
}

.block_old_c8a3 thead {
  background-color: var(--primary-color);
  color: white;
}

.block_old_c8a3 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.block_old_c8a3 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.block_old_c8a3 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.block_old_c8a3 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.component-blue-4965 {
  list-style: none;
  margin: 1.5rem 0;
}

.component-blue-4965 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.component-blue-4965 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.notice-6b7f::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-a5f3::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 === */
.caption-orange-649b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.article-full-7e49 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.article-full-7e49 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.article-full-7e49 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.article-full-7e49 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.caption-orange-649b blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.south_cb33 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.south_cb33::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.center-61ff {
  position: relative;
  margin-bottom: 3rem;
}

.column-slow-1bc9 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.column-slow-1bc9 .border_88b7 {
  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;
}

.down_3322 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.down_3322 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.down_3322 ul {
  margin: 1rem 0;
}

.down_3322 li {
  margin-bottom: 0.75rem;
}

.panel-7a94 {
  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 === */
.aside_west_fa24 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.aside_west_fa24 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.media-white-ebba {
  list-style: none;
  margin: 1.5rem 0;
}

.media-white-ebba li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.media-white-ebba a {
  font-weight: 600;
}

.message_f7a4 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.tall_823c {
  margin: 2.5rem 0;
}

.focus-9379 {
  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;
}

.focus-9379:hover {
  box-shadow: var(--shadow-lg);
}

.focus-9379.detail_d45e {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.feature_07ed {
  flex-shrink: 0;
}

.feature_07ed 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);
}

.footer_874d h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.steel_7d13,
.prev-8f3e,
.banner_simple_8718 {
  width: 100%;
  margin: 1.5rem 0;
}

.up-633c {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.up-633c strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.slider_east_bb9c {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.slider_east_bb9c strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.inner_4bc8 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.inner_4bc8 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.top-98a6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.easy-2f28 {
  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;
}

.easy-2f28:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.easy-2f28.full_80ac {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.easy-2f28 .grid_red_6e78 {
  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;
}

.easy-2f28 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.logo_42c5 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.medium-0776 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.medium-0776 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.hero_17b4 {
  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 === */
.accordion_5d55 {
  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;
}

.fixed_10bf {
  background-color: var(--primary-color);
  color: white;
}

.fixed_10bf:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.tooltip_ea89 {
  background-color: var(--text-secondary);
  color: white;
}

.tooltip_ea89:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.paragraph_short_b09b {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.paragraph_short_b09b:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.box-easy-7605 {
  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;
}

.box-easy-7605:hover {
  background-color: var(--primary-dark);
}

.dropdown_8169 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.caption_black_54a4 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.pressed_667b {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.photo-755b {
  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 === */
.pink-2cc7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.video_f4a7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.video_f4a7 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.image-solid-18b8 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.lower_ed9f {
  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;
}

.gradient-current-39da {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.out_f20f {
  list-style: none;
  counter-reset: rank-counter;
}

.out_f20f li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.out_f20f 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;
}

.content_cb71 {
  list-style: none;
}

.content_cb71 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.over_ba6e {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.first-f52b {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.first-f52b .status-4a76 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.first-f52b .detail-f13c {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.aside_white_0c5a {
  margin-top: 3rem;
}

.pattern_wide_a78a {
  width: 100%;
}

.medium-eb20 {
  background-color: #fef3c7;
}

.paper_2700 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.banner-430a {
  margin: 3rem 0;
}

.highlight-dark-d9b8 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.status_up_11bb {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.status_up_11bb:hover {
  box-shadow: var(--shadow-lg);
}

.status_up_11bb.fixed-5850 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.first_16fe {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.video_light_0911 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.video_light_0911 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.box_102d {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.status_up_11bb blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.outline-dfe8 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.texture_wide_99a4 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.card-b9a9 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.article-bright-0a77 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.preview_12c4 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.accordion-selected-87dc {
  margin-top: 1rem;
}

/* === FAQ Section === */
.outline_first_fe3d {
  max-width: 900px;
  margin: 0 auto;
}

.smooth_6e1a {
  margin: 2rem 0;
}

.current-0c2c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.current-0c2c summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.current-0c2c summary::-webkit-details-marker {
  display: none;
}

.current-0c2c summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.bottom_3eea {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.current-0c2c[open] .bottom_3eea {
  transform: rotate(45deg);
}

.hard_8c53 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.hard_8c53 p:last-child {
  margin-bottom: 0;
}

.backdrop-e314 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.title_21db {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.hard_311d {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.hard_311d p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.hard_311d .accordion_5d55 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.middle-85b4 {
  max-width: 900px;
  margin: 0 auto;
}

.advanced-0963 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.backdrop-west-f544 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.backdrop-west-f544.fn-success-a5f3 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.dropdown-simple-3345 {
  font-size: 3rem;
  line-height: 1;
}

.warm-a874 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.basic_9074 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.top_8888,
.medium_c383 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.top_8888 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.medium_c383 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.red_3b9f,
.modal_paper_436e {
  margin: 1.5rem 0;
}

.red_3b9f li,
.modal_paper_436e li {
  margin-bottom: 1rem;
}

.next_c98c {
  margin: 3rem 0;
}

.icon-d99d {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.icon-d99d h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.icon-d99d ol {
  margin: 1rem 0;
}

.icon-d99d li {
  margin-bottom: 0.75rem;
}

.chip_steel_b9f8 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.fast_1ac4 {
  margin: 2rem 0;
}

.info-west-3f2d {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.gas-34e0 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.texture-full-d6b6 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.avatar-huge-8b7a {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.avatar-gold-37e6 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.status_west_7fd2 {
  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;
}

.status_west_7fd2 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.block_a608 {
  flex: 1;
}

.block_a608 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.shadow_blue_2254 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.dim_6c2a p {
  margin-bottom: 1rem;
}

.picture_west_575d {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.liquid_735d {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.focus_pro_6fdd {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.focus_pro_6fdd a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.motion-372b h3 {
  margin-bottom: 1.5rem;
}

.progress-east-5579 {
  display: grid;
  gap: 2rem;
}

.top_78c5 {
  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;
}

.top_78c5 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.top_78c5 h4 {
  margin: 0 0 0.25rem;
}

.top_78c5 p {
  margin: 0;
  font-size: 0.9375rem;
}

.modal-69ec {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.photo-d78e {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.photo-d78e h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.photo-d78e ul {
  margin: 1.5rem 0;
}

.photo-d78e li {
  margin-bottom: 0.75rem;
}

.text-bronze-a1ac {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.last-375a {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.gold-017a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.element-7d54 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.element-7d54 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.notice-6b03 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.notice-6b03 a {
  color: rgba(255, 255, 255, 0.8);
}

.simple-4607 {
  list-style: none;
}

.simple-4607 li {
  margin-bottom: 0.75rem;
}

.simple-4607 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.simple-4607 a:hover {
  color: white;
}

.under-38e0 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.hot-b43c {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.pro-1658 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.popup-692d {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.dropdown-97a5 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .notification-bf86 {
    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;
  }

  .column_270b {
    font-size: 1.5rem !important;
  }

  .input-blue-7e61 {
    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 */
  .hidden_e4b9,
  .article-9c69,
  .down_3322,
  .footer_874d,
  .first_16fe,
  .status_up_11bb,
  .hard_8c53,
  .filter_fast_8347,
  .list_east_c7d3,
  .solid-1d1f {
    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 */
  .component-b810 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .gradient_focused_5e32 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .badge-gas-dce5 {
    flex-shrink: 0;
  }

  .block_a608 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .hard_0dfd,
  .alert-1c7c {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .alert-1c7c {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .carousel-bright-d6a7 {
    display: none;
  }

  /* Show mobile actions */
  .status_ff74 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .texture_0464 {
    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;
  }

  .texture_0464 svg {
    flex-shrink: 0;
  }

  .texture_0464 .status_a1d6 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .texture_0464 .carousel_a3de {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .thumbnail_hard_8b13 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .cold-669b {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .texture_0464:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .wide_a87b {
    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;
  }

  .wide_a87b.fn-active-a5f3 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .wide_a87b li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .wide_a87b li:last-child {
    border-bottom: none;
  }

  .wide_a87b a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .hot-7dae {
    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;
  }

  .hot-7dae li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .hot-7dae li:last-child {
    border-bottom: none;
  }

  .hot-7dae a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .pro_8fd3 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .pressed-c845 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .bright-bc2f,
  .badge-purple-29df {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .bright-bc2f {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .badge-purple-29df {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .hot-7dae.fn-active-a5f3 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hover-dim-6dbd {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .bronze-27c5 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .content-red-ff32 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .mini-5ad0 {
    margin-top: 0;
  }

  /* Hero section */
  .mini-5ad0 {
    padding: 2rem 0 1.5rem;
  }

  .input-blue-7e61 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .list_east_c7d3 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .solid-cd42 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .frame_3e30 {
    max-width: 100%;
    border-radius: 8px;
  }

  .video-soft-aa6a {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .detail_out_92d0 {
    padding: 1rem;
  }

  .label_73a2 {
    font-size: 1.5rem;
  }

  .item_orange_7322 {
    font-size: 0.75rem;
  }

  .filter_fast_8347 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .component-brown-ce54 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .component-brown-ce54 .accordion_5d55 {
    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 */
  .header-eafe {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .focus-9379 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .feature_07ed {
    margin-bottom: 1rem;
  }

  /* Author */
  .solid-b85b {
    flex-direction: column;
  }

  .status_west_7fd2 {
    flex-direction: column;
  }

  /* Quotes */
  .first_16fe {
    flex-direction: column;
  }

  /* Pros/Cons */
  .basic_9074 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .avatar-huge-8b7a {
    flex-direction: column;
  }

  .avatar-huge-8b7a .accordion_5d55 {
    width: 100%;
  }

  /* Version comparison */
  .top-98a6 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .pink-2cc7 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .gold-017a {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pro-1658 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .block_old_c8a3,
  .prev-8f3e,
  .shadow-tiny-8bca,
  .pattern_wide_a78a,
  .steel_7d13,
  .banner_simple_8718 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .block_old_c8a3 table,
  .prev-8f3e table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .hero_17b4 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .notification-bf86 {
    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;
  }

  .column_270b {
    font-size: 1.25rem !important;
  }

  .input-blue-7e61 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .bronze-27c5 {
    position: fixed;
  }

  .content-red-ff32 {
    padding: 0.625rem 0;
  }

  .block-a96b img {
    height: 26px;
  }

  .hot-7dae {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .wide_a87b {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .texture_0464 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .texture_0464 svg {
    width: 18px;
    height: 18px;
  }

  .texture_0464 .status_a1d6 {
    font-size: 0.7rem;
  }

  .texture_0464 .carousel_a3de {
    font-size: 0.65rem;
  }

  .bright-bc2f,
  .badge-purple-29df {
    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-bf86, .title-b9da, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .solid-cd42 {
    padding: 1rem;
  }

  .video-soft-aa6a {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .detail_out_92d0 {
    padding: 0.875rem;
  }

  .label_73a2 {
    font-size: 1.25rem;
  }

  .component-brown-ce54 .accordion_5d55 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .input-blue-7e61 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .accordion_5d55 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .dropdown_8169 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .focus-9379 {
    padding: 1rem;
  }

  .feature_07ed span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .hidden_e4b9,
  .avatar_over_a9c2,
  .wide-93bc,
  .stone-7847 {
    padding: 1rem;
  }
}

@media print {
  .bronze-27c5,
  .shadow-7b00,
  .hover-dim-6dbd,
  .accordion_5d55,
  .last-375a {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .notification-bf86 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.focus_purple_4a7f {
  margin-bottom: 3rem;
  text-align: center;
}

.column_270b {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.nav-inner-cb53 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.link_6cab,
.copper_36c2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.white-9a4d {
  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;
}

.white-9a4d:hover {
  transform: translateY(-5px);
}

.white-9a4d strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.white-9a4d span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.form-0e00 {
  margin: 3rem 0;
}

.next-66dc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.photo_blue_5a6a {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.photo_blue_5a6a:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.notice_3ef6 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.border-focused-39a7 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.selected-abdb {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.container_hovered_f9bf {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.hero_white_0896 {
  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;
}

.hero_white_0896:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.hero_white_0896.old-466b {
  border-left: 4px solid var(--primary-color);
}

.accordion_up_2cdf {
  flex-shrink: 0;
}

.accordion_up_2cdf svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.glass_4999 {
  flex: 1;
}

.glass_4999 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.gallery-d32d {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.module-lower-3fbb,
.slider-1539,
.pagination_9e31 {
  margin-bottom: 1.5rem;
}

.module-lower-3fbb h4,
.slider-1539 h4,
.pagination_9e31 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.module-lower-3fbb ul,
.slider-1539 ul,
.pagination_9e31 ul {
  list-style: none;
  padding: 0;
}

.module-lower-3fbb li,
.slider-1539 li,
.pagination_9e31 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.module-lower-3fbb li:before,
.slider-1539 li:before,
.pagination_9e31 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.gold_1fd3 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.gold_1fd3 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;
}

.gold_1fd3 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.disabled-east-669d { margin: 2rem 0; }
.status-bronze-180f { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.status-bronze-180f h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.highlight-short-17d0 p { margin-bottom: 1rem; line-height: 1.7; }
.highlight-short-17d0 strong { color: var(--text-primary); }
.highlight-short-17d0 ul { list-style: none; padding-left: 0; }
.highlight-short-17d0 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.highlight-short-17d0 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.footer-13b5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.primary_1f0b { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.primary_1f0b:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.tabs-be7d { font-size: 3rem; margin-bottom: 1rem; }
.primary_1f0b h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.primary_1f0b p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.link_a0b5 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.link_a0b5 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.banner_gold_761d { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.link_cd58 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.tag_0e28 { text-align: center; }
.easy_7a13 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.video_slow_acab { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.gradient_72e7 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.complex-cd70 { margin: 2rem 0; }
.in-1c7b { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.in-1c7b h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.in-1c7b p, .in-1c7b ul { line-height: 1.7; }
.in-1c7b ul { list-style: none; padding-left: 0; }
.in-1c7b ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.in-1c7b ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.dropdown_fresh_1e94 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.button_7535 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.sort-0087 { text-align: center; }
.status-inner-d565 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.texture-ffec { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.wrapper_ada5 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.filter-48b7 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.form_9871 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.form_9871:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.form_9871 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.form_9871 p, .form_9871 ul { line-height: 1.7; }
.form_9871 ul { list-style: none; padding-left: 0; }
.form_9871 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.form_9871 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 10a0 */
.shadow-element-p6 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.3;
}
