/* ============================================
   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 */
.inner-3353 p,
.warm_a7ec,
.input_pro_83b7,
.lite-967c,
.plasma-2c1d,
.badge_c21b,
.pattern-f056,
.active_center_0444 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.static-8930 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.static-8930 > *,
.article_840c,
.inner-3353,
.carousel-top-34b2 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .static-8930 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .static-8930 {
    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 === */
.smooth_9f77 {
  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 */
.smooth_9f77.selected_3413 {
  box-shadow: var(--shadow-md);
}

.search-b223 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.menu-soft-395a img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.description-d2a1 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.fluid_f96c {
  display: none;
}

/* Hide mobile actions on desktop */
.down-86d7 {
  display: none;
}

.next_c1dc a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.next_c1dc a:hover,
.next_c1dc a.fn-active-7823 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.media-fresh-b7e3 {
  margin-left: 1rem;
}

.disabled_glass_4355 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.yellow_11cf,
.background_brown_934e {
  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;
}

.yellow_11cf {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.yellow_11cf: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;
}

.background_brown_934e {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.background_brown_934e: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;
}

.yellow_11cf svg,
.background_brown_934e svg {
  flex-shrink: 0;
}

.tertiary-a1a9 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.paragraph_last_9368 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.paragraph_last_9368::before,
.paragraph_last_9368::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.paragraph_last_9368::before {
  top: -7px;
}

.paragraph_last_9368::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.gallery_a8a0 {
  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 === */
.over-5bd7 {
  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);
}

.disabled-fef3 {
  margin: 0 0 2rem;
  text-align: center;
}

.sidebar_5b81 {
  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;
}

.sidebar_5b81:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.surface_tall_a307 {
  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);
}

.surface_tall_a307 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.shadow_3ff6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.video-0f16 {
  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;
}

.video-0f16:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pressed_7027 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tiny_fc16 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.disabled-9eed {
  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);
}

.disabled-9eed .box_up_c9db {
  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;
}

.disabled-9eed .box_up_c9db svg {
  flex-shrink: 0;
}

.disabled-9eed .wrapper-static-37c0 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.disabled-9eed .wrapper-static-37c0: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);
}

.disabled-9eed .search-335b {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.disabled-9eed .search-335b: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) {
  .over-5bd7 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .sidebar_5b81 {
    max-width: 100%;
  }

  .shadow_3ff6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .video-0f16 {
    padding: 1rem;
  }

  .pressed_7027 {
    font-size: 1.5rem;
  }

  .tiny_fc16 {
    font-size: 0.75rem;
  }

  .surface_tall_a307 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .disabled-9eed {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .disabled-9eed .box_up_c9db {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .shadow_3ff6 {
    grid-template-columns: 1fr;
  }
}

.wide_360c {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.content_0cf4 {
  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 === */
.grid_iron_0702 {
  margin-bottom: 2.5rem;
}

.filter-b525 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.wide_360c {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.table-prev-5c8c {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cold_9059 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.sort_ab43 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.north-6fd1 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.photo_dark_47a6 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.element-a95e {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.link_short_8a35 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.link_short_8a35 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.status_d3c6 {
  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);
}

.message_smooth_eb88 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.notice_1731 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.footer-a122 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.chip-up-e069 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.content-4142 {
  display: grid;
  gap: 1rem;
}

.main_inner_db81 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.slow_a8e6 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.progress-fb75 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.sidebar_advanced_150b {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.medium_7406 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.orange-c4b1 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.orange-c4b1 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.warm_a7ec {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.shadow_lower_66b5 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.background-down-62a3 {
  display: grid;
  gap: 2rem;
}

.row_0e30 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.cold_9059 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.table-prev-5c8c {
  flex: 1;
}

.north-6fd1 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.north-6fd1 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.tertiary-50bb {
  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;
}

.photo_dark_47a6 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.video-871c {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.video-871c span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.steel_df2e {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.steel_df2e a {
  font-size: 0.875rem;
  font-weight: 500;
}

.icon_lite_7152 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.icon_lite_7152 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.icon_lite_7152 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.icon_lite_7152 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.prev-f7bf {
  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 === */
.prev_8685 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.over_f573 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.small-87ca {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.cool-a72a h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.cool-a72a ol {
  list-style: none;
  counter-reset: toc-counter;
}

.cool-a72a ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.cool-a72a 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;
}

.cool-a72a ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.cool-a72a ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.inner-3353 {
  padding: 3rem 0 5rem;
}

.carousel-top-34b2 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.carousel-top-34b2.focused_7c76 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.input_pro_83b7 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.carousel_11ef {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.pattern-south-e485 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.pattern-south-e485 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.hover-7d50 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.tabs-short-f55d {
  text-align: center;
}

.border-9429 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.prev-19b2 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.cool-ca4f {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.badge_c21b {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.lite-967c {
  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;
}

.lite-967c * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.lite-967c:hover {
  box-shadow: var(--shadow-lg);
}

.lite-967c.photo-dirty-c461 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.lite-967c h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.lite-967c ul {
  margin: 1rem 0;
}

.lite-967c li {
  margin-bottom: 0.75rem;
}

.logo_3973 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.down-9b1c {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.down-9b1c a {
  font-weight: 600;
}

/* === Data Tables === */
.widget-last-aed8 {
  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;
}

.widget-last-aed8 table {
  width: 100%;
  min-width: 600px;
}

.widget-last-aed8 thead {
  background-color: var(--primary-color);
  color: white;
}

.widget-last-aed8 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.widget-last-aed8 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.widget-last-aed8 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.widget-last-aed8 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.plasma_4eed {
  list-style: none;
  margin: 1.5rem 0;
}

.plasma_4eed li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.plasma_4eed li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.gradient_508b::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-7823::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 === */
.tertiary-gold-aee4 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.menu-advanced-8f25 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.menu-advanced-8f25 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.menu-advanced-8f25 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.menu-advanced-8f25 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tertiary-gold-aee4 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.pattern-f056 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.pattern-f056::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.caption-64b3 {
  position: relative;
  margin-bottom: 3rem;
}

.search-blue-ecd5 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.search-blue-ecd5 .bronze_ba90 {
  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;
}

.smooth-3710 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.smooth-3710 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.smooth-3710 ul {
  margin: 1rem 0;
}

.smooth-3710 li {
  margin-bottom: 0.75rem;
}

.red-de89 {
  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 === */
.pagination_e79b {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.pagination_e79b h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.layout-9e90 {
  list-style: none;
  margin: 1.5rem 0;
}

.layout-9e90 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.layout-9e90 a {
  font-weight: 600;
}

.notification-9ed6 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.active_center_0444 {
  margin: 2.5rem 0;
}

.tooltip-over-2de0 {
  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;
}

.tooltip-over-2de0:hover {
  box-shadow: var(--shadow-lg);
}

.tooltip-over-2de0.wrapper_ad87 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.box_short_89ae {
  flex-shrink: 0;
}

.box_short_89ae 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);
}

.mini-5e04 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.plasma_0675,
.notice-dbf3,
.texture-yellow-aee5 {
  width: 100%;
  margin: 1.5rem 0;
}

.static-4ade {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.static-4ade strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.grid_4f32 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.grid_4f32 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.widget_76f0 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.widget_76f0 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.content_5f62 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.video-fixed-8360 {
  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;
}

.video-fixed-8360:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.video-fixed-8360.layout-over-ff46 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.video-fixed-8360 .secondary-huge-5d63 {
  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;
}

.video-fixed-8360 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.label-2e1a {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.header-d485 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.header-d485 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.shadow_east_2e50 {
  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 === */
.box_up_c9db {
  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;
}

.wrapper-static-37c0 {
  background-color: var(--primary-color);
  color: white;
}

.wrapper-static-37c0:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.search-335b {
  background-color: var(--text-secondary);
  color: white;
}

.search-335b:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.menu_4d0f {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.menu_4d0f:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.slider-79b4 {
  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;
}

.slider-79b4:hover {
  background-color: var(--primary-dark);
}

.dark_bc3a {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.advanced-67a6 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.header_51b5 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.easy-b37c {
  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 === */
.image_plasma_672d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.heading-5f24 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.heading-5f24 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.carousel-063a {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.paper-2871 {
  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;
}

.dropdown-fa35 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.silver-2341 {
  list-style: none;
  counter-reset: rank-counter;
}

.silver-2341 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.silver-2341 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;
}

.section-bcfd {
  list-style: none;
}

.section-bcfd li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.new_7f95 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.picture-ce18 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.picture-ce18 .content-hard-1d5c {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.picture-ce18 .pattern_ddd0 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.gallery-113b {
  margin-top: 3rem;
}

.narrow_d158 {
  width: 100%;
}

.input-c401 {
  background-color: #fef3c7;
}

.section-fresh-f092 {
  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-tiny-a838 {
  margin: 3rem 0;
}

.input_east_2db8 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.pressed-e664 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.pressed-e664:hover {
  box-shadow: var(--shadow-lg);
}

.pressed-e664.center-9293 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.gallery_under_14e9 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.motion_3d73 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.motion_3d73 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.logo-out-8646 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pressed-e664 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.tooltip-right-40b0 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.action_b5f6 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.button_a7fe {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.slow_4f55 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.item-upper-646f {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.main_ae3b {
  margin-top: 1rem;
}

/* === FAQ Section === */
.over-6a6e {
  max-width: 900px;
  margin: 0 auto;
}

.gallery_6279 {
  margin: 2rem 0;
}

.surface_inner_428f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.surface_inner_428f summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.surface_inner_428f summary::-webkit-details-marker {
  display: none;
}

.surface_inner_428f summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.label_5913 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.surface_inner_428f[open] .label_5913 {
  transform: rotate(45deg);
}

.pagination_b033 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.pagination_b033 p:last-child {
  margin-bottom: 0;
}

.paragraph_gold_3d5e {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.column_7760 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.main_hovered_62dc {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.main_hovered_62dc p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.main_hovered_62dc .box_up_c9db {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.article-fresh-e939 {
  max-width: 900px;
  margin: 0 auto;
}

.summary_9769 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.dropdown-c837 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.dropdown-c837.fn-success-7823 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.feature_ab79 {
  font-size: 3rem;
  line-height: 1;
}

.form-soft-6a9e h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.outline_bottom_d784 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.paper_995e,
.outline-aded {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.paper_995e h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.outline-aded h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.warm-586e,
.filter_1b18 {
  margin: 1.5rem 0;
}

.warm-586e li,
.filter_1b18 li {
  margin-bottom: 1rem;
}

.dropdown-fb36 {
  margin: 3rem 0;
}

.border-9696 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.border-9696 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.border-9696 ol {
  margin: 1rem 0;
}

.border-9696 li {
  margin-bottom: 0.75rem;
}

.badge_1d1d {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.glass_241c {
  margin: 2rem 0;
}

.lower_24c6 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.icon-south-469c {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.alert_db1e {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.status-21a8 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.footer_73e5 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.hero_4fbc {
  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;
}

.hero_4fbc img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.sort_ab43 {
  flex: 1;
}

.sort_ab43 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.out-2232 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.gold-e98e p {
  margin-bottom: 1rem;
}

.large_9501 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.media_d9e4 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.frame_07ba {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.frame_07ba a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.up_b70b h3 {
  margin-bottom: 1.5rem;
}

.heading_static_5f54 {
  display: grid;
  gap: 2rem;
}

.section-dark-20cb {
  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;
}

.section-dark-20cb img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.section-dark-20cb h4 {
  margin: 0 0 0.25rem;
}

.section-dark-20cb p {
  margin: 0;
  font-size: 0.9375rem;
}

.summary-rough-a29d {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.label-old-7347 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.label-old-7347 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.label-old-7347 ul {
  margin: 1.5rem 0;
}

.label-old-7347 li {
  margin-bottom: 0.75rem;
}

.red-89cb {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.frame_bronze_a59a {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.button-c800 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.huge-f077 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.huge-f077 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.sort-2c16 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.sort-2c16 a {
  color: rgba(255, 255, 255, 0.8);
}

.border-full-a76d {
  list-style: none;
}

.border-full-a76d li {
  margin-bottom: 0.75rem;
}

.border-full-a76d a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.border-full-a76d a:hover {
  color: white;
}

.panel-0c35 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.dynamic-75d9 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.section_fast_c09a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.shade-8110 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.border_11a6 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .static-8930 {
    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;
  }

  .motion_317e {
    font-size: 1.5rem !important;
  }

  .filter-b525 {
    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 */
  .lite-967c,
  .plasma-2c1d,
  .smooth-3710,
  .mini-5e04,
  .gallery_under_14e9,
  .pressed-e664,
  .pagination_b033,
  .surface_tall_a307,
  .warm_a7ec,
  .input_pro_83b7 {
    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 */
  .wide_360c {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .table-prev-5c8c {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .cold_9059 {
    flex-shrink: 0;
  }

  .sort_ab43 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .north-6fd1,
  .photo_dark_47a6 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .photo_dark_47a6 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .description-d2a1 {
    display: none;
  }

  /* Show mobile actions */
  .down-86d7 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .form_e41c {
    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;
  }

  .form_e41c svg {
    flex-shrink: 0;
  }

  .form_e41c .white_54ce {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .form_e41c .slow_554d {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .avatar_8a18 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .tag_2a63 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .form_e41c:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .fluid_f96c {
    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;
  }

  .fluid_f96c.fn-active-7823 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .fluid_f96c li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .fluid_f96c li:last-child {
    border-bottom: none;
  }

  .fluid_f96c a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .next_c1dc {
    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;
  }

  .next_c1dc li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .next_c1dc li:last-child {
    border-bottom: none;
  }

  .next_c1dc a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .media-fresh-b7e3 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .disabled_glass_4355 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .yellow_11cf,
  .background_brown_934e {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .yellow_11cf {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .background_brown_934e {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .next_c1dc.fn-active-7823 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .tertiary-a1a9 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .smooth_9f77 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .search-b223 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .gallery_a8a0 {
    margin-top: 0;
  }

  /* Hero section */
  .gallery_a8a0 {
    padding: 2rem 0 1.5rem;
  }

  .filter-b525 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .warm_a7ec {
    font-size: 1rem;
  }

  /* Hero brand image */
  .over-5bd7 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .sidebar_5b81 {
    max-width: 100%;
    border-radius: 8px;
  }

  .shadow_3ff6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .video-0f16 {
    padding: 1rem;
  }

  .pressed_7027 {
    font-size: 1.5rem;
  }

  .tiny_fc16 {
    font-size: 0.75rem;
  }

  .surface_tall_a307 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .disabled-9eed {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .disabled-9eed .box_up_c9db {
    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 */
  .small-87ca {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .tooltip-over-2de0 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .box_short_89ae {
    margin-bottom: 1rem;
  }

  /* Author */
  .row_0e30 {
    flex-direction: column;
  }

  .hero_4fbc {
    flex-direction: column;
  }

  /* Quotes */
  .gallery_under_14e9 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .outline_bottom_d784 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .status-21a8 {
    flex-direction: column;
  }

  .status-21a8 .box_up_c9db {
    width: 100%;
  }

  /* Version comparison */
  .content_5f62 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .image_plasma_672d {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .button-c800 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section_fast_c09a {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .widget-last-aed8,
  .notice-dbf3,
  .disabled-cebe,
  .narrow_d158,
  .plasma_0675,
  .texture-yellow-aee5 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .widget-last-aed8 table,
  .notice-dbf3 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .shadow_east_2e50 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .static-8930 {
    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;
  }

  .motion_317e {
    font-size: 1.25rem !important;
  }

  .filter-b525 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .smooth_9f77 {
    position: fixed;
  }

  .search-b223 {
    padding: 0.625rem 0;
  }

  .menu-soft-395a img {
    height: 26px;
  }

  .next_c1dc {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .fluid_f96c {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .form_e41c {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .form_e41c svg {
    width: 18px;
    height: 18px;
  }

  .form_e41c .white_54ce {
    font-size: 0.7rem;
  }

  .form_e41c .slow_554d {
    font-size: 0.65rem;
  }

  .yellow_11cf,
  .background_brown_934e {
    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, .static-8930, .article_840c, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .over-5bd7 {
    padding: 1rem;
  }

  .shadow_3ff6 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .video-0f16 {
    padding: 0.875rem;
  }

  .pressed_7027 {
    font-size: 1.25rem;
  }

  .disabled-9eed .box_up_c9db {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .filter-b525 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .box_up_c9db {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .dark_bc3a {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .tooltip-over-2de0 {
    padding: 1rem;
  }

  .box_short_89ae span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .lite-967c,
  .border_890b,
  .sort_paper_0d57,
  .mask_warm_54a3 {
    padding: 1rem;
  }
}

@media print {
  .smooth_9f77,
  .prev_8685,
  .tertiary-a1a9,
  .box_up_c9db,
  .frame_bronze_a59a {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .static-8930 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.logo-pink-f463 {
  margin-bottom: 3rem;
  text-align: center;
}

.motion_317e {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.dropdown_dynamic_2fcf {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.avatar_large_816c,
.banner-right-8704 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.section_simple_cfa0 {
  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;
}

.section_simple_cfa0:hover {
  transform: translateY(-5px);
}

.section_simple_cfa0 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.section_simple_cfa0 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.card_dd2b {
  margin: 3rem 0;
}

.panel-5df7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.label_c73c {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.label_c73c:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.breadcrumb_short_a4ab {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pro-8bc5 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.description_left_6502 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.tall_4ca7 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.menu-huge-8072 {
  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;
}

.menu-huge-8072:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.menu-huge-8072.column-61f3 {
  border-left: 4px solid var(--primary-color);
}

.row_dynamic_d022 {
  flex-shrink: 0;
}

.row_dynamic_d022 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.action_927d {
  flex: 1;
}

.action_927d h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.status-solid-3f18 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.info_32e8,
.content-last-1f67,
.panel-lower-2148 {
  margin-bottom: 1.5rem;
}

.info_32e8 h4,
.content-last-1f67 h4,
.panel-lower-2148 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info_32e8 ul,
.content-last-1f67 ul,
.panel-lower-2148 ul {
  list-style: none;
  padding: 0;
}

.info_32e8 li,
.content-last-1f67 li,
.panel-lower-2148 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.info_32e8 li:before,
.content-last-1f67 li:before,
.panel-lower-2148 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.primary-12fa {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.primary-12fa 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;
}

.primary-12fa a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.outline-cool-7cf9 { margin: 2rem 0; }
.paragraph-silver-642d { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.paragraph-silver-642d h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.action_2efc p { margin-bottom: 1rem; line-height: 1.7; }
.action_2efc strong { color: var(--text-primary); }
.action_2efc ul { list-style: none; padding-left: 0; }
.action_2efc ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.action_2efc ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.module-731d { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.glass_00c1 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.glass_00c1:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.soft-be33 { font-size: 3rem; margin-bottom: 1rem; }
.glass_00c1 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.glass_00c1 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.full-01f7 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.full-01f7 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.alert-1ca4 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.item_8b52 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.secondary_a597 { text-align: center; }
.black_ba36 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.media-2b2b { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.content-left-cdd9 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.image-ac55 { margin: 2rem 0; }
.caption-easy-6c5a { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.caption-easy-6c5a h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.caption-easy-6c5a p, .caption-easy-6c5a ul { line-height: 1.7; }
.caption-easy-6c5a ul { list-style: none; padding-left: 0; }
.caption-easy-6c5a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.caption-easy-6c5a ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.badge-0775 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.module-4500 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.box_4c4d { text-align: center; }
.gradient_full_7a95 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.sidebar_ab1b { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.article_basic_f43c { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.pressed_9b56 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.detail-b9ce { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.detail-b9ce:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.detail-b9ce h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.detail-b9ce p, .detail-b9ce ul { line-height: 1.7; }
.detail-b9ce ul { list-style: none; padding-left: 0; }
.detail-b9ce ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.detail-b9ce ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: eece */
.ghost-box-f7 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.0;
}
