/* ============================================
   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 */
.panel-first-6f8d p,
.mask-2419,
.form_4789,
.frame_992e,
.lite_ff57,
.progress_thick_1bc6,
.text_daa6,
.out_0796 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.badge_hovered_e006 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.badge_hovered_e006 > *,
.hidden-47d0,
.panel-first-6f8d,
.border-tiny-7692 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .badge_hovered_e006 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .badge_hovered_e006 {
    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 === */
.shadow_solid_b091 {
  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 */
.shadow_solid_b091.simple-84de {
  box-shadow: var(--shadow-md);
}

.fast-38f9 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.thumbnail_east_57e3 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.orange-6269 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.cold_0d49 {
  display: none;
}

/* Hide mobile actions on desktop */
.thumbnail_1752 {
  display: none;
}

.heading_f401 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.heading_f401 a:hover,
.heading_f401 a.fn-active-dbe4 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.title-4b38 {
  margin-left: 1rem;
}

.nav_hard_2972 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.accent-red-d3a1,
.cold-2816 {
  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;
}

.accent-red-d3a1 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.accent-red-d3a1: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;
}

.cold-2816 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.cold-2816: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;
}

.accent-red-d3a1 svg,
.cold-2816 svg {
  flex-shrink: 0;
}

.hero-prev-4de1 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.overlay_0d52 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.overlay_0d52::before,
.overlay_0d52::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.overlay_0d52::before {
  top: -7px;
}

.overlay_0d52::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.slider-tiny-15fc {
  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 === */
.caption_3a84 {
  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);
}

.brown_c24d {
  margin: 0 0 2rem;
  text-align: center;
}

.component-black-bf9c {
  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;
}

.component-black-bf9c:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.dropdown-selected-c43f {
  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);
}

.dropdown-selected-c43f strong {
  color: var(--primary-color);
  font-weight: 700;
}

.easy-7bc2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.tall_1d34 {
  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;
}

.tall_1d34:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.layout-dirty-8f60 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.border_orange_96db {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.yellow-2d76 {
  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);
}

.yellow-2d76 .thumbnail-copper-976b {
  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;
}

.yellow-2d76 .thumbnail-copper-976b svg {
  flex-shrink: 0;
}

.yellow-2d76 .highlight-pink-21a5 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.yellow-2d76 .highlight-pink-21a5: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);
}

.yellow-2d76 .popup-easy-a56a {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.yellow-2d76 .popup-easy-a56a: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) {
  .caption_3a84 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .component-black-bf9c {
    max-width: 100%;
  }

  .easy-7bc2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .tall_1d34 {
    padding: 1rem;
  }

  .layout-dirty-8f60 {
    font-size: 1.5rem;
  }

  .border_orange_96db {
    font-size: 0.75rem;
  }

  .dropdown-selected-c43f {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .yellow-2d76 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .yellow-2d76 .thumbnail-copper-976b {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .easy-7bc2 {
    grid-template-columns: 1fr;
  }
}

.texture-72c2 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.label_next_0b3d {
  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 === */
.mini_738f {
  margin-bottom: 2.5rem;
}

.aside_e305 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.texture-72c2 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.summary-rough-25ca {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.breadcrumb-gold-16dc {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.glass-0077 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.section_9301 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.fixed_c41d {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.upper-dedd {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.heading-f032 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.heading-f032 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.outline_44a7 {
  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);
}

.nav-motion-6d2a {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.overlay_9e0b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.status_cold_d258 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.media_5ace {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.paper_d029 {
  display: grid;
  gap: 1rem;
}

.steel-c479 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.popup_bright_3bee {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.primary_567d {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.notification_5088 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.north_1609 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.disabled-528e {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.disabled-528e p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.mask-2419 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.old-77b9 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.input_296a {
  display: grid;
  gap: 2rem;
}

.accordion-next-a30d {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.breadcrumb-gold-16dc {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.summary-rough-25ca {
  flex: 1;
}

.section_9301 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.section_9301 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.carousel_advanced_b9fa {
  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;
}

.fixed_c41d {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.rough_caa2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.rough_caa2 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.video_selected_c8de {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.video_selected_c8de a {
  font-size: 0.875rem;
  font-weight: 500;
}

.primary_selected_1f89 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.primary_selected_1f89 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.primary_selected_1f89 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.primary_selected_1f89 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.south-889e {
  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 === */
.footer-outer-8acd {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.hard-67f0 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.tertiary-3f90 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.yellow_04fc h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.yellow_04fc ol {
  list-style: none;
  counter-reset: toc-counter;
}

.yellow_04fc ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.yellow_04fc 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;
}

.yellow_04fc ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.yellow_04fc ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.panel-first-6f8d {
  padding: 3rem 0 5rem;
}

.border-tiny-7692 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.border-tiny-7692.action-e4b5 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.form_4789 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.cold-a11c {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.preview_2821 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.preview_2821 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.dim-af3e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.card-ac3c {
  text-align: center;
}

.gallery_tiny_31d3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.header_hovered_b9f4 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.fast-6bdb {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.progress_thick_1bc6 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.frame_992e {
  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;
}

.frame_992e * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.frame_992e:hover {
  box-shadow: var(--shadow-lg);
}

.frame_992e.panel_advanced_ddbc {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.frame_992e h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.frame_992e ul {
  margin: 1rem 0;
}

.frame_992e li {
  margin-bottom: 0.75rem;
}

.simple-37be {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.last_5931 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.last_5931 a {
  font-weight: 600;
}

/* === Data Tables === */
.secondary-6e23 {
  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;
}

.secondary-6e23 table {
  width: 100%;
  min-width: 600px;
}

.secondary-6e23 thead {
  background-color: var(--primary-color);
  color: white;
}

.secondary-6e23 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.secondary-6e23 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.secondary-6e23 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.secondary-6e23 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.notice_ae5d {
  list-style: none;
  margin: 1.5rem 0;
}

.notice_ae5d li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.notice_ae5d li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.carousel-4c2c::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-dbe4::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 === */
.large-4114 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.right-079c {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.right-079c img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.right-079c strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.right-079c span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.large-4114 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.text_daa6 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.text_daa6::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.large-2b7c {
  position: relative;
  margin-bottom: 3rem;
}

.old-c725 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.old-c725 .message-warm-ed13 {
  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;
}

.lower_89f2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.lower_89f2 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.lower_89f2 ul {
  margin: 1rem 0;
}

.lower_89f2 li {
  margin-bottom: 0.75rem;
}

.east_6282 {
  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 === */
.hard_30c1 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.hard_30c1 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.lower-a46f {
  list-style: none;
  margin: 1.5rem 0;
}

.lower-a46f li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.lower-a46f a {
  font-weight: 600;
}

.small-344e {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.out_0796 {
  margin: 2.5rem 0;
}

.fast_9252 {
  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;
}

.fast_9252:hover {
  box-shadow: var(--shadow-lg);
}

.fast_9252.hard-947c {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.search_black_c574 {
  flex-shrink: 0;
}

.search_black_c574 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);
}

.content-light-1e62 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.fresh_ca83,
.stone-4029,
.aside_next_7494 {
  width: 100%;
  margin: 1.5rem 0;
}

.next_5646 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.next_5646 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.form-current-6655 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.form-current-6655 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.accent_hovered_e9c3 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.accent_hovered_e9c3 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.avatar_e471 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.tag-hovered-a440 {
  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;
}

.tag-hovered-a440:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.tag-hovered-a440.gallery-small-977c {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.tag-hovered-a440 .secondary-4868 {
  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;
}

.tag-hovered-a440 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.paper-c28c {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.list-south-6e83 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.list-south-6e83 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.article_f068 {
  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 === */
.thumbnail-copper-976b {
  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;
}

.highlight-pink-21a5 {
  background-color: var(--primary-color);
  color: white;
}

.highlight-pink-21a5:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.popup-easy-a56a {
  background-color: var(--text-secondary);
  color: white;
}

.popup-easy-a56a:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.center-8bc9 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.center-8bc9:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.photo-gas-e92d {
  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;
}

.photo-gas-e92d:hover {
  background-color: var(--primary-dark);
}

.progress_de08 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.up_dd97 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.carousel_brown_0788 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.message_left_44ac {
  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 === */
.picture-gas-7f00 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.hover_783f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.hover_783f h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.block_df1e {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.lite_2444 {
  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;
}

.pink-a30a {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.top-6567 {
  list-style: none;
  counter-reset: rank-counter;
}

.top-6567 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.top-6567 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;
}

.info-f7b5 {
  list-style: none;
}

.info-f7b5 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.hidden-0a7b {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.caption-action-d549 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.caption-action-d549 .under_46ad {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.caption-action-d549 .alert-5782 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.row_rough_8a9b {
  margin-top: 3rem;
}

.overlay_left_1a58 {
  width: 100%;
}

.main-slow-5ec5 {
  background-color: #fef3c7;
}

.filter-west-4b72 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.rough-b1ba {
  margin: 3rem 0;
}

.status_7747 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.center_7e5e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.center_7e5e:hover {
  box-shadow: var(--shadow-lg);
}

.center_7e5e.backdrop-soft-696d {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.basic_668c {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.link-4e8d strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.link-4e8d span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pink-188d {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.center_7e5e blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.hidden-5955 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.accent-5382 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.texture-fast-c592 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.chip_next_1369 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.gallery-old-91e3 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.preview_bbf4 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.component_5d34 {
  max-width: 900px;
  margin: 0 auto;
}

.large_2c69 {
  margin: 2rem 0;
}

.border_52b9 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.border_52b9 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.border_52b9 summary::-webkit-details-marker {
  display: none;
}

.border_52b9 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.outline-9383 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.border_52b9[open] .outline-9383 {
  transform: rotate(45deg);
}

.tall_badd {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.tall_badd p:last-child {
  margin-bottom: 0;
}

.static_1228 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.lite-9e45 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.notice_motion_9786 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.notice_motion_9786 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.notice_motion_9786 .thumbnail-copper-976b {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.focus-south-de79 {
  max-width: 900px;
  margin: 0 auto;
}

.tertiary_17e0 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.thumbnail-c30f {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.thumbnail-c30f.fn-success-dbe4 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.progress_8de4 {
  font-size: 3rem;
  line-height: 1;
}

.narrow-be9b h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.status_basic_e502 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.tabs-5237,
.slider_dim_75c7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.tabs-5237 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.slider_dim_75c7 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.background-0d9a,
.stale_f1da {
  margin: 1.5rem 0;
}

.background-0d9a li,
.stale_f1da li {
  margin-bottom: 1rem;
}

.overlay-6b9d {
  margin: 3rem 0;
}

.new_c6fe {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.new_c6fe h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.new_c6fe ol {
  margin: 1rem 0;
}

.new_c6fe li {
  margin-bottom: 0.75rem;
}

.fresh_9849 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.mask_orange_4c04 {
  margin: 2rem 0;
}

.out-b623 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.container_48d8 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.footer_00a3 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.progress_c71b {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.hero_ab09 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.row_pressed_c502 {
  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;
}

.row_pressed_c502 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.glass-0077 {
  flex: 1;
}

.glass-0077 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.purple-bb5e {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.prev_36fb p {
  margin-bottom: 1rem;
}

.header-5f1f {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.focus-b7f8 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.element-beae {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.element-beae a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.media-plasma-b84e h3 {
  margin-bottom: 1.5rem;
}

.accent_709b {
  display: grid;
  gap: 2rem;
}

.hero_brown_8789 {
  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;
}

.hero_brown_8789 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.hero_brown_8789 h4 {
  margin: 0 0 0.25rem;
}

.hero_brown_8789 p {
  margin: 0;
  font-size: 0.9375rem;
}

.table-dad5 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.lite_b98b {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.lite_b98b h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.lite_b98b ul {
  margin: 1.5rem 0;
}

.lite_b98b li {
  margin-bottom: 0.75rem;
}

.menu_f485 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.tabs_active_530a {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.hidden-6cbe {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.huge_c285 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.huge_c285 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.south_0fd9 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.south_0fd9 a {
  color: rgba(255, 255, 255, 0.8);
}

.link_d73f {
  list-style: none;
}

.link_d73f li {
  margin-bottom: 0.75rem;
}

.link_d73f a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.link_d73f a:hover {
  color: white;
}

.grid-thick-0333 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.icon-orange-f3e6 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.bright_de79 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.light-76ed {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.motion-c29b {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .badge_hovered_e006 {
    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;
  }

  .first-f042 {
    font-size: 1.5rem !important;
  }

  .aside_e305 {
    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 */
  .frame_992e,
  .lite_ff57,
  .lower_89f2,
  .content-light-1e62,
  .basic_668c,
  .center_7e5e,
  .tall_badd,
  .dropdown-selected-c43f,
  .mask-2419,
  .form_4789 {
    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 */
  .texture-72c2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .summary-rough-25ca {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .breadcrumb-gold-16dc {
    flex-shrink: 0;
  }

  .glass-0077 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .section_9301,
  .fixed_c41d {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .fixed_c41d {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .orange-6269 {
    display: none;
  }

  /* Show mobile actions */
  .thumbnail_1752 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .current-05ca {
    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;
  }

  .current-05ca svg {
    flex-shrink: 0;
  }

  .current-05ca .out-07ba {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .current-05ca .orange-b668 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .modal-618d {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .link_4e7f {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .current-05ca:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .cold_0d49 {
    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;
  }

  .cold_0d49.fn-active-dbe4 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .cold_0d49 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .cold_0d49 li:last-child {
    border-bottom: none;
  }

  .cold_0d49 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .heading_f401 {
    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;
  }

  .heading_f401 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .heading_f401 li:last-child {
    border-bottom: none;
  }

  .heading_f401 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .title-4b38 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .nav_hard_2972 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .accent-red-d3a1,
  .cold-2816 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .accent-red-d3a1 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .cold-2816 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .heading_f401.fn-active-dbe4 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hero-prev-4de1 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .shadow_solid_b091 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .fast-38f9 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .slider-tiny-15fc {
    margin-top: 0;
  }

  /* Hero section */
  .slider-tiny-15fc {
    padding: 2rem 0 1.5rem;
  }

  .aside_e305 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .mask-2419 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .caption_3a84 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .component-black-bf9c {
    max-width: 100%;
    border-radius: 8px;
  }

  .easy-7bc2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .tall_1d34 {
    padding: 1rem;
  }

  .layout-dirty-8f60 {
    font-size: 1.5rem;
  }

  .border_orange_96db {
    font-size: 0.75rem;
  }

  .dropdown-selected-c43f {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .yellow-2d76 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .yellow-2d76 .thumbnail-copper-976b {
    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 */
  .tertiary-3f90 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .fast_9252 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .search_black_c574 {
    margin-bottom: 1rem;
  }

  /* Author */
  .accordion-next-a30d {
    flex-direction: column;
  }

  .row_pressed_c502 {
    flex-direction: column;
  }

  /* Quotes */
  .basic_668c {
    flex-direction: column;
  }

  /* Pros/Cons */
  .status_basic_e502 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .progress_c71b {
    flex-direction: column;
  }

  .progress_c71b .thumbnail-copper-976b {
    width: 100%;
  }

  /* Version comparison */
  .avatar_e471 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .picture-gas-7f00 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .hidden-6cbe {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bright_de79 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .secondary-6e23,
  .stone-4029,
  .status_last_3043,
  .overlay_left_1a58,
  .fresh_ca83,
  .aside_next_7494 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .secondary-6e23 table,
  .stone-4029 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .article_f068 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .badge_hovered_e006 {
    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;
  }

  .first-f042 {
    font-size: 1.25rem !important;
  }

  .aside_e305 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .shadow_solid_b091 {
    position: fixed;
  }

  .fast-38f9 {
    padding: 0.625rem 0;
  }

  .thumbnail_east_57e3 img {
    height: 26px;
  }

  .heading_f401 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .cold_0d49 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .current-05ca {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .current-05ca svg {
    width: 18px;
    height: 18px;
  }

  .current-05ca .out-07ba {
    font-size: 0.7rem;
  }

  .current-05ca .orange-b668 {
    font-size: 0.65rem;
  }

  .accent-red-d3a1,
  .cold-2816 {
    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, .badge_hovered_e006, .hidden-47d0, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .caption_3a84 {
    padding: 1rem;
  }

  .easy-7bc2 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .tall_1d34 {
    padding: 0.875rem;
  }

  .layout-dirty-8f60 {
    font-size: 1.25rem;
  }

  .yellow-2d76 .thumbnail-copper-976b {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .aside_e305 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .thumbnail-copper-976b {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .progress_de08 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .fast_9252 {
    padding: 1rem;
  }

  .search_black_c574 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .frame_992e,
  .picture-e3c9,
  .copper-2e07,
  .surface-medium-0134 {
    padding: 1rem;
  }
}

@media print {
  .shadow_solid_b091,
  .footer-outer-8acd,
  .hero-prev-4de1,
  .thumbnail-copper-976b,
  .tabs_active_530a {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .badge_hovered_e006 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.chip-thick-ac4a {
  margin-bottom: 3rem;
  text-align: center;
}

.first-f042 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.image-basic-931f {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.steel-f305,
.texture-lower-5c1c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.chip_6215 {
  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;
}

.chip_6215:hover {
  transform: translateY(-5px);
}

.chip_6215 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.chip_6215 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.fresh_9737 {
  margin: 3rem 0;
}

.simple-47ae {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.summary-b167 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.summary-b167:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.hidden_4679 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.background_c980 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.pro-9417 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.gold_9907 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.component_thick_37c7 {
  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;
}

.component_thick_37c7:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.component_thick_37c7.heading-middle-ac71 {
  border-left: 4px solid var(--primary-color);
}

.info-6e80 {
  flex-shrink: 0;
}

.info-6e80 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.background-655f {
  flex: 1;
}

.background-655f h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.hero_0199 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.title-copper-4d1d,
.link_bottom_c81c,
.wide-7405 {
  margin-bottom: 1.5rem;
}

.title-copper-4d1d h4,
.link_bottom_c81c h4,
.wide-7405 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.title-copper-4d1d ul,
.link_bottom_c81c ul,
.wide-7405 ul {
  list-style: none;
  padding: 0;
}

.title-copper-4d1d li,
.link_bottom_c81c li,
.wide-7405 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.title-copper-4d1d li:before,
.link_bottom_c81c li:before,
.wide-7405 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.hover-64d3 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hover-64d3 a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.hover-64d3 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.disabled_8fa5 { margin: 2rem 0; }
.item-simple-24a0 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.item-simple-24a0 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.shade-bronze-a39e p { margin-bottom: 1rem; line-height: 1.7; }
.shade-bronze-a39e strong { color: var(--text-primary); }
.shade-bronze-a39e ul { list-style: none; padding-left: 0; }
.shade-bronze-a39e ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.shade-bronze-a39e ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.avatar_selected_9183 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.wrapper-outer-ae54 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.wrapper-outer-ae54:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.popup-91b3 { font-size: 3rem; margin-bottom: 1rem; }
.wrapper-outer-ae54 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.wrapper-outer-ae54 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.icon_7745 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.icon_7745 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.soft_c93c { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.texture_86cf { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.menu-left-056c { text-align: center; }
.header-b3e0 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.lite_4ec2 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.slow-151d { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.prev-b6f0 { margin: 2rem 0; }
.highlight-light-1a82 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.highlight-light-1a82 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.highlight-light-1a82 p, .highlight-light-1a82 ul { line-height: 1.7; }
.highlight-light-1a82 ul { list-style: none; padding-left: 0; }
.highlight-light-1a82 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.highlight-light-1a82 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.preview_0aeb { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.overlay-static-d699 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.fixed_c273 { text-align: center; }
.form_08fa { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.top_6bb5 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.widget-fresh-e2a4 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.video_cool_4af0 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.middle-153f { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.middle-153f:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.middle-153f h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.middle-153f p, .middle-153f ul { line-height: 1.7; }
.middle-153f ul { list-style: none; padding-left: 0; }
.middle-153f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.middle-153f ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 2acf */
.promo-block-k3 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.2;
}
