/* ============================================
   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 */
.hard-48b0 p,
.block-dirty-f12d,
.rough_da56,
.pagination-9308,
.video_b193,
.huge-310c,
.rough_8734,
.prev_0711 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.light_862e {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.light_862e > *,
.layout_48f2,
.hard-48b0,
.panel_67e4 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .light_862e {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .light_862e {
    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 === */
.input_fixed_b411 {
  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 */
.input_fixed_b411.iron_4cd2 {
  box-shadow: var(--shadow-md);
}

.dynamic_68e3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.fixed_3092 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.detail_68b6 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.center_f3ae {
  display: none;
}

/* Hide mobile actions on desktop */
.nav-complex-75bb {
  display: none;
}

.hover-aae1 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.hover-aae1 a:hover,
.hover-aae1 a.fn-active-ab69 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.outline_full_9b89 {
  margin-left: 1rem;
}

.silver_d48a {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.link-97d7,
.east-e7a7 {
  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;
}

.link-97d7 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.link-97d7:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a8a 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transform: translateY(-1px);
  text-decoration: none;
}

.east-e7a7 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.east-e7a7: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;
}

.link-97d7 svg,
.east-e7a7 svg {
  flex-shrink: 0;
}

.grid_huge_04fb {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.pattern-medium-c329 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.pattern-medium-c329::before,
.pattern-medium-c329::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.pattern-medium-c329::before {
  top: -7px;
}

.pattern-medium-c329::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.image-4828 {
  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 === */
.label_7b66 {
  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);
}

.selected-0c60 {
  margin: 0 0 2rem;
  text-align: center;
}

.upper-8363 {
  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;
}

.upper-8363:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.focus-2546 {
  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);
}

.focus-2546 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.footer-62e9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.backdrop-3c4b {
  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;
}

.backdrop-3c4b:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.out-b811 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.detail-0538 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.backdrop_pressed_76d3 {
  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);
}

.backdrop_pressed_76d3 .first-dcbc {
  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;
}

.backdrop_pressed_76d3 .first-dcbc svg {
  flex-shrink: 0;
}

.backdrop_pressed_76d3 .icon_3fc1 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.backdrop_pressed_76d3 .icon_3fc1: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);
}

.backdrop_pressed_76d3 .chip-cfec {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.backdrop_pressed_76d3 .chip-cfec: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) {
  .label_7b66 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .upper-8363 {
    max-width: 100%;
  }

  .footer-62e9 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .backdrop-3c4b {
    padding: 1rem;
  }

  .out-b811 {
    font-size: 1.5rem;
  }

  .detail-0538 {
    font-size: 0.75rem;
  }

  .focus-2546 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .backdrop_pressed_76d3 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .backdrop_pressed_76d3 .first-dcbc {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .footer-62e9 {
    grid-template-columns: 1fr;
  }
}

.info-focused-202d {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.bronze-cb7b {
  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 === */
.gallery_green_3737 {
  margin-bottom: 2.5rem;
}

.south_7087 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.info-focused-202d {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.silver-577e {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.banner-72e8 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.banner-current-6916 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.under-7b03 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.main-orange-083e {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.bottom_b6e2 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.panel-white-a0e2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.panel-white-a0e2 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.tabs_c9da {
  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);
}

.hover_blue_2a9c {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.media_pro_9877 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.action_2d57 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.icon_988d {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.section_up_1dd4 {
  display: grid;
  gap: 1rem;
}

.article_cool_e602 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.image_first_50c8 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.layout-brown-f335 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.accent-ee48 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.hero-ec19 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.large-22fa {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.large-22fa p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.block-dirty-f12d {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.solid_f90c {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.overlay_32f9 {
  display: grid;
  gap: 2rem;
}

.element-prev-5f3d {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.banner-72e8 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.silver-577e {
  flex: 1;
}

.under-7b03 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.under-7b03 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.backdrop-220f {
  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;
}

.main-orange-083e {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.tooltip-f661 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.tooltip-f661 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.hard-9100 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.hard-9100 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.lite-f01e {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.lite-f01e strong {
  display: block;
  margin-bottom: 0.75rem;
}

.lite-f01e ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lite-f01e li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.selected-1691 {
  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 === */
.accent_ba91 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.top-71ee {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.column_5652 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.thumbnail-next-f651 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.thumbnail-next-f651 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.thumbnail-next-f651 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.thumbnail-next-f651 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;
}

.thumbnail-next-f651 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.thumbnail-next-f651 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.hard-48b0 {
  padding: 3rem 0 5rem;
}

.panel_67e4 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.panel_67e4.element_left_1d7e {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.rough_da56 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.purple-d569 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.media_375b {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.media_375b h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.active-fd29 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.focused_5ee1 {
  text-align: center;
}

.element_green_435c {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.modal_ef52 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.texture_action_8e9e {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.huge-310c {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.pagination-9308 {
  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;
}

.pagination-9308 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.pagination-9308:hover {
  box-shadow: var(--shadow-lg);
}

.pagination-9308.in_617c {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.pagination-9308 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.pagination-9308 ul {
  margin: 1rem 0;
}

.pagination-9308 li {
  margin-bottom: 0.75rem;
}

.message_9ce0 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.module-dim-350e {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.module-dim-350e a {
  font-weight: 600;
}

/* === Data Tables === */
.notice_0aea {
  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;
}

.notice_0aea table {
  width: 100%;
  min-width: 600px;
}

.notice_0aea thead {
  background-color: var(--primary-color);
  color: white;
}

.notice_0aea th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.notice_0aea td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.notice_0aea tbody tr:hover {
  background-color: var(--bg-secondary);
}

.notice_0aea tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.card_5d77 {
  list-style: none;
  margin: 1.5rem 0;
}

.card_5d77 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.card_5d77 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.hovered-735d::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-ab69::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 === */
.fresh-717a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.motion-bc52 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.motion-bc52 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.motion-bc52 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.motion-bc52 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.fresh-717a blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.rough_8734 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.rough_8734::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.button_lower_132e {
  position: relative;
  margin-bottom: 3rem;
}

.hover_63b4 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.hover_63b4 .list_north_39d2 {
  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;
}

.image_clean_9d72 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.image_clean_9d72 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.image_clean_9d72 ul {
  margin: 1rem 0;
}

.image_clean_9d72 li {
  margin-bottom: 0.75rem;
}

.lower-6423 {
  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 === */
.dirty_d624 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.dirty_d624 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.upper_79a0 {
  list-style: none;
  margin: 1.5rem 0;
}

.upper_79a0 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.upper_79a0 a {
  font-weight: 600;
}

.dropdown_9ffb {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.prev_0711 {
  margin: 2.5rem 0;
}

.summary_pro_5d0f {
  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;
}

.summary_pro_5d0f:hover {
  box-shadow: var(--shadow-lg);
}

.summary_pro_5d0f.summary-active-cd83 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.slow_f58f {
  flex-shrink: 0;
}

.slow_f58f 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);
}

.popup-da84 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.shadow_upper_432d,
.mask-light-b21e,
.preview-d925 {
  width: 100%;
  margin: 1.5rem 0;
}

.progress-291d {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.progress-291d strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.preview-plasma-98c8 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.preview-plasma-98c8 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.sidebar-ff5f {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.sidebar-ff5f strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.container-outer-07b8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.sort-6cd1 {
  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;
}

.sort-6cd1:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.sort-6cd1.overlay-static-bbe4 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.sort-6cd1 .label-narrow-ccfa {
  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;
}

.sort-6cd1 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.dim_60cd {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.soft_8d56 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.soft_8d56 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.tiny-5987 {
  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 === */
.first-dcbc {
  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;
}

.icon_3fc1 {
  background-color: var(--primary-color);
  color: white;
}

.icon_3fc1:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.chip-cfec {
  background-color: var(--text-secondary);
  color: white;
}

.chip-cfec:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.soft-00fb {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.soft-00fb:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.first_bcab {
  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;
}

.first_bcab:hover {
  background-color: var(--primary-dark);
}

.shade-left-0d2d {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.hero_yellow_f9cc {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.mask_2781 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.layout_7139 {
  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 === */
.form_focused_8b98 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.hidden_9b14 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.hidden_9b14 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.title_smooth_5dcb {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.gradient-156b {
  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;
}

.media-b300 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.paragraph_19ba {
  list-style: none;
  counter-reset: rank-counter;
}

.paragraph_19ba li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.paragraph_19ba 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;
}

.row_new_fc10 {
  list-style: none;
}

.row_new_fc10 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.logo_pro_04d9 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.hover_outer_39f1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hover_outer_39f1 .yellow_eeb8 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.hover_outer_39f1 .short-4baa {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.lower-308d {
  margin-top: 3rem;
}

.frame_out_0499 {
  width: 100%;
}

.border_narrow_36c6 {
  background-color: #fef3c7;
}

.pattern_a2a9 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.hover-clean-c9ee {
  margin: 3rem 0;
}

.status-7e2c {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.heading-yellow-98a7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.heading-yellow-98a7:hover {
  box-shadow: var(--shadow-lg);
}

.heading-yellow-98a7.banner-purple-5978 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.logo-upper-50f6 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.pro-1a54 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.pro-1a54 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.stale-34bb {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.heading-yellow-98a7 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.paragraph-plasma-767b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.silver-a5af {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.black-da6f {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.image-7642 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.alert-soft-dea8 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.photo_prev_024d {
  margin-top: 1rem;
}

/* === FAQ Section === */
.east-fe17 {
  max-width: 900px;
  margin: 0 auto;
}

.summary_165b {
  margin: 2rem 0;
}

.filter_stale_091d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.filter_stale_091d summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.filter_stale_091d summary::-webkit-details-marker {
  display: none;
}

.filter_stale_091d summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.upper-ec30 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.filter_stale_091d[open] .upper-ec30 {
  transform: rotate(45deg);
}

.item_ba0a {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.item_ba0a p:last-child {
  margin-bottom: 0;
}

.primary_0844 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.widget-fast-d339 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.next_eef2 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.next_eef2 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.next_eef2 .first-dcbc {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.feature-pro-6bf1 {
  max-width: 900px;
  margin: 0 auto;
}

.tabs-plasma-b190 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.article_smooth_9e20 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.article_smooth_9e20.fn-success-ab69 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.notice-2269 {
  font-size: 3rem;
  line-height: 1;
}

.video-prev-d206 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.icon-b822 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.aside_2549,
.static-14b7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.aside_2549 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.static-14b7 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.border_pro_5f21,
.easy_e2fc {
  margin: 1.5rem 0;
}

.border_pro_5f21 li,
.easy_e2fc li {
  margin-bottom: 1rem;
}

.primary_dark_c931 {
  margin: 3rem 0;
}

.main_in_9846 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.main_in_9846 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.main_in_9846 ol {
  margin: 1rem 0;
}

.main_in_9846 li {
  margin-bottom: 0.75rem;
}

.status_927e {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.heading_medium_f328 {
  margin: 2rem 0;
}

.logo-0e5a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.breadcrumb_dynamic_50b6 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.black_18c2 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.texture-old-c004 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.slider_0c29 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.photo_rough_10e1 {
  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;
}

.photo_rough_10e1 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.banner-current-6916 {
  flex: 1;
}

.banner-current-6916 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.preview_c5a5 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.button-thick-a757 p {
  margin-bottom: 1rem;
}

.video_smooth_74c4 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.badge_31d0 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.overlay-fluid-7f29 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.overlay-fluid-7f29 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.background-dc83 h3 {
  margin-bottom: 1.5rem;
}

.action-b4fb {
  display: grid;
  gap: 2rem;
}

.label_action_799b {
  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;
}

.label_action_799b img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.label_action_799b h4 {
  margin: 0 0 0.25rem;
}

.label_action_799b p {
  margin: 0;
  font-size: 0.9375rem;
}

.paragraph_b826 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.paper_8967 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.paper_8967 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.paper_8967 ul {
  margin: 1.5rem 0;
}

.paper_8967 li {
  margin-bottom: 0.75rem;
}

.breadcrumb-ec91 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.caption_left_e752 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.tiny_ee1c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.overlay_7480 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.overlay_7480 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.active-70b7 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.active-70b7 a {
  color: rgba(255, 255, 255, 0.8);
}

.yellow_cd4a {
  list-style: none;
}

.yellow_cd4a li {
  margin-bottom: 0.75rem;
}

.yellow_cd4a a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.yellow_cd4a a:hover {
  color: white;
}

.smooth_18de {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.shade-glass-2e6e {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.row-eccd {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.huge-8669 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.menu_ee2b {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .light_862e {
    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;
  }

  .upper_34f9 {
    font-size: 1.5rem !important;
  }

  .south_7087 {
    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 */
  .pagination-9308,
  .video_b193,
  .image_clean_9d72,
  .popup-da84,
  .logo-upper-50f6,
  .heading-yellow-98a7,
  .item_ba0a,
  .focus-2546,
  .block-dirty-f12d,
  .rough_da56 {
    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 */
  .info-focused-202d {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .silver-577e {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .banner-72e8 {
    flex-shrink: 0;
  }

  .banner-current-6916 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .under-7b03,
  .main-orange-083e {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .main-orange-083e {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .detail_68b6 {
    display: none;
  }

  /* Show mobile actions */
  .nav-complex-75bb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .search-north-1074 {
    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;
  }

  .search-north-1074 svg {
    flex-shrink: 0;
  }

  .search-north-1074 .gradient_bottom_b723 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .search-north-1074 .action-9d96 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .filter-b48d {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .north-774f {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .search-north-1074:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .center_f3ae {
    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;
  }

  .center_f3ae.fn-active-ab69 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .center_f3ae li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .center_f3ae li:last-child {
    border-bottom: none;
  }

  .center_f3ae a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .hover-aae1 {
    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;
  }

  .hover-aae1 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .hover-aae1 li:last-child {
    border-bottom: none;
  }

  .hover-aae1 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .outline_full_9b89 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .silver_d48a {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .link-97d7,
  .east-e7a7 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .link-97d7 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .east-e7a7 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .hover-aae1.fn-active-ab69 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .grid_huge_04fb {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .input_fixed_b411 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .dynamic_68e3 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .image-4828 {
    margin-top: 0;
  }

  /* Hero section */
  .image-4828 {
    padding: 2rem 0 1.5rem;
  }

  .south_7087 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .block-dirty-f12d {
    font-size: 1rem;
  }

  /* Hero brand image */
  .label_7b66 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .upper-8363 {
    max-width: 100%;
    border-radius: 8px;
  }

  .footer-62e9 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .backdrop-3c4b {
    padding: 1rem;
  }

  .out-b811 {
    font-size: 1.5rem;
  }

  .detail-0538 {
    font-size: 0.75rem;
  }

  .focus-2546 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .backdrop_pressed_76d3 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .backdrop_pressed_76d3 .first-dcbc {
    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 */
  .column_5652 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .summary_pro_5d0f {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .slow_f58f {
    margin-bottom: 1rem;
  }

  /* Author */
  .element-prev-5f3d {
    flex-direction: column;
  }

  .photo_rough_10e1 {
    flex-direction: column;
  }

  /* Quotes */
  .logo-upper-50f6 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .icon-b822 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .texture-old-c004 {
    flex-direction: column;
  }

  .texture-old-c004 .first-dcbc {
    width: 100%;
  }

  /* Version comparison */
  .container-outer-07b8 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .form_focused_8b98 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .tiny_ee1c {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .row-eccd {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .notice_0aea,
  .mask-light-b21e,
  .next-80a7,
  .frame_out_0499,
  .shadow_upper_432d,
  .preview-d925 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .notice_0aea table,
  .mask-light-b21e table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .tiny-5987 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .light_862e {
    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;
  }

  .upper_34f9 {
    font-size: 1.25rem !important;
  }

  .south_7087 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .input_fixed_b411 {
    position: fixed;
  }

  .dynamic_68e3 {
    padding: 0.625rem 0;
  }

  .fixed_3092 img {
    height: 26px;
  }

  .hover-aae1 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .center_f3ae {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .search-north-1074 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .search-north-1074 svg {
    width: 18px;
    height: 18px;
  }

  .search-north-1074 .gradient_bottom_b723 {
    font-size: 0.7rem;
  }

  .search-north-1074 .action-9d96 {
    font-size: 0.65rem;
  }

  .link-97d7,
  .east-e7a7 {
    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, .light_862e, .layout_48f2, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .label_7b66 {
    padding: 1rem;
  }

  .footer-62e9 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .backdrop-3c4b {
    padding: 0.875rem;
  }

  .out-b811 {
    font-size: 1.25rem;
  }

  .backdrop_pressed_76d3 .first-dcbc {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .south_7087 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .first-dcbc {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .shade-left-0d2d {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .summary_pro_5d0f {
    padding: 1rem;
  }

  .slow_f58f span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .pagination-9308,
  .search_first_6476,
  .easy-6e50,
  .green_ef5b {
    padding: 1rem;
  }
}

@media print {
  .input_fixed_b411,
  .accent_ba91,
  .grid_huge_04fb,
  .first-dcbc,
  .caption_left_e752 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .light_862e {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.backdrop-small-8804 {
  margin-bottom: 3rem;
  text-align: center;
}

.upper_34f9 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.alert-f2cd {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.container_center_452d,
.background_c9f8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.content_c114 {
  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;
}

.content_c114:hover {
  transform: translateY(-5px);
}

.content_c114 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.content_c114 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.brown_6dee {
  margin: 3rem 0;
}

.image-short-9b64 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.pro_522f {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.pro_522f:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.border-blue-786e {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.footer-lite-931f {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.sort-2c08 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.progress_middle_3301 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.tertiary-ae4f {
  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;
}

.tertiary-ae4f:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.tertiary-ae4f.description_plasma_e7c8 {
  border-left: 4px solid var(--primary-color);
}

.pagination-simple-0edc {
  flex-shrink: 0;
}

.pagination-simple-0edc svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.active_1190 {
  flex: 1;
}

.active_1190 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.disabled_d390 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.full-e4d1,
.module_94a4,
.banner_fe2a {
  margin-bottom: 1.5rem;
}

.full-e4d1 h4,
.module_94a4 h4,
.banner_fe2a h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.full-e4d1 ul,
.module_94a4 ul,
.banner_fe2a ul {
  list-style: none;
  padding: 0;
}

.full-e4d1 li,
.module_94a4 li,
.banner_fe2a li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.full-e4d1 li:before,
.module_94a4 li:before,
.banner_fe2a li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.red-879d {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.red-879d 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;
}

.red-879d a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.hover-fixed-f122 { margin: 2rem 0; }
.hero-steel-c60c { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.hero-steel-c60c h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.blue_8d8b p { margin-bottom: 1rem; line-height: 1.7; }
.blue_8d8b strong { color: var(--text-primary); }
.blue_8d8b ul { list-style: none; padding-left: 0; }
.blue_8d8b ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.blue_8d8b ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.right_5dfe { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.fresh_9caa { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.fresh_9caa:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.cool-d033 { font-size: 3rem; margin-bottom: 1rem; }
.fresh_9caa h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.fresh_9caa p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.purple-3e0d { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.purple-3e0d span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.modal-596d { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.dropdown_left_e283 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.form-7a16 { text-align: center; }
.simple-6c52 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.blue_24c9 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.sort-hard-8be3 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.plasma_68e1 { margin: 2rem 0; }
.search_left_28cc { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.search_left_28cc h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.search_left_28cc p, .search_left_28cc ul { line-height: 1.7; }
.search_left_28cc ul { list-style: none; padding-left: 0; }
.search_left_28cc ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.search_left_28cc ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.hard_a472 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.grid-iron-730d { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.menu-plasma-7020 { text-align: center; }
.photo_868b { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.widget-0459 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.highlight_glass_a3bf { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.first_2b63 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.wrapper-3cda { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.wrapper-3cda:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.wrapper-3cda h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.wrapper-3cda p, .wrapper-3cda ul { line-height: 1.7; }
.wrapper-3cda ul { list-style: none; padding-left: 0; }
.wrapper-3cda ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.wrapper-3cda ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: a086 */
.promo-block-g7 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.2;
}
