/* ============================================
   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 */
.cold_0e9f p,
.middle-702f,
.widget-hard-eec7,
.wrapper_gold_96ad,
.fresh_8df7,
.basic_49de,
.accordion-gold-67c1,
.box_5c82 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.prev-d783 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.prev-d783 > *,
.tertiary_baa4,
.cold_0e9f,
.module_north_a5a7 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .prev-d783 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .prev-d783 {
    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 === */
.column-advanced-b0b2 {
  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 */
.column-advanced-b0b2.progress-mini-6d89 {
  box-shadow: var(--shadow-md);
}

.photo_5c87 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.detail_medium_d109 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.hidden_silver_42df {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.easy-7ad1 {
  display: none;
}

/* Hide mobile actions on desktop */
.prev_4473 {
  display: none;
}

.fluid-6744 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.fluid-6744 a:hover,
.fluid-6744 a.fn-active-c007 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.highlight-silver-23c3 {
  margin-left: 1rem;
}

.container-solid-0d12 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.carousel-active-4cbe,
.east_1b82 {
  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;
}

.carousel-active-4cbe {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.carousel-active-4cbe: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;
}

.east_1b82 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.east_1b82: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;
}

.carousel-active-4cbe svg,
.east_1b82 svg {
  flex-shrink: 0;
}

.soft-d188 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.outline-cca3 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.outline-cca3::before,
.outline-cca3::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.outline-cca3::before {
  top: -7px;
}

.outline-cca3::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.banner_upper_db7e {
  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 === */
.iron_b09e {
  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);
}

.black-93e4 {
  margin: 0 0 2rem;
  text-align: center;
}

.mini-4ade {
  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;
}

.mini-4ade:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.hard-b239 {
  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);
}

.hard-b239 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.border-9714 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.preview-over-4aac {
  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;
}

.preview-over-4aac:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.center_f643 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.badge-hard-1d07 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.red-d6af {
  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);
}

.red-d6af .button-a9c3 {
  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;
}

.red-d6af .button-a9c3 svg {
  flex-shrink: 0;
}

.red-d6af .mask-cf90 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.red-d6af .mask-cf90: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);
}

.red-d6af .left-189a {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.red-d6af .left-189a: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) {
  .iron_b09e {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .mini-4ade {
    max-width: 100%;
  }

  .border-9714 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .preview-over-4aac {
    padding: 1rem;
  }

  .center_f643 {
    font-size: 1.5rem;
  }

  .badge-hard-1d07 {
    font-size: 0.75rem;
  }

  .hard-b239 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .red-d6af {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .red-d6af .button-a9c3 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .border-9714 {
    grid-template-columns: 1fr;
  }
}

.hidden_660b {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.background_cool_7b0d {
  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 === */
.tabs-pro-3ac8 {
  margin-bottom: 2.5rem;
}

.tag_72a0 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.hidden_660b {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.text_green_5da8 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dim-ee1e {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.blue_d0f1 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.component-a3b0 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.background-white-95b8 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.nav_b24d {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.up-8c33 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.up-8c33 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.stone_a06e {
  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);
}

.up-3372 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.table_fast_fa8b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.easy-2cfd {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.caption_action_1ed7 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.wrapper-simple-0b9e {
  display: grid;
  gap: 1rem;
}

.caption-purple-3034 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.content_944f {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.hero_huge_5921 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.shade-smooth-964d {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.footer_1a83 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.media-c802 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.media-c802 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.middle-702f {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.popup_12b2 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.prev_9f21 {
  display: grid;
  gap: 2rem;
}

.last_b3ca {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.dim-ee1e {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.text_green_5da8 {
  flex: 1;
}

.component-a3b0 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.component-a3b0 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.selected-0696 {
  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;
}

.background-white-95b8 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.feature_4fed {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.feature_4fed span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.content_37da {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.content_37da a {
  font-size: 0.875rem;
  font-weight: 500;
}

.feature-dirty-457a {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.feature-dirty-457a strong {
  display: block;
  margin-bottom: 0.75rem;
}

.feature-dirty-457a ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-dirty-457a li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.filter_fixed_0c49 {
  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 === */
.tertiary-bright-f59f {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.gradient-db9e {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.thumbnail_bronze_a5f4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.smooth_9c24 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.smooth_9c24 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.smooth_9c24 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.smooth_9c24 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;
}

.smooth_9c24 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.smooth_9c24 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.cold_0e9f {
  padding: 3rem 0 5rem;
}

.module_north_a5a7 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.module_north_a5a7.liquid-448d {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.widget-hard-eec7 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.pagination-bff2 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.warm_888c {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.warm_888c h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.table-inner-824b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.modal_pink_adae {
  text-align: center;
}

.hero-upper-3aee {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.shadow-0d9c {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.progress_out_8720 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.basic_49de {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.wrapper_gold_96ad {
  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;
}

.wrapper_gold_96ad * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.wrapper_gold_96ad:hover {
  box-shadow: var(--shadow-lg);
}

.wrapper_gold_96ad.bottom-492d {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.wrapper_gold_96ad h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.wrapper_gold_96ad ul {
  margin: 1rem 0;
}

.wrapper_gold_96ad li {
  margin-bottom: 0.75rem;
}

.filter_stale_68a9 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.photo-f816 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.photo-f816 a {
  font-weight: 600;
}

/* === Data Tables === */
.inner_b016 {
  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;
}

.inner_b016 table {
  width: 100%;
  min-width: 600px;
}

.inner_b016 thead {
  background-color: var(--primary-color);
  color: white;
}

.inner_b016 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.inner_b016 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.inner_b016 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.inner_b016 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.sidebar_narrow_1607 {
  list-style: none;
  margin: 1.5rem 0;
}

.sidebar_narrow_1607 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.sidebar_narrow_1607 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.pattern-hard-4567::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-c007::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 === */
.shade_paper_be5a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.wrapper-e790 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.wrapper-e790 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.wrapper-e790 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.wrapper-e790 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.shade_paper_be5a blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.accordion-gold-67c1 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.accordion-gold-67c1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.label_f175 {
  position: relative;
  margin-bottom: 3rem;
}

.sort_right_2dd8 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.sort_right_2dd8 .hidden-c279 {
  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;
}

.gas-c9ac {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.gas-c9ac h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.gas-c9ac ul {
  margin: 1rem 0;
}

.gas-c9ac li {
  margin-bottom: 0.75rem;
}

.pattern-4c92 {
  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 === */
.static-064b {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.static-064b h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.right-7158 {
  list-style: none;
  margin: 1.5rem 0;
}

.right-7158 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.right-7158 a {
  font-weight: 600;
}

.content_fb8d {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.box_5c82 {
  margin: 2.5rem 0;
}

.heading_7db1 {
  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;
}

.heading_7db1:hover {
  box-shadow: var(--shadow-lg);
}

.heading_7db1.orange_2042 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.secondary-brown-4f84 {
  flex-shrink: 0;
}

.secondary-brown-4f84 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);
}

.video_prev_e4e0 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.label-blue-8dc9,
.form-2c38,
.fluid-2293 {
  width: 100%;
  margin: 1.5rem 0;
}

.layout-4664 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.layout-4664 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.lower_f9f9 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.lower_f9f9 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.column_0c6b {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.column_0c6b strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.disabled-120f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.south_7c65 {
  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;
}

.south_7c65:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.south_7c65.under_9172 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.south_7c65 .modal-paper-5243 {
  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;
}

.south_7c65 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.wrapper_b4ed {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.list_2059 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.list_2059 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.label-3ab8 {
  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 === */
.button-a9c3 {
  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;
}

.mask-cf90 {
  background-color: var(--primary-color);
  color: white;
}

.mask-cf90:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.left-189a {
  background-color: var(--text-secondary);
  color: white;
}

.left-189a:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.top_7e70 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.top_7e70:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.notice_0b5b {
  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;
}

.notice_0b5b:hover {
  background-color: var(--primary-dark);
}

.disabled-8793 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.last-8335 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.article-0f52 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.layout_basic_ace3 {
  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 === */
.liquid-f82e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.form-3e8f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.form-3e8f h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.hard-f913 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.block_a131 {
  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;
}

.left-bf3f {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.hidden-7f4d {
  list-style: none;
  counter-reset: rank-counter;
}

.hidden-7f4d li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.hidden-7f4d li::before {
  content: counter(rank-counter);
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
}

.description-action-e9dd {
  list-style: none;
}

.description-action-e9dd li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.pattern-out-9d2b {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.old-1ce3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.old-1ce3 .active_green_2af3 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.old-1ce3 .hover-center-75e7 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.info_ebd5 {
  margin-top: 3rem;
}

.right-05c2 {
  width: 100%;
}

.status_c47e {
  background-color: #fef3c7;
}

.disabled_pro_86d1 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.component_hovered_83e6 {
  margin: 3rem 0;
}

.orange-c9e7 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.paper_da75 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.paper_da75:hover {
  box-shadow: var(--shadow-lg);
}

.paper_da75.box-c3ee {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.purple-0427 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.chip_c637 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.chip_c637 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.notification_slow_6fcc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.paper_da75 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.nav_right_e810 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.right-1fb1 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.dark_7a66 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.status_a657 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.soft_a13b {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.motion_e57a {
  margin-top: 1rem;
}

/* === FAQ Section === */
.backdrop-9eb5 {
  max-width: 900px;
  margin: 0 auto;
}

.yellow_d900 {
  margin: 2rem 0;
}

.status-prev-b066 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.status-prev-b066 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.status-prev-b066 summary::-webkit-details-marker {
  display: none;
}

.status-prev-b066 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.notice-f423 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.status-prev-b066[open] .notice-f423 {
  transform: rotate(45deg);
}

.background_simple_30bf {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.background_simple_30bf p:last-child {
  margin-bottom: 0;
}

.motion-47e5 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.fresh_84e6 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.orange-aa4a {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.orange-aa4a p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.orange-aa4a .button-a9c3 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.small_fbe6 {
  max-width: 900px;
  margin: 0 auto;
}

.nav_wood_1647 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.block-new-ad1d {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.block-new-ad1d.fn-success-c007 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.tall_fb95 {
  font-size: 3rem;
  line-height: 1;
}

.detail-e106 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.modal_b0c0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.media-black-de84,
.soft-fcb0 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.media-black-de84 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.soft-fcb0 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.notice-advanced-4389,
.pro-ed35 {
  margin: 1.5rem 0;
}

.notice-advanced-4389 li,
.pro-ed35 li {
  margin-bottom: 1rem;
}

.caption_7680 {
  margin: 3rem 0;
}

.plasma-2855 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.plasma-2855 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.plasma-2855 ol {
  margin: 1rem 0;
}

.plasma-2855 li {
  margin-bottom: 0.75rem;
}

.description-11e2 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.active-8ae9 {
  margin: 2rem 0;
}

.new-d1a8 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.border_left_7df9 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.wrapper_old_10f5 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.feature_tall_114f {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.breadcrumb_purple_3360 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.new-003e {
  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;
}

.new-003e img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.blue_d0f1 {
  flex: 1;
}

.blue_d0f1 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.right_75c9 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.status_clean_d66a p {
  margin-bottom: 1rem;
}

.north_13ea {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.title_inner_a933 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.label-e034 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.label-e034 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.north-f929 h3 {
  margin-bottom: 1.5rem;
}

.hidden-eaf1 {
  display: grid;
  gap: 2rem;
}

.static-f63f {
  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;
}

.static-f63f img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.static-f63f h4 {
  margin: 0 0 0.25rem;
}

.static-f63f p {
  margin: 0;
  font-size: 0.9375rem;
}

.hot_7069 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.green-4234 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.green-4234 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.green-4234 ul {
  margin: 1.5rem 0;
}

.green-4234 li {
  margin-bottom: 0.75rem;
}

.iron_3aba {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.huge-0ade {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.search_e0b0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.pattern-c64b h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.pattern-c64b p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.caption_14ec {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.caption_14ec a {
  color: rgba(255, 255, 255, 0.8);
}

.preview-edf7 {
  list-style: none;
}

.preview-edf7 li {
  margin-bottom: 0.75rem;
}

.preview-edf7 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.preview-edf7 a:hover {
  color: white;
}

.current-6a08 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.detail-3b12 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.widget_4a4d {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.accent-complex-591c {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.section-e981 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .prev-d783 {
    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;
  }

  .medium-a536 {
    font-size: 1.5rem !important;
  }

  .tag_72a0 {
    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 */
  .wrapper_gold_96ad,
  .fresh_8df7,
  .gas-c9ac,
  .video_prev_e4e0,
  .purple-0427,
  .paper_da75,
  .background_simple_30bf,
  .hard-b239,
  .middle-702f,
  .widget-hard-eec7 {
    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 */
  .hidden_660b {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .text_green_5da8 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .dim-ee1e {
    flex-shrink: 0;
  }

  .blue_d0f1 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .component-a3b0,
  .background-white-95b8 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .background-white-95b8 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .hidden_silver_42df {
    display: none;
  }

  /* Show mobile actions */
  .prev_4473 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .lower_c498 {
    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;
  }

  .lower_c498 svg {
    flex-shrink: 0;
  }

  .lower_c498 .hot-58b5 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .lower_c498 .table_paper_818a {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .section_fa9f {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .card_soft_5ed5 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .lower_c498:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .easy-7ad1 {
    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;
  }

  .easy-7ad1.fn-active-c007 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .easy-7ad1 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .easy-7ad1 li:last-child {
    border-bottom: none;
  }

  .easy-7ad1 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .fluid-6744 {
    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;
  }

  .fluid-6744 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .fluid-6744 li:last-child {
    border-bottom: none;
  }

  .fluid-6744 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .highlight-silver-23c3 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .container-solid-0d12 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .carousel-active-4cbe,
  .east_1b82 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .carousel-active-4cbe {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .east_1b82 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .fluid-6744.fn-active-c007 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .soft-d188 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .column-advanced-b0b2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .photo_5c87 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .banner_upper_db7e {
    margin-top: 0;
  }

  /* Hero section */
  .banner_upper_db7e {
    padding: 2rem 0 1.5rem;
  }

  .tag_72a0 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .middle-702f {
    font-size: 1rem;
  }

  /* Hero brand image */
  .iron_b09e {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .mini-4ade {
    max-width: 100%;
    border-radius: 8px;
  }

  .border-9714 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .preview-over-4aac {
    padding: 1rem;
  }

  .center_f643 {
    font-size: 1.5rem;
  }

  .badge-hard-1d07 {
    font-size: 0.75rem;
  }

  .hard-b239 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .red-d6af {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .red-d6af .button-a9c3 {
    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 */
  .thumbnail_bronze_a5f4 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .heading_7db1 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .secondary-brown-4f84 {
    margin-bottom: 1rem;
  }

  /* Author */
  .last_b3ca {
    flex-direction: column;
  }

  .new-003e {
    flex-direction: column;
  }

  /* Quotes */
  .purple-0427 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .modal_b0c0 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .feature_tall_114f {
    flex-direction: column;
  }

  .feature_tall_114f .button-a9c3 {
    width: 100%;
  }

  /* Version comparison */
  .disabled-120f {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .liquid-f82e {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .search_e0b0 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .widget_4a4d {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .inner_b016,
  .form-2c38,
  .notice_bright_3928,
  .right-05c2,
  .label-blue-8dc9,
  .fluid-2293 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .inner_b016 table,
  .form-2c38 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .label-3ab8 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .prev-d783 {
    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;
  }

  .medium-a536 {
    font-size: 1.25rem !important;
  }

  .tag_72a0 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .column-advanced-b0b2 {
    position: fixed;
  }

  .photo_5c87 {
    padding: 0.625rem 0;
  }

  .detail_medium_d109 img {
    height: 26px;
  }

  .fluid-6744 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .easy-7ad1 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .lower_c498 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .lower_c498 svg {
    width: 18px;
    height: 18px;
  }

  .lower_c498 .hot-58b5 {
    font-size: 0.7rem;
  }

  .lower_c498 .table_paper_818a {
    font-size: 0.65rem;
  }

  .carousel-active-4cbe,
  .east_1b82 {
    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, .prev-d783, .tertiary_baa4, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .iron_b09e {
    padding: 1rem;
  }

  .border-9714 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .preview-over-4aac {
    padding: 0.875rem;
  }

  .center_f643 {
    font-size: 1.25rem;
  }

  .red-d6af .button-a9c3 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .tag_72a0 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .button-a9c3 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .disabled-8793 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .heading_7db1 {
    padding: 1rem;
  }

  .secondary-brown-4f84 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .wrapper_gold_96ad,
  .shadow_stale_270b,
  .wrapper-ec66,
  .easy_f9d6 {
    padding: 1rem;
  }
}

@media print {
  .column-advanced-b0b2,
  .tertiary-bright-f59f,
  .soft-d188,
  .button-a9c3,
  .huge-0ade {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .prev-d783 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.hovered_f20c {
  margin-bottom: 3rem;
  text-align: center;
}

.medium-a536 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.border-old-7e00 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.stone-3db9,
.tag-1576 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.description-038f {
  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;
}

.description-038f:hover {
  transform: translateY(-5px);
}

.description-038f strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.description-038f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.shadow-rough-26d4 {
  margin: 3rem 0;
}

.caption-3d87 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.caption_24ee {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.caption_24ee:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.wood_b7b5 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.mask-c784 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.module_5f23 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.picture-thick-ca1e {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.list_bf7c {
  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;
}

.list_bf7c:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.list_bf7c.overlay-full-cd63 {
  border-left: 4px solid var(--primary-color);
}

.link_48ba {
  flex-shrink: 0;
}

.link_48ba svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.logo-rough-b51e {
  flex: 1;
}

.logo-rough-b51e h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.primary_up_8ba7 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.message_east_2c84,
.tall_15f8,
.card_inner_9978 {
  margin-bottom: 1.5rem;
}

.message_east_2c84 h4,
.tall_15f8 h4,
.card_inner_9978 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.message_east_2c84 ul,
.tall_15f8 ul,
.card_inner_9978 ul {
  list-style: none;
  padding: 0;
}

.message_east_2c84 li,
.tall_15f8 li,
.card_inner_9978 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.message_east_2c84 li:before,
.tall_15f8 li:before,
.card_inner_9978 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.hover-thick-1eb2 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hover-thick-1eb2 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;
}

.hover-thick-1eb2 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.panel-ff30 { margin: 2rem 0; }
.dirty_c5b6 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.dirty_c5b6 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.aside-silver-8b2e p { margin-bottom: 1rem; line-height: 1.7; }
.aside-silver-8b2e strong { color: var(--text-primary); }
.aside-silver-8b2e ul { list-style: none; padding-left: 0; }
.aside-silver-8b2e ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.aside-silver-8b2e ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.highlight-dark-43f4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.selected-14d4 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.selected-14d4:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.steel_a952 { font-size: 3rem; margin-bottom: 1rem; }
.selected-14d4 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.selected-14d4 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.bottom_8f10 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.bottom_8f10 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.complex-ce66 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.thumbnail-ab3a { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.grid-6ada { text-align: center; }
.photo-stone-d17f { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.video-f352 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.hovered_1800 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.easy-50fe { margin: 2rem 0; }
.cold_02d8 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.cold_02d8 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.cold_02d8 p, .cold_02d8 ul { line-height: 1.7; }
.cold_02d8 ul { list-style: none; padding-left: 0; }
.cold_02d8 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.cold_02d8 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.menu_95ad { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.pattern-d2c0 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.lite_2c76 { text-align: center; }
.table_slow_9607 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.solid-508d { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.logo_3c49 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.highlight_1296 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.green-3101 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.green-3101:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.green-3101 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.green-3101 p, .green-3101 ul { line-height: 1.7; }
.green-3101 ul { list-style: none; padding-left: 0; }
.green-3101 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.green-3101 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 3529 */
.promo-block-j9 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.0;
}
