/* ============================================
   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 */
.wrapper-selected-f88e p,
.north-eccd,
.avatar-3e5f,
.row-fb61,
.section-rough-480c,
.selected_9624,
.summary_0b5c,
.logo_1fb0 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.feature-fluid-6568 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.feature-fluid-6568 > *,
.hero_b746,
.wrapper-selected-f88e,
.video-paper-5578 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .feature-fluid-6568 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .feature-fluid-6568 {
    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 === */
.static_2b00 {
  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 */
.static_2b00.top_fcbd {
  box-shadow: var(--shadow-md);
}

.fresh_0318 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.badge-complex-27a3 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.border_east_3565 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.component-68ef {
  display: none;
}

/* Hide mobile actions on desktop */
.caption-6193 {
  display: none;
}

.simple_76eb a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.simple_76eb a:hover,
.simple_76eb a.fn-active-1f83 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.element-hard-8a5d {
  margin-left: 1rem;
}

.purple_9680 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.detail_fresh_c76e,
.element-dee5 {
  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;
}

.detail_fresh_c76e {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.detail_fresh_c76e: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;
}

.element-dee5 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.element-dee5: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;
}

.detail_fresh_c76e svg,
.element-dee5 svg {
  flex-shrink: 0;
}

.white_2ecc {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mask_last_e445 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.mask_last_e445::before,
.mask_last_e445::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.mask_last_e445::before {
  top: -7px;
}

.mask_last_e445::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.secondary_tall_f4d1 {
  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 === */
.overlay_upper_ddb8 {
  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);
}

.green_1512 {
  margin: 0 0 2rem;
  text-align: center;
}

.notification_cdcd {
  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;
}

.notification_cdcd:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.header-basic-87a7 {
  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);
}

.header-basic-87a7 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.in-805b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.clean_6761 {
  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;
}

.clean_6761:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.block-0b68 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.dynamic_f864 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.breadcrumb_2b37 {
  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);
}

.breadcrumb_2b37 .west_a023 {
  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;
}

.breadcrumb_2b37 .west_a023 svg {
  flex-shrink: 0;
}

.breadcrumb_2b37 .preview_7d96 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.breadcrumb_2b37 .preview_7d96: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);
}

.breadcrumb_2b37 .slider-c817 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.breadcrumb_2b37 .slider-c817: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) {
  .overlay_upper_ddb8 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .notification_cdcd {
    max-width: 100%;
  }

  .in-805b {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .clean_6761 {
    padding: 1rem;
  }

  .block-0b68 {
    font-size: 1.5rem;
  }

  .dynamic_f864 {
    font-size: 0.75rem;
  }

  .header-basic-87a7 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .breadcrumb_2b37 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .breadcrumb_2b37 .west_a023 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .in-805b {
    grid-template-columns: 1fr;
  }
}

.inner-867e {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.form-down-2c8b {
  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 === */
.box-fresh-e5be {
  margin-bottom: 2.5rem;
}

.frame-5f84 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.inner-867e {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.slider_a448 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.notification-4aaa {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.search_simple_ad84 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.info-bronze-db93 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.article-slow-b658 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.wood_1203 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.wrapper-silver-2790 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.wrapper-silver-2790 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.panel-old-ebd8 {
  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);
}

.modal_large_33fb {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.basic_c113 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.notification-43a0 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.blue-9511 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.dim_8b72 {
  display: grid;
  gap: 1rem;
}

.red_01c5 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.prev-082f {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.bright_f121 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.slider-8e06 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.icon_gas_9d6d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.summary-thick-6214 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.summary-thick-6214 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.north-eccd {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.message-a9ba {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.label-selected-ab97 {
  display: grid;
  gap: 2rem;
}

.sidebar_slow_74f3 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.notification-4aaa {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.slider_a448 {
  flex: 1;
}

.info-bronze-db93 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.info-bronze-db93 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.tabs_cd32 {
  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;
}

.article-slow-b658 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.mini-a5b1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.mini-a5b1 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.message_8b9d {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.message_8b9d a {
  font-size: 0.875rem;
  font-weight: 500;
}

.popup_7b91 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.popup_7b91 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.popup_7b91 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.popup_7b91 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.breadcrumb_fast_8319 {
  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 === */
.pro_2f01 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.video_east_62d7 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.fixed-1081 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.link_e6d5 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.link_e6d5 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.link_e6d5 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.link_e6d5 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;
}

.link_e6d5 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.link_e6d5 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.wrapper-selected-f88e {
  padding: 3rem 0 5rem;
}

.video-paper-5578 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.video-paper-5578.mask-abf6 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.avatar-3e5f {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.liquid-33d5 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.row-iron-9f82 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.row-iron-9f82 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.nav_prev_7229 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.item-in-20f0 {
  text-align: center;
}

.west-e9dd {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.large-6f62 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.brown_b004 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.selected_9624 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.row-fb61 {
  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;
}

.row-fb61 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.row-fb61:hover {
  box-shadow: var(--shadow-lg);
}

.row-fb61.hero_7bea {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.row-fb61 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.row-fb61 ul {
  margin: 1rem 0;
}

.row-fb61 li {
  margin-bottom: 0.75rem;
}

.active_f3ee {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.current-14b7 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.current-14b7 a {
  font-weight: 600;
}

/* === Data Tables === */
.backdrop-under-b2e9 {
  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;
}

.backdrop-under-b2e9 table {
  width: 100%;
  min-width: 600px;
}

.backdrop-under-b2e9 thead {
  background-color: var(--primary-color);
  color: white;
}

.backdrop-under-b2e9 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.backdrop-under-b2e9 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.backdrop-under-b2e9 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.backdrop-under-b2e9 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.border_tall_95a4 {
  list-style: none;
  margin: 1.5rem 0;
}

.border_tall_95a4 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.border_tall_95a4 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.bronze-adfd::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-1f83::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 === */
.iron_b93e {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.modal-4835 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.modal-4835 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.modal-4835 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.modal-4835 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.iron_b93e blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.summary_0b5c {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.summary_0b5c::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.stone_c628 {
  position: relative;
  margin-bottom: 3rem;
}

.tabs_517e {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.tabs_517e .rough_7704 {
  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;
}

.shadow-selected-8021 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.shadow-selected-8021 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.shadow-selected-8021 ul {
  margin: 1rem 0;
}

.shadow-selected-8021 li {
  margin-bottom: 0.75rem;
}

.action-94c9 {
  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 === */
.input_8d6b {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.input_8d6b h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.hard_18cf {
  list-style: none;
  margin: 1.5rem 0;
}

.hard_18cf li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.hard_18cf a {
  font-weight: 600;
}

.overlay-fd52 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.logo_1fb0 {
  margin: 2.5rem 0;
}

.button_bb55 {
  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;
}

.button_bb55:hover {
  box-shadow: var(--shadow-lg);
}

.button_bb55.motion_d2c6 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.mini_1da0 {
  flex-shrink: 0;
}

.mini_1da0 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);
}

.picture_small_1e21 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.overlay-huge-005f,
.input_purple_758a,
.input-north-dc9a {
  width: 100%;
  margin: 1.5rem 0;
}

.primary-slow-02b2 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.primary-slow-02b2 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.active-8cb6 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.active-8cb6 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.pink-6ec3 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.pink-6ec3 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.highlight-0a18 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.in_9f23 {
  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;
}

.in_9f23:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.in_9f23.slider-out-7ab3 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.in_9f23 .title-warm-aaba {
  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;
}

.in_9f23 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.in_a1f8 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.hero-57af {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.hero-57af label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.up_066c {
  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 === */
.west_a023 {
  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;
}

.preview_7d96 {
  background-color: var(--primary-color);
  color: white;
}

.preview_7d96:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.slider-c817 {
  background-color: var(--text-secondary);
  color: white;
}

.slider-c817:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.primary_fbdb {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.primary_fbdb:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.copper_1f53 {
  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;
}

.copper_1f53:hover {
  background-color: var(--primary-dark);
}

.table-7aa6 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.hovered-9efe {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.banner_43d4 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.progress-last-214c {
  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 === */
.aside_c5ad {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.header_inner_0c9c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.header_inner_0c9c h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.texture-center-2995 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.search-current-25bb {
  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;
}

.yellow_c92a {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.pagination_fbd7 {
  list-style: none;
  counter-reset: rank-counter;
}

.pagination_fbd7 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.pagination_fbd7 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;
}

.form-6eb2 {
  list-style: none;
}

.form-6eb2 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.dark-6ec1 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.slider-50be {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.slider-50be .label_436e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.slider-50be .tertiary_ef9a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.list_soft_3dba {
  margin-top: 3rem;
}

.link_0d46 {
  width: 100%;
}

.pagination_cool_3b8d {
  background-color: #fef3c7;
}

.disabled_8b3a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.preview-tiny-94eb {
  margin: 3rem 0;
}

.accordion-4749 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.south-9a53 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.south-9a53:hover {
  box-shadow: var(--shadow-lg);
}

.south-9a53.video-narrow-56de {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.summary-bottom-f41e {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.alert_79a9 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.alert_79a9 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.search-6ab7 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.south-9a53 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.logo_6e3e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.highlight-fixed-9429 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.overlay-hot-b0f8 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.bright_2806 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.message-slow-10f6 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.row_over_1ad5 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.tabs_2c45 {
  max-width: 900px;
  margin: 0 auto;
}

.item_ee45 {
  margin: 2rem 0;
}

.background-b566 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.background-b566 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.background-b566 summary::-webkit-details-marker {
  display: none;
}

.background-b566 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.progress_dc1c {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.background-b566[open] .progress_dc1c {
  transform: rotate(45deg);
}

.article_d9e5 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.article_d9e5 p:last-child {
  margin-bottom: 0;
}

.paragraph_baf8 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.focused_e014 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.overlay_3a56 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.overlay_3a56 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.overlay_3a56 .west_a023 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.main-3e93 {
  max-width: 900px;
  margin: 0 auto;
}

.hover_9be1 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.article-8879 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.article-8879.fn-success-1f83 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.bright_a30c {
  font-size: 3rem;
  line-height: 1;
}

.tag-active-d13b h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.preview-focused-970c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.brown-147a,
.hidden-prev-3fe5 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.brown-147a h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.hidden-prev-3fe5 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.hero_cd3b,
.video_9da2 {
  margin: 1.5rem 0;
}

.hero_cd3b li,
.video_9da2 li {
  margin-bottom: 1rem;
}

.surface-962d {
  margin: 3rem 0;
}

.header_light_06df {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.header_light_06df h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.header_light_06df ol {
  margin: 1rem 0;
}

.header_light_06df li {
  margin-bottom: 0.75rem;
}

.paragraph_0b9c {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.media_68f9 {
  margin: 2rem 0;
}

.badge-c894 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.frame_complex_33fb {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.south_5b86 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.aside-a6e3 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.background_orange_b752 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.accent_50a7 {
  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;
}

.accent_50a7 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.search_simple_ad84 {
  flex: 1;
}

.search_simple_ad84 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.surface-advanced-c299 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.icon_8d25 p {
  margin-bottom: 1rem;
}

.basic_68e3 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.backdrop-thick-307b {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.surface-brown-d765 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.surface-brown-d765 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.image-last-06f0 h3 {
  margin-bottom: 1.5rem;
}

.alert_center_7020 {
  display: grid;
  gap: 2rem;
}

.heading_071b {
  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;
}

.heading_071b img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.heading_071b h4 {
  margin: 0 0 0.25rem;
}

.heading_071b p {
  margin: 0;
  font-size: 0.9375rem;
}

.border_e58e {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.tertiary-stale-1185 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.tertiary-stale-1185 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.tertiary-stale-1185 ul {
  margin: 1.5rem 0;
}

.tertiary-stale-1185 li {
  margin-bottom: 0.75rem;
}

.caption_motion_7d70 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.title_old_b492 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.east_7431 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.chip-light-608b h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.chip-light-608b p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.search-west-f3e7 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.search-west-f3e7 a {
  color: rgba(255, 255, 255, 0.8);
}

.section-a688 {
  list-style: none;
}

.section-a688 li {
  margin-bottom: 0.75rem;
}

.section-a688 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.section-a688 a:hover {
  color: white;
}

.dirty_fb98 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.detail-advanced-f264 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.tabs_full_9836 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.clean_dbf0 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.status-dark-7d3d {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .feature-fluid-6568 {
    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;
  }

  .feature-c662 {
    font-size: 1.5rem !important;
  }

  .frame-5f84 {
    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 */
  .row-fb61,
  .section-rough-480c,
  .shadow-selected-8021,
  .picture_small_1e21,
  .summary-bottom-f41e,
  .south-9a53,
  .article_d9e5,
  .header-basic-87a7,
  .north-eccd,
  .avatar-3e5f {
    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 */
  .inner-867e {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .slider_a448 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .notification-4aaa {
    flex-shrink: 0;
  }

  .search_simple_ad84 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .info-bronze-db93,
  .article-slow-b658 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .article-slow-b658 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .border_east_3565 {
    display: none;
  }

  /* Show mobile actions */
  .caption-6193 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .header_hard_2edd {
    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;
  }

  .header_hard_2edd svg {
    flex-shrink: 0;
  }

  .header_hard_2edd .shadow_yellow_9177 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .header_hard_2edd .right_b4aa {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .article_2069 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .prev-4472 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .header_hard_2edd:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .component-68ef {
    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;
  }

  .component-68ef.fn-active-1f83 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .component-68ef li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .component-68ef li:last-child {
    border-bottom: none;
  }

  .component-68ef a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .simple_76eb {
    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;
  }

  .simple_76eb li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .simple_76eb li:last-child {
    border-bottom: none;
  }

  .simple_76eb a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .element-hard-8a5d {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .purple_9680 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .detail_fresh_c76e,
  .element-dee5 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .detail_fresh_c76e {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .element-dee5 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .simple_76eb.fn-active-1f83 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .white_2ecc {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .static_2b00 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .fresh_0318 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .secondary_tall_f4d1 {
    margin-top: 0;
  }

  /* Hero section */
  .secondary_tall_f4d1 {
    padding: 2rem 0 1.5rem;
  }

  .frame-5f84 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .north-eccd {
    font-size: 1rem;
  }

  /* Hero brand image */
  .overlay_upper_ddb8 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .notification_cdcd {
    max-width: 100%;
    border-radius: 8px;
  }

  .in-805b {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .clean_6761 {
    padding: 1rem;
  }

  .block-0b68 {
    font-size: 1.5rem;
  }

  .dynamic_f864 {
    font-size: 0.75rem;
  }

  .header-basic-87a7 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .breadcrumb_2b37 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .breadcrumb_2b37 .west_a023 {
    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 */
  .fixed-1081 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .button_bb55 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .mini_1da0 {
    margin-bottom: 1rem;
  }

  /* Author */
  .sidebar_slow_74f3 {
    flex-direction: column;
  }

  .accent_50a7 {
    flex-direction: column;
  }

  /* Quotes */
  .summary-bottom-f41e {
    flex-direction: column;
  }

  /* Pros/Cons */
  .preview-focused-970c {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .aside-a6e3 {
    flex-direction: column;
  }

  .aside-a6e3 .west_a023 {
    width: 100%;
  }

  /* Version comparison */
  .highlight-0a18 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .aside_c5ad {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .east_7431 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tabs_full_9836 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .backdrop-under-b2e9,
  .input_purple_758a,
  .tall_7d55,
  .link_0d46,
  .overlay-huge-005f,
  .input-north-dc9a {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .backdrop-under-b2e9 table,
  .input_purple_758a table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .up_066c {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .feature-fluid-6568 {
    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;
  }

  .feature-c662 {
    font-size: 1.25rem !important;
  }

  .frame-5f84 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .static_2b00 {
    position: fixed;
  }

  .fresh_0318 {
    padding: 0.625rem 0;
  }

  .badge-complex-27a3 img {
    height: 26px;
  }

  .simple_76eb {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .component-68ef {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .header_hard_2edd {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .header_hard_2edd svg {
    width: 18px;
    height: 18px;
  }

  .header_hard_2edd .shadow_yellow_9177 {
    font-size: 0.7rem;
  }

  .header_hard_2edd .right_b4aa {
    font-size: 0.65rem;
  }

  .detail_fresh_c76e,
  .element-dee5 {
    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, .feature-fluid-6568, .hero_b746, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .overlay_upper_ddb8 {
    padding: 1rem;
  }

  .in-805b {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .clean_6761 {
    padding: 0.875rem;
  }

  .block-0b68 {
    font-size: 1.25rem;
  }

  .breadcrumb_2b37 .west_a023 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .frame-5f84 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .west_a023 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .table-7aa6 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .button_bb55 {
    padding: 1rem;
  }

  .mini_1da0 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .row-fb61,
  .east-75ab,
  .action_13d9,
  .focus_next_7627 {
    padding: 1rem;
  }
}

@media print {
  .static_2b00,
  .pro_2f01,
  .white_2ecc,
  .west_a023,
  .title_old_b492 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .feature-fluid-6568 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.image_6758 {
  margin-bottom: 3rem;
  text-align: center;
}

.feature-c662 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.dirty_8483 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.gold_ef4b,
.soft-7646 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.background-c824 {
  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;
}

.background-c824:hover {
  transform: translateY(-5px);
}

.background-c824 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.background-c824 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.gradient_eb6d {
  margin: 3rem 0;
}

.modal_over_c8e2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.element_65bc {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.element_65bc:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.smooth_6fda {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.progress_plasma_a63b {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.wood-8ed8 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.purple_4864 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.stale-3b9b {
  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;
}

.stale-3b9b:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.stale-3b9b.block_medium_d3fa {
  border-left: 4px solid var(--primary-color);
}

.media_04c9 {
  flex-shrink: 0;
}

.media_04c9 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.narrow-fc95 {
  flex: 1;
}

.narrow-fc95 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.backdrop-full-621c {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.layout_bronze_7d9c,
.card-62a2,
.menu-liquid-7d2c {
  margin-bottom: 1.5rem;
}

.layout_bronze_7d9c h4,
.card-62a2 h4,
.menu-liquid-7d2c h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.layout_bronze_7d9c ul,
.card-62a2 ul,
.menu-liquid-7d2c ul {
  list-style: none;
  padding: 0;
}

.layout_bronze_7d9c li,
.card-62a2 li,
.menu-liquid-7d2c li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.layout_bronze_7d9c li:before,
.card-62a2 li:before,
.menu-liquid-7d2c li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.tiny-4c67 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.tiny-4c67 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;
}

.tiny-4c67 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.mask_outer_49b2 { margin: 2rem 0; }
.footer_pink_2fc2 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.footer_pink_2fc2 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.paragraph-large-e1f9 p { margin-bottom: 1rem; line-height: 1.7; }
.paragraph-large-e1f9 strong { color: var(--text-primary); }
.paragraph-large-e1f9 ul { list-style: none; padding-left: 0; }
.paragraph-large-e1f9 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.paragraph-large-e1f9 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.center-522e { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.aside-4943 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.aside-4943:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.header-simple-b714 { font-size: 3rem; margin-bottom: 1rem; }
.aside-4943 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.aside-4943 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.tooltip-14da { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.tooltip-14da span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.detail_f10b { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.lite-0895 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.outline_119f { text-align: center; }
.gradient-011f { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.hard_4d9c { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.light_30a2 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.lite-ae71 { margin: 2rem 0; }
.popup-699d { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.popup-699d h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.popup-699d p, .popup-699d ul { line-height: 1.7; }
.popup-699d ul { list-style: none; padding-left: 0; }
.popup-699d ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.popup-699d ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.disabled-huge-ebef { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.content-644c { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.slow-276f { text-align: center; }
.notification_smooth_69f7 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.table_ad15 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.iron_c6f3 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.hard-b7a9 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.message-b573 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.message-b573:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.message-b573 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.message-b573 p, .message-b573 ul { line-height: 1.7; }
.message-b573 ul { list-style: none; padding-left: 0; }
.message-b573 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.message-b573 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 614a */
.promo-block-k9 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.0;
}
