/* ============================================
   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 */
.purple_c68d p,
.input-60d7,
.paper_8bc6,
.accordion_eefd,
.photo_c2d1,
.soft-a6ed,
.container_warm_74e4,
.backdrop_red_cd82 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.label_dim_2081 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.label_dim_2081 > *,
.slider_c3bd,
.purple_c68d,
.orange_d521 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .label_dim_2081 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .label_dim_2081 {
    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 === */
.title_c032 {
  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 */
.title_c032.tertiary_outer_685f {
  box-shadow: var(--shadow-md);
}

.status-96cb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.table-86ff img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.label_paper_ffe7 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.tag-steel-58f3 {
  display: none;
}

/* Hide mobile actions on desktop */
.menu_medium_1187 {
  display: none;
}

.brown_2d9e a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.brown_2d9e a:hover,
.brown_2d9e a.fn-active-f940 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.tooltip-e299 {
  margin-left: 1rem;
}

.search_bba4 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.silver_1f46,
.gas_5091 {
  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;
}

.silver_1f46 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.silver_1f46: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;
}

.gas_5091 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.gas_5091: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;
}

.silver_1f46 svg,
.gas_5091 svg {
  flex-shrink: 0;
}

.card-414f {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.notice-wood-89a4 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.notice-wood-89a4::before,
.notice-wood-89a4::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.notice-wood-89a4::before {
  top: -7px;
}

.notice-wood-89a4::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.backdrop_81ff {
  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 === */
.cool_b75c {
  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);
}

.badge-7098 {
  margin: 0 0 2rem;
  text-align: center;
}

.button-silver-7d52 {
  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;
}

.button-silver-7d52:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.card_mini_81c5 {
  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);
}

.card_mini_81c5 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.purple-7494 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.message_3440 {
  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;
}

.message_3440:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.over_8f7e {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section-pressed-69f4 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.input-ccf1 {
  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);
}

.input-ccf1 .soft_5467 {
  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;
}

.input-ccf1 .soft_5467 svg {
  flex-shrink: 0;
}

.input-ccf1 .thick_b110 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.input-ccf1 .thick_b110: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);
}

.input-ccf1 .rough_d741 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.input-ccf1 .rough_d741: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) {
  .cool_b75c {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .button-silver-7d52 {
    max-width: 100%;
  }

  .purple-7494 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .message_3440 {
    padding: 1rem;
  }

  .over_8f7e {
    font-size: 1.5rem;
  }

  .section-pressed-69f4 {
    font-size: 0.75rem;
  }

  .card_mini_81c5 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .input-ccf1 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .input-ccf1 .soft_5467 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .purple-7494 {
    grid-template-columns: 1fr;
  }
}

.link_short_8b93 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.wrapper-pressed-9631 {
  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 === */
.dropdown-8ab3 {
  margin-bottom: 2.5rem;
}

.narrow_2308 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.link_short_8b93 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.tabs_inner_3920 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.disabled_purple_df98 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.banner_202e {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.texture_black_b60f {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.tabs_liquid_a774 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.photo_active_c5a0 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.detail_large_8431 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.detail_large_8431 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.pattern-2c42 {
  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);
}

.hot_d906 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.huge-8f41 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.article-fixed-a155 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.full_995a {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.huge-074c {
  display: grid;
  gap: 1rem;
}

.outline_thick_adda {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.feature_hard_f20a {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.hero_4866 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.link_bronze_7b1e {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.notice-yellow-2dfe {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.detail-fixed-bebf {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.detail-fixed-bebf p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.input-60d7 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.clean_7065 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.status-2e6c {
  display: grid;
  gap: 2rem;
}

.background-yellow-5e35 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.disabled_purple_df98 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.tabs_inner_3920 {
  flex: 1;
}

.texture_black_b60f {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.texture_black_b60f a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.upper_0e3a {
  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;
}

.tabs_liquid_a774 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.soft-cebb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.soft-cebb span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.card-4305 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.card-4305 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.modal-cf6b {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.modal-cf6b strong {
  display: block;
  margin-bottom: 0.75rem;
}

.modal-cf6b ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal-cf6b li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.easy-767e {
  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 === */
.search_e39a {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.surface_7bb6 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.huge-cf2e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.fast-516b h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.fast-516b ol {
  list-style: none;
  counter-reset: toc-counter;
}

.fast-516b ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.fast-516b 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;
}

.fast-516b ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.fast-516b ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.purple_c68d {
  padding: 3rem 0 5rem;
}

.orange_d521 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.orange_d521.wide_e775 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.paper_8bc6 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.primary-f2bf {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.basic_7dc7 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.basic_7dc7 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.disabled_fixed_d336 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.basic_c56d {
  text-align: center;
}

.sidebar_wood_7be9 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.white-1639 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.active-10a5 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.soft-a6ed {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.accordion_eefd {
  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;
}

.accordion_eefd * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.accordion_eefd:hover {
  box-shadow: var(--shadow-lg);
}

.accordion_eefd.box-159e {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.accordion_eefd h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.accordion_eefd ul {
  margin: 1rem 0;
}

.accordion_eefd li {
  margin-bottom: 0.75rem;
}

.layout-fluid-474f {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.next-b295 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.next-b295 a {
  font-weight: 600;
}

/* === Data Tables === */
.dropdown_7251 {
  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;
}

.dropdown_7251 table {
  width: 100%;
  min-width: 600px;
}

.dropdown_7251 thead {
  background-color: var(--primary-color);
  color: white;
}

.dropdown_7251 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.dropdown_7251 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.dropdown_7251 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.dropdown_7251 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.overlay_78fc {
  list-style: none;
  margin: 1.5rem 0;
}

.overlay_78fc li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.overlay_78fc li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.last-8077::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-f940::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 === */
.menu-mini-4cd7 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.rough-ea89 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.rough-ea89 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.rough-ea89 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.rough-ea89 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.menu-mini-4cd7 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.container_warm_74e4 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.container_warm_74e4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.media_active_4a29 {
  position: relative;
  margin-bottom: 3rem;
}

.paragraph_east_b7a8 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.paragraph_east_b7a8 .summary_thick_59ff {
  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;
}

.logo_cff4 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.logo_cff4 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.logo_cff4 ul {
  margin: 1rem 0;
}

.logo_cff4 li {
  margin-bottom: 0.75rem;
}

.layout_5e67 {
  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 === */
.popup_1753 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.popup_1753 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.notice_inner_7022 {
  list-style: none;
  margin: 1.5rem 0;
}

.notice_inner_7022 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.notice_inner_7022 a {
  font-weight: 600;
}

.left-dd02 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.backdrop_red_cd82 {
  margin: 2.5rem 0;
}

.iron_b781 {
  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;
}

.iron_b781:hover {
  box-shadow: var(--shadow-lg);
}

.iron_b781.up-fdf5 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.out-5966 {
  flex-shrink: 0;
}

.out-5966 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);
}

.caption_d00f h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.copper-7cf4,
.notification-f3ea,
.tiny-79c0 {
  width: 100%;
  margin: 1.5rem 0;
}

.cool_98cd {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.cool_98cd strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.wide_a55b {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.wide_a55b strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.search-wide-1ff4 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.search-wide-1ff4 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.grid-4337 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.lite-7e9a {
  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;
}

.lite-7e9a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.lite-7e9a.white_4d6e {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.lite-7e9a .out-b4a0 {
  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;
}

.lite-7e9a h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.pagination-c906 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.current_e5f6 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.current_e5f6 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.wood-6038 {
  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 === */
.soft_5467 {
  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;
}

.thick_b110 {
  background-color: var(--primary-color);
  color: white;
}

.thick_b110:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.rough_d741 {
  background-color: var(--text-secondary);
  color: white;
}

.rough_d741:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.top_a224 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.top_a224:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.tabs-2ef9 {
  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;
}

.tabs-2ef9:hover {
  background-color: var(--primary-dark);
}

.status-steel-8cea {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.tag_tiny_7895 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.up-ddd8 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.feature-fixed-4908 {
  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 === */
.secondary-ee74 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.main_f8d1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.main_f8d1 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.message_fluid_6fd4 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.media-pink-d7fc {
  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;
}

.wide_89b0 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.new_f761 {
  list-style: none;
  counter-reset: rank-counter;
}

.new_f761 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.new_f761 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;
}

.inner-f9c9 {
  list-style: none;
}

.inner-f9c9 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.nav_7caa {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.wrapper-df9a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.wrapper-df9a .section-432c {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.wrapper-df9a .filter_45a4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.in_4f74 {
  margin-top: 3rem;
}

.pattern_b1e2 {
  width: 100%;
}

.tertiary_right_2e94 {
  background-color: #fef3c7;
}

.smooth_a004 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.article_gas_b965 {
  margin: 3rem 0;
}

.center_cd7d {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.active-7168 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.active-7168:hover {
  box-shadow: var(--shadow-lg);
}

.active-7168.menu_cold_4c76 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.feature-a1d3 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.dim_a4a7 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.dim_a4a7 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.table-dynamic-e963 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.active-7168 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.texture-right-d4ef {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.badge-1200 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.sort-aaaf {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.active-hard-6358 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.primary_fresh_b655 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.column_4696 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.white_4c9c {
  max-width: 900px;
  margin: 0 auto;
}

.silver-0e20 {
  margin: 2rem 0;
}

.medium_01f1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.medium_01f1 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.medium_01f1 summary::-webkit-details-marker {
  display: none;
}

.medium_01f1 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.main-paper-1f78 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.medium_01f1[open] .main-paper-1f78 {
  transform: rotate(45deg);
}

.image_75ce {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.image_75ce p:last-child {
  margin-bottom: 0;
}

.highlight_outer_6513 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.gradient-d264 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.solid_fbd4 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.solid_fbd4 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.solid_fbd4 .soft_5467 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.info_action_f15b {
  max-width: 900px;
  margin: 0 auto;
}

.modal_fast_91a9 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.gradient-next-4c20 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.gradient-next-4c20.fn-success-f940 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.stale-120d {
  font-size: 3rem;
  line-height: 1;
}

.wide_f112 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.surface-7652 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.orange_b123,
.narrow_13ea {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.orange_b123 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.narrow_13ea h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.tall_da78,
.accent_center_394a {
  margin: 1.5rem 0;
}

.tall_da78 li,
.accent_center_394a li {
  margin-bottom: 1rem;
}

.detail-fluid-02b7 {
  margin: 3rem 0;
}

.logo_1104 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.logo_1104 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.logo_1104 ol {
  margin: 1rem 0;
}

.logo_1104 li {
  margin-bottom: 0.75rem;
}

.text_daf1 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.heading_last_485b {
  margin: 2rem 0;
}

.label_hot_29bf {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.panel_bab9 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.thick-05b4 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.row-cool-84f8 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.thick_3fa1 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.focus-solid-d6ca {
  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;
}

.focus-solid-d6ca img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.banner_202e {
  flex: 1;
}

.banner_202e h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.east_6560 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.picture_fac9 p {
  margin-bottom: 1rem;
}

.pro_174e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.photo-small-d1e4 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.main-iron-2d3b {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.main-iron-2d3b a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.gradient_center_133f h3 {
  margin-bottom: 1.5rem;
}

.table_lite_0d72 {
  display: grid;
  gap: 2rem;
}

.orange-7583 {
  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;
}

.orange-7583 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.orange-7583 h4 {
  margin: 0 0 0.25rem;
}

.orange-7583 p {
  margin: 0;
  font-size: 0.9375rem;
}

.progress_2ef7 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.glass-fcf6 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.glass-fcf6 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.glass-fcf6 ul {
  margin: 1.5rem 0;
}

.glass-fcf6 li {
  margin-bottom: 0.75rem;
}

.thumbnail_995a {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.north-dfef {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.slow-1937 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.detail_ae00 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.detail_ae00 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.first_73fa {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.first_73fa a {
  color: rgba(255, 255, 255, 0.8);
}

.box_2eb0 {
  list-style: none;
}

.box_2eb0 li {
  margin-bottom: 0.75rem;
}

.box_2eb0 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.box_2eb0 a:hover {
  color: white;
}

.accordion-d0d1 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.hero-7c43 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.active-1637 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.progress-lower-0ca7 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.solid_6d84 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .label_dim_2081 {
    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;
  }

  .hidden-03b7 {
    font-size: 1.5rem !important;
  }

  .narrow_2308 {
    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 */
  .accordion_eefd,
  .photo_c2d1,
  .logo_cff4,
  .caption_d00f,
  .feature-a1d3,
  .active-7168,
  .image_75ce,
  .card_mini_81c5,
  .input-60d7,
  .paper_8bc6 {
    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 */
  .link_short_8b93 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .tabs_inner_3920 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .disabled_purple_df98 {
    flex-shrink: 0;
  }

  .banner_202e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .texture_black_b60f,
  .tabs_liquid_a774 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .tabs_liquid_a774 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .label_paper_ffe7 {
    display: none;
  }

  /* Show mobile actions */
  .menu_medium_1187 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .wide-2294 {
    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;
  }

  .wide-2294 svg {
    flex-shrink: 0;
  }

  .wide-2294 .avatar-f6d5 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .wide-2294 .sidebar_6234 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .footer_2e6e {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .full_c196 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .wide-2294:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .tag-steel-58f3 {
    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;
  }

  .tag-steel-58f3.fn-active-f940 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .tag-steel-58f3 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .tag-steel-58f3 li:last-child {
    border-bottom: none;
  }

  .tag-steel-58f3 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .brown_2d9e {
    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;
  }

  .brown_2d9e li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .brown_2d9e li:last-child {
    border-bottom: none;
  }

  .brown_2d9e a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .tooltip-e299 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .search_bba4 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .silver_1f46,
  .gas_5091 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .silver_1f46 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .gas_5091 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .brown_2d9e.fn-active-f940 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .card-414f {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .title_c032 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .status-96cb {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .backdrop_81ff {
    margin-top: 0;
  }

  /* Hero section */
  .backdrop_81ff {
    padding: 2rem 0 1.5rem;
  }

  .narrow_2308 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .input-60d7 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .cool_b75c {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .button-silver-7d52 {
    max-width: 100%;
    border-radius: 8px;
  }

  .purple-7494 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .message_3440 {
    padding: 1rem;
  }

  .over_8f7e {
    font-size: 1.5rem;
  }

  .section-pressed-69f4 {
    font-size: 0.75rem;
  }

  .card_mini_81c5 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .input-ccf1 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .input-ccf1 .soft_5467 {
    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 */
  .huge-cf2e {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .iron_b781 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .out-5966 {
    margin-bottom: 1rem;
  }

  /* Author */
  .background-yellow-5e35 {
    flex-direction: column;
  }

  .focus-solid-d6ca {
    flex-direction: column;
  }

  /* Quotes */
  .feature-a1d3 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .surface-7652 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .row-cool-84f8 {
    flex-direction: column;
  }

  .row-cool-84f8 .soft_5467 {
    width: 100%;
  }

  /* Version comparison */
  .grid-4337 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .secondary-ee74 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .slow-1937 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .active-1637 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .dropdown_7251,
  .notification-f3ea,
  .hidden-fast-0433,
  .pattern_b1e2,
  .copper-7cf4,
  .tiny-79c0 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .dropdown_7251 table,
  .notification-f3ea table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .wood-6038 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .label_dim_2081 {
    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;
  }

  .hidden-03b7 {
    font-size: 1.25rem !important;
  }

  .narrow_2308 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .title_c032 {
    position: fixed;
  }

  .status-96cb {
    padding: 0.625rem 0;
  }

  .table-86ff img {
    height: 26px;
  }

  .brown_2d9e {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .tag-steel-58f3 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .wide-2294 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .wide-2294 svg {
    width: 18px;
    height: 18px;
  }

  .wide-2294 .avatar-f6d5 {
    font-size: 0.7rem;
  }

  .wide-2294 .sidebar_6234 {
    font-size: 0.65rem;
  }

  .silver_1f46,
  .gas_5091 {
    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, .label_dim_2081, .slider_c3bd, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .cool_b75c {
    padding: 1rem;
  }

  .purple-7494 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .message_3440 {
    padding: 0.875rem;
  }

  .over_8f7e {
    font-size: 1.25rem;
  }

  .input-ccf1 .soft_5467 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .narrow_2308 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .soft_5467 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .status-steel-8cea {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .iron_b781 {
    padding: 1rem;
  }

  .out-5966 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .accordion_eefd,
  .tag_dark_da06,
  .gold_b345,
  .container-d4bf {
    padding: 1rem;
  }
}

@media print {
  .title_c032,
  .search_e39a,
  .card-414f,
  .soft_5467,
  .north-dfef {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .label_dim_2081 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.detail_narrow_5d36 {
  margin-bottom: 3rem;
  text-align: center;
}

.hidden-03b7 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.detail-3b68 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.complex_78d0,
.feature_current_73d6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.main_8d08 {
  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;
}

.main_8d08:hover {
  transform: translateY(-5px);
}

.main_8d08 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.main_8d08 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.paragraph_8769 {
  margin: 3rem 0;
}

.stale_6ab9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.pink-2412 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.pink-2412:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.row-5fa5 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tabs-c5be {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.paragraph-ab74 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.surface_8518 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.breadcrumb-steel-3841 {
  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;
}

.breadcrumb-steel-3841:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.breadcrumb-steel-3841.border-8364 {
  border-left: 4px solid var(--primary-color);
}

.silver_d755 {
  flex-shrink: 0;
}

.silver_d755 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.avatar-baeb {
  flex: 1;
}

.avatar-baeb h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.sidebar_selected_9a44 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.secondary_first_04b4,
.fluid-5040,
.detail-7d95 {
  margin-bottom: 1.5rem;
}

.secondary_first_04b4 h4,
.fluid-5040 h4,
.detail-7d95 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.secondary_first_04b4 ul,
.fluid-5040 ul,
.detail-7d95 ul {
  list-style: none;
  padding: 0;
}

.secondary_first_04b4 li,
.fluid-5040 li,
.detail-7d95 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.secondary_first_04b4 li:before,
.fluid-5040 li:before,
.detail-7d95 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.left_ad8a {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.left_ad8a 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;
}

.left_ad8a a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.carousel_71ad { margin: 2rem 0; }
.mask-iron-f5c9 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.mask-iron-f5c9 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.label_tall_2c24 p { margin-bottom: 1rem; line-height: 1.7; }
.label_tall_2c24 strong { color: var(--text-primary); }
.label_tall_2c24 ul { list-style: none; padding-left: 0; }
.label_tall_2c24 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.label_tall_2c24 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.hard-a11a { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.over_acf5 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.over_acf5:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.input-inner-31fa { font-size: 3rem; margin-bottom: 1rem; }
.over_acf5 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.over_acf5 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.heading_82f6 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.heading_82f6 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.preview-a71f { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.widget-focused-88f6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.fresh-681c { text-align: center; }
.hero-dbf8 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.inner_22f5 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.small_ea08 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.glass_e5c5 { margin: 2rem 0; }
.picture-purple-fffd { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.picture-purple-fffd h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.picture-purple-fffd p, .picture-purple-fffd ul { line-height: 1.7; }
.picture-purple-fffd ul { list-style: none; padding-left: 0; }
.picture-purple-fffd ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.picture-purple-fffd ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.box-986b { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.brown_97c3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.liquid-024c { text-align: center; }
.article-d386 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.north-bb0a { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.overlay_south_ae47 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.hover_5044 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.current_1a11 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.current_1a11:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.current_1a11 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.current_1a11 p, .current_1a11 ul { line-height: 1.7; }
.current_1a11 ul { list-style: none; padding-left: 0; }
.current_1a11 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.current_1a11 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 31ad */
.promo-block-h5 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.3;
}
