/* ============================================
   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 */
.north-d3cf p,
.hot_7f60,
.advanced_c666,
.video-gold-ea0e,
.layout_dim_9ae6,
.heading-f43f,
.focus-efb5,
.caption_a342 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.hover_1c4e {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.hover_1c4e > *,
.modal-static-fe13,
.north-d3cf,
.brown-004b {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .hover_1c4e {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .hover_1c4e {
    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 === */
.accent-over-3cef {
  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 */
.accent-over-3cef.hard-a621 {
  box-shadow: var(--shadow-md);
}

.detail_ee2a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.box_3358 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.narrow-6f78 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.filter-7dba {
  display: none;
}

/* Hide mobile actions on desktop */
.narrow-71cc {
  display: none;
}

.link_d69a a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.link_d69a a:hover,
.link_d69a a.fn-active-7b5b {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.summary_bc07 {
  margin-left: 1rem;
}

.blue-64d8 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.banner-cdf4,
.avatar-soft-56ce {
  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;
}

.banner-cdf4 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.banner-cdf4: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;
}

.avatar-soft-56ce {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.avatar-soft-56ce: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;
}

.banner-cdf4 svg,
.avatar-soft-56ce svg {
  flex-shrink: 0;
}

.image_b8db {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.widget-8353 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.widget-8353::before,
.widget-8353::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.widget-8353::before {
  top: -7px;
}

.widget-8353::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.pattern-out-6b08 {
  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 === */
.title-short-2790 {
  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);
}

.media_0a78 {
  margin: 0 0 2rem;
  text-align: center;
}

.center_f3bb {
  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;
}

.center_f3bb:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.easy_9108 {
  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);
}

.easy_9108 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.card_easy_474a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.hover_full_5dd9 {
  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;
}

.hover_full_5dd9:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.narrow-0df6 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.copper_9877 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.old-4b26 {
  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);
}

.old-4b26 .hard-6bcf {
  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;
}

.old-4b26 .hard-6bcf svg {
  flex-shrink: 0;
}

.old-4b26 .up_5775 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.old-4b26 .up_5775: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);
}

.old-4b26 .picture_purple_e6fb {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.old-4b26 .picture_purple_e6fb: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) {
  .title-short-2790 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .center_f3bb {
    max-width: 100%;
  }

  .card_easy_474a {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hover_full_5dd9 {
    padding: 1rem;
  }

  .narrow-0df6 {
    font-size: 1.5rem;
  }

  .copper_9877 {
    font-size: 0.75rem;
  }

  .easy_9108 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .old-4b26 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .old-4b26 .hard-6bcf {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .card_easy_474a {
    grid-template-columns: 1fr;
  }
}

.chip-abae {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.secondary_lower_af10 {
  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 === */
.table-action-76c2 {
  margin-bottom: 2.5rem;
}

.wrapper_mini_9a1c {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.chip-abae {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.form_smooth_6251 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon_middle_022e {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.input-6fae {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fast_774d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.section-5e40 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.search-e0a6 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.active_dark_214b {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.active_dark_214b svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.complex-3826 {
  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);
}

.section-center-d0cc {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.soft-eaec {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.lower-12a7 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.pagination-ec1e {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.progress-ca2c {
  display: grid;
  gap: 1rem;
}

.black-b3a2 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.left-1e23 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.text_up_117b {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.widget_42e8 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.accordion-first-b128 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.medium-f36f {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.medium-f36f p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.hot_7f60 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.detail_orange_d41c {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.container_smooth_572f {
  display: grid;
  gap: 2rem;
}

.medium_a845 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.icon_middle_022e {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.form_smooth_6251 {
  flex: 1;
}

.fast_774d {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.fast_774d a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.nav_6200 {
  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;
}

.section-5e40 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.summary_tall_3481 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.summary_tall_3481 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.cool_8834 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.cool_8834 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.slider-9e66 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.slider-9e66 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.slider-9e66 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slider-9e66 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.notice-7d82 {
  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 === */
.list-bd0a {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.thumbnail-24bc {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.dropdown-b02e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.shade-cc9f h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.shade-cc9f ol {
  list-style: none;
  counter-reset: toc-counter;
}

.shade-cc9f ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.shade-cc9f 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;
}

.shade-cc9f ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.shade-cc9f ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.north-d3cf {
  padding: 3rem 0 5rem;
}

.brown-004b {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.brown-004b.dark-4f96 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.advanced_c666 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.content-blue-f75a {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.aside-3ff5 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.aside-3ff5 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.grid_stone_326f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.east-f27f {
  text-align: center;
}

.plasma-9c46 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.upper-ba9c {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.summary_f70c {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.heading-f43f {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.video-gold-ea0e {
  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;
}

.video-gold-ea0e * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.video-gold-ea0e:hover {
  box-shadow: var(--shadow-lg);
}

.video-gold-ea0e.west-8a4c {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.video-gold-ea0e h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.video-gold-ea0e ul {
  margin: 1rem 0;
}

.video-gold-ea0e li {
  margin-bottom: 0.75rem;
}

.tiny_ae42 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.heading_c456 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.heading_c456 a {
  font-weight: 600;
}

/* === Data Tables === */
.medium_e840 {
  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;
}

.medium_e840 table {
  width: 100%;
  min-width: 600px;
}

.medium_e840 thead {
  background-color: var(--primary-color);
  color: white;
}

.medium_e840 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.medium_e840 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.medium_e840 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.medium_e840 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.filter-2462 {
  list-style: none;
  margin: 1.5rem 0;
}

.filter-2462 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.filter-2462 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.row-bronze-0873::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-7b5b::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 === */
.mask-2a6b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.notice-02a1 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.notice-02a1 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.notice-02a1 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.notice-02a1 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.mask-2a6b blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.focus-efb5 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.focus-efb5::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.nav_old_d4c9 {
  position: relative;
  margin-bottom: 3rem;
}

.bronze-12ea {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.bronze-12ea .avatar_complex_ead6 {
  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;
}

.fast_8392 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.fast_8392 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.fast_8392 ul {
  margin: 1rem 0;
}

.fast_8392 li {
  margin-bottom: 0.75rem;
}

.hidden_steel_241a {
  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 === */
.left_bbae {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.left_bbae h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.picture_hard_37b7 {
  list-style: none;
  margin: 1.5rem 0;
}

.picture_hard_37b7 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.picture_hard_37b7 a {
  font-weight: 600;
}

.sidebar-3924 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.caption_a342 {
  margin: 2.5rem 0;
}

.pagination-active-7b8c {
  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;
}

.pagination-active-7b8c:hover {
  box-shadow: var(--shadow-lg);
}

.pagination-active-7b8c.element_stale_dee9 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.title_697c {
  flex-shrink: 0;
}

.title_697c 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);
}

.notification-current-a8f8 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.filter_wood_fb4b,
.modal_39e2,
.hot_2c42 {
  width: 100%;
  margin: 1.5rem 0;
}

.column-liquid-70c3 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.column-liquid-70c3 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.shade_cool_6a10 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.shade_cool_6a10 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.mask-15e6 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.mask-15e6 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.shade_68ad {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.gas-deb7 {
  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;
}

.gas-deb7:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.gas-deb7.primary_tiny_2a22 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.gas-deb7 .tag-in-588f {
  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;
}

.gas-deb7 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.breadcrumb-934f {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.button_6f23 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.button_6f23 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.chip-89ba {
  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 === */
.hard-6bcf {
  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;
}

.up_5775 {
  background-color: var(--primary-color);
  color: white;
}

.up_5775:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.picture_purple_e6fb {
  background-color: var(--text-secondary);
  color: white;
}

.picture_purple_e6fb:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.aside-6160 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.aside-6160:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.complex-e900 {
  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;
}

.complex-e900:hover {
  background-color: var(--primary-dark);
}

.secondary-e4b7 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.gold-0f63 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.status-c942 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.caption-cool-74a9 {
  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 === */
.article-soft-18ae {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.gas_8266 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.gas_8266 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.panel-up-b01e {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.east_59ff {
  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;
}

.west_8ad9 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.grid_pressed_b429 {
  list-style: none;
  counter-reset: rank-counter;
}

.grid_pressed_b429 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.grid_pressed_b429 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;
}

.tag-over-a883 {
  list-style: none;
}

.tag-over-a883 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.video_tall_e2a2 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.item-fluid-7123 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.item-fluid-7123 .photo_current_b51f {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.item-fluid-7123 .card_c9f8 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.status_fcb8 {
  margin-top: 3rem;
}

.advanced_b64a {
  width: 100%;
}

.article_fluid_a4b6 {
  background-color: #fef3c7;
}

.brown_e087 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.column_out_b45b {
  margin: 3rem 0;
}

.gradient_ed4d {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.component_lite_11aa {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.component_lite_11aa:hover {
  box-shadow: var(--shadow-lg);
}

.component_lite_11aa.notice_00da {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.main_upper_029c {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.light_91fc strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.light_91fc span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.gallery-c1ba {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.component_lite_11aa blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.overlay_tall_e937 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.accordion_light_5c5a {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.bottom_780e {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.aside-upper-1bf4 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.status_8b7e {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.selected-9498 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.copper_485b {
  max-width: 900px;
  margin: 0 auto;
}

.summary-5f5f {
  margin: 2rem 0;
}

.preview-purple-9b37 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.preview-purple-9b37 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.preview-purple-9b37 summary::-webkit-details-marker {
  display: none;
}

.preview-purple-9b37 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.thumbnail-c6f7 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.preview-purple-9b37[open] .thumbnail-c6f7 {
  transform: rotate(45deg);
}

.blue_2344 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.blue_2344 p:last-child {
  margin-bottom: 0;
}

.logo_medium_fba1 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.secondary-thick-192d {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.column_7ea5 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.column_7ea5 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.column_7ea5 .hard-6bcf {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.content-gas-cb48 {
  max-width: 900px;
  margin: 0 auto;
}

.carousel_9dc1 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.prev-d625 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.prev-d625.fn-success-7b5b {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.hidden-wood-523f {
  font-size: 3rem;
  line-height: 1;
}

.message-dark-6507 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.wide-49ee {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.west_77d9,
.prev_e572 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.west_77d9 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.prev_e572 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.menu_aff1,
.wood-05ff {
  margin: 1.5rem 0;
}

.menu_aff1 li,
.wood-05ff li {
  margin-bottom: 1rem;
}

.focused_1be9 {
  margin: 3rem 0;
}

.row-790d {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.row-790d h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.row-790d ol {
  margin: 1rem 0;
}

.row-790d li {
  margin-bottom: 0.75rem;
}

.outer-be57 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.icon_e599 {
  margin: 2rem 0;
}

.box_dim_76ee {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.detail-lite-4c01 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.article-dim-e2fc {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.dropdown_bronze_5f46 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.preview_adfd {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.center_052c {
  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;
}

.center_052c img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.input-6fae {
  flex: 1;
}

.input-6fae h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.focus_fluid_0eb3 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.article_in_ed26 p {
  margin-bottom: 1rem;
}

.glass-9eb2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.thick_2f09 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.info_ac39 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.info_ac39 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.mask-last-c6eb h3 {
  margin-bottom: 1.5rem;
}

.link_4579 {
  display: grid;
  gap: 2rem;
}

.hover-917b {
  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;
}

.hover-917b img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.hover-917b h4 {
  margin: 0 0 0.25rem;
}

.hover-917b p {
  margin: 0;
  font-size: 0.9375rem;
}

.summary_pro_b490 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.article_tall_d1b5 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.article_tall_d1b5 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.article_tall_d1b5 ul {
  margin: 1.5rem 0;
}

.article_tall_d1b5 li {
  margin-bottom: 0.75rem;
}

.layout-west-dcfc {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.notice_8d26 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.status-steel-7261 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.content-c341 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.content-c341 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.focus_9f80 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.focus_9f80 a {
  color: rgba(255, 255, 255, 0.8);
}

.pagination-gas-8bd7 {
  list-style: none;
}

.pagination-gas-8bd7 li {
  margin-bottom: 0.75rem;
}

.pagination-gas-8bd7 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.pagination-gas-8bd7 a:hover {
  color: white;
}

.banner_mini_6e88 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.overlay_016f {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.label_814b {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.tooltip_current_e56b {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.active_motion_4951 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .hover_1c4e {
    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;
  }

  .shadow-over-5510 {
    font-size: 1.5rem !important;
  }

  .wrapper_mini_9a1c {
    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 */
  .video-gold-ea0e,
  .layout_dim_9ae6,
  .fast_8392,
  .notification-current-a8f8,
  .main_upper_029c,
  .component_lite_11aa,
  .blue_2344,
  .easy_9108,
  .hot_7f60,
  .advanced_c666 {
    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 */
  .chip-abae {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .form_smooth_6251 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .icon_middle_022e {
    flex-shrink: 0;
  }

  .input-6fae {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .fast_774d,
  .section-5e40 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .section-5e40 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .narrow-6f78 {
    display: none;
  }

  /* Show mobile actions */
  .narrow-71cc {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .box_active_c668 {
    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;
  }

  .box_active_c668 svg {
    flex-shrink: 0;
  }

  .box_active_c668 .nav-silver-465e {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .box_active_c668 .basic_0d62 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .label_hovered_fa87 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .panel_a049 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .box_active_c668:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .filter-7dba {
    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;
  }

  .filter-7dba.fn-active-7b5b {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .filter-7dba li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .filter-7dba li:last-child {
    border-bottom: none;
  }

  .filter-7dba a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .link_d69a {
    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;
  }

  .link_d69a li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .link_d69a li:last-child {
    border-bottom: none;
  }

  .link_d69a a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .summary_bc07 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .blue-64d8 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .banner-cdf4,
  .avatar-soft-56ce {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .banner-cdf4 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .avatar-soft-56ce {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .link_d69a.fn-active-7b5b {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .image_b8db {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .accent-over-3cef {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .detail_ee2a {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .pattern-out-6b08 {
    margin-top: 0;
  }

  /* Hero section */
  .pattern-out-6b08 {
    padding: 2rem 0 1.5rem;
  }

  .wrapper_mini_9a1c {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .hot_7f60 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .title-short-2790 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .center_f3bb {
    max-width: 100%;
    border-radius: 8px;
  }

  .card_easy_474a {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hover_full_5dd9 {
    padding: 1rem;
  }

  .narrow-0df6 {
    font-size: 1.5rem;
  }

  .copper_9877 {
    font-size: 0.75rem;
  }

  .easy_9108 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .old-4b26 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .old-4b26 .hard-6bcf {
    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 */
  .dropdown-b02e {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .pagination-active-7b8c {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .title_697c {
    margin-bottom: 1rem;
  }

  /* Author */
  .medium_a845 {
    flex-direction: column;
  }

  .center_052c {
    flex-direction: column;
  }

  /* Quotes */
  .main_upper_029c {
    flex-direction: column;
  }

  /* Pros/Cons */
  .wide-49ee {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .dropdown_bronze_5f46 {
    flex-direction: column;
  }

  .dropdown_bronze_5f46 .hard-6bcf {
    width: 100%;
  }

  /* Version comparison */
  .shade_68ad {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .article-soft-18ae {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .status-steel-7261 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .label_814b {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .medium_e840,
  .modal_39e2,
  .brown-cff8,
  .advanced_b64a,
  .filter_wood_fb4b,
  .hot_2c42 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .medium_e840 table,
  .modal_39e2 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .chip-89ba {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hover_1c4e {
    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;
  }

  .shadow-over-5510 {
    font-size: 1.25rem !important;
  }

  .wrapper_mini_9a1c {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .accent-over-3cef {
    position: fixed;
  }

  .detail_ee2a {
    padding: 0.625rem 0;
  }

  .box_3358 img {
    height: 26px;
  }

  .link_d69a {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .filter-7dba {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .box_active_c668 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .box_active_c668 svg {
    width: 18px;
    height: 18px;
  }

  .box_active_c668 .nav-silver-465e {
    font-size: 0.7rem;
  }

  .box_active_c668 .basic_0d62 {
    font-size: 0.65rem;
  }

  .banner-cdf4,
  .avatar-soft-56ce {
    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, .hover_1c4e, .modal-static-fe13, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .title-short-2790 {
    padding: 1rem;
  }

  .card_easy_474a {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hover_full_5dd9 {
    padding: 0.875rem;
  }

  .narrow-0df6 {
    font-size: 1.25rem;
  }

  .old-4b26 .hard-6bcf {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .wrapper_mini_9a1c {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .hard-6bcf {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .secondary-e4b7 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .pagination-active-7b8c {
    padding: 1rem;
  }

  .title_697c span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .video-gold-ea0e,
  .light-6fb8,
  .grid-narrow-6468,
  .upper_19e3 {
    padding: 1rem;
  }
}

@media print {
  .accent-over-3cef,
  .list-bd0a,
  .image_b8db,
  .hard-6bcf,
  .notice_8d26 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .hover_1c4e {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.last_ff3d {
  margin-bottom: 3rem;
  text-align: center;
}

.shadow-over-5510 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.advanced_26f0 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.clean_965c,
.right_1eec {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.next_1864 {
  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;
}

.next_1864:hover {
  transform: translateY(-5px);
}

.next_1864 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.next_1864 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.heading-d3e7 {
  margin: 3rem 0;
}

.content-solid-adaf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.full_f4cb {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.full_f4cb:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.bronze-5d25 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.label_3b6d {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.shade_84c1 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.progress-2b5f {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.accent_yellow_eedd {
  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;
}

.accent_yellow_eedd:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.accent_yellow_eedd.notification-prev-ffee {
  border-left: 4px solid var(--primary-color);
}

.focus-aff2 {
  flex-shrink: 0;
}

.focus-aff2 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.first-441f {
  flex: 1;
}

.first-441f h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.glass_67e9 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.static-7685,
.inner_4462,
.middle-0d2e {
  margin-bottom: 1.5rem;
}

.static-7685 h4,
.inner_4462 h4,
.middle-0d2e h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.static-7685 ul,
.inner_4462 ul,
.middle-0d2e ul {
  list-style: none;
  padding: 0;
}

.static-7685 li,
.inner_4462 li,
.middle-0d2e li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.static-7685 li:before,
.inner_4462 li:before,
.middle-0d2e li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.shade_out_a5e8 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.shade_out_a5e8 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;
}

.shade_out_a5e8 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.heading_west_3c51 { margin: 2rem 0; }
.tooltip-7d57 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.tooltip-7d57 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.upper-e993 p { margin-bottom: 1rem; line-height: 1.7; }
.upper-e993 strong { color: var(--text-primary); }
.upper-e993 ul { list-style: none; padding-left: 0; }
.upper-e993 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.upper-e993 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.badge-a761 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.banner-2434 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.banner-2434:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.search_8576 { font-size: 3rem; margin-bottom: 1rem; }
.banner-2434 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.banner-2434 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.mask-92d6 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.mask-92d6 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.border-8e78 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.texture_dim_864d { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.huge_7452 { text-align: center; }
.table-old-ece2 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.west-49a0 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.summary_3ca2 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.pagination-cold-3180 { margin: 2rem 0; }
.dynamic-7038 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.dynamic-7038 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.dynamic-7038 p, .dynamic-7038 ul { line-height: 1.7; }
.dynamic-7038 ul { list-style: none; padding-left: 0; }
.dynamic-7038 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.dynamic-7038 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.description-c3f4 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.overlay_fcec { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.prev_5542 { text-align: center; }
.sort-huge-c3fd { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.center_a8b3 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.gallery-78c2 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.gallery-d719 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.tertiary-bcfd { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.tertiary-bcfd:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.tertiary-bcfd h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.tertiary-bcfd p, .tertiary-bcfd ul { line-height: 1.7; }
.tertiary-bcfd ul { list-style: none; padding-left: 0; }
.tertiary-bcfd ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.tertiary-bcfd ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 2e36 */
.widget-item-z6 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.3;
}
