/* ============================================
   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 */
.tag-08d7 p,
.footer-420e,
.red-cb73,
.carousel_ada0,
.form-a797,
.input-dea8,
.image_51e2,
.orange_d9a9 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.notification_fast_ac2e {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.notification_fast_ac2e > *,
.row_cac5,
.tag-08d7,
.brown_40dd {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .notification_fast_ac2e {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .notification_fast_ac2e {
    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 === */
.link_north_38c3 {
  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 */
.link_north_38c3.backdrop-selected-755f {
  box-shadow: var(--shadow-md);
}

.text_6ec0 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.pink-4235 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.module_next_6efb {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.dirty-d49b {
  display: none;
}

/* Hide mobile actions on desktop */
.menu-rough-6817 {
  display: none;
}

.preview_edf2 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.preview_edf2 a:hover,
.preview_edf2 a.fn-active-ab7a {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.input_right_c55e {
  margin-left: 1rem;
}

.header_basic_c56c {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.info_7d0f,
.pressed_e2a7 {
  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;
}

.info_7d0f {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.info_7d0f: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;
}

.pressed_e2a7 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.pressed_e2a7: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;
}

.info_7d0f svg,
.pressed_e2a7 svg {
  flex-shrink: 0;
}

.dirty-c674 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.tiny-df7a {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.tiny-df7a::before,
.tiny-df7a::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.tiny-df7a::before {
  top: -7px;
}

.tiny-df7a::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.label-action-71f0 {
  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 === */
.content_f6a1 {
  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);
}

.stone-f3d8 {
  margin: 0 0 2rem;
  text-align: center;
}

.under_b250 {
  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;
}

.under_b250:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.title-silver-8018 {
  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);
}

.title-silver-8018 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.element_f5bd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.search-orange-1baf {
  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;
}

.search-orange-1baf:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.main-575f {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.heading-cool-ec05 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.widget_b0c2 {
  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);
}

.widget_b0c2 .menu_1b35 {
  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;
}

.widget_b0c2 .menu_1b35 svg {
  flex-shrink: 0;
}

.widget_b0c2 .hot-0adb {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.widget_b0c2 .hot-0adb: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);
}

.widget_b0c2 .frame_9b17 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.widget_b0c2 .frame_9b17: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) {
  .content_f6a1 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .under_b250 {
    max-width: 100%;
  }

  .element_f5bd {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .search-orange-1baf {
    padding: 1rem;
  }

  .main-575f {
    font-size: 1.5rem;
  }

  .heading-cool-ec05 {
    font-size: 0.75rem;
  }

  .title-silver-8018 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .widget_b0c2 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .widget_b0c2 .menu_1b35 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .element_f5bd {
    grid-template-columns: 1fr;
  }
}

.under_062e {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.article-b5ec {
  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 === */
.fluid_e78c {
  margin-bottom: 2.5rem;
}

.outer-0db9 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.under_062e {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.primary_a1af {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.breadcrumb-prev-b7cc {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.component_087c {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.input-large-395d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.banner-110e {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.bottom-b382 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.static_cb98 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.static_cb98 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.link_hard_2531 {
  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);
}

.large-919f {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.panel_f0f1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.video-93b3 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.simple-7cd0 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.active-iron-c43e {
  display: grid;
  gap: 1rem;
}

.narrow-4318 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.gallery_focused_6da4 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.active_1b42 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.modal_6d0f {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.liquid_c1a4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.border-aa48 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.border-aa48 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.footer-420e {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.liquid-a506 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.medium-21cb {
  display: grid;
  gap: 2rem;
}

.component_e4b3 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.breadcrumb-prev-b7cc {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.primary_a1af {
  flex: 1;
}

.input-large-395d {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.input-large-395d a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.pagination-cda6 {
  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;
}

.banner-110e {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.title-652b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.title-652b span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.notice-0b89 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.notice-0b89 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.menu-7d6b {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.menu-7d6b strong {
  display: block;
  margin-bottom: 0.75rem;
}

.menu-7d6b ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-7d6b li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.south-b650 {
  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 === */
.article_5550 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.slider-smooth-feff {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.article_basic_c2f3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.hover-a010 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.hover-a010 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.hover-a010 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.hover-a010 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;
}

.hover-a010 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.hover-a010 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.tag-08d7 {
  padding: 3rem 0 5rem;
}

.brown_40dd {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.brown_40dd.lite-628b {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.red-cb73 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.row_action_86f5 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.thick-622a {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.thick-622a h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.sidebar_0e99 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.list-67b0 {
  text-align: center;
}

.accent-8dfd {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.thick_21e1 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.hero-hard-f3e6 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.input-dea8 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.carousel_ada0 {
  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;
}

.carousel_ada0 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.carousel_ada0:hover {
  box-shadow: var(--shadow-lg);
}

.carousel_ada0.sort-f150 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.carousel_ada0 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.carousel_ada0 ul {
  margin: 1rem 0;
}

.carousel_ada0 li {
  margin-bottom: 0.75rem;
}

.frame_9d13 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.dim_4cf5 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.dim_4cf5 a {
  font-weight: 600;
}

/* === Data Tables === */
.form-b5e4 {
  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;
}

.form-b5e4 table {
  width: 100%;
  min-width: 600px;
}

.form-b5e4 thead {
  background-color: var(--primary-color);
  color: white;
}

.form-b5e4 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.form-b5e4 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.form-b5e4 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.form-b5e4 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.out-28e0 {
  list-style: none;
  margin: 1.5rem 0;
}

.out-28e0 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.out-28e0 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.element-inner-4cc0::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-ab7a::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 === */
.list-glass-cacd {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.notification-paper-49ee {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.notification-paper-49ee img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.notification-paper-49ee strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.notification-paper-49ee span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.list-glass-cacd blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.image_51e2 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.image_51e2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.wide-37f1 {
  position: relative;
  margin-bottom: 3rem;
}

.accordion_white_abd8 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.accordion_white_abd8 .gradient-75cf {
  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;
}

.link_f700 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.link_f700 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.link_f700 ul {
  margin: 1rem 0;
}

.link_f700 li {
  margin-bottom: 0.75rem;
}

.upper_58b7 {
  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 === */
.feature-dim-afb8 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.feature-dim-afb8 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.mask_1889 {
  list-style: none;
  margin: 1.5rem 0;
}

.mask_1889 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.mask_1889 a {
  font-weight: 600;
}

.photo-14bf {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.orange_d9a9 {
  margin: 2.5rem 0;
}

.center_eff8 {
  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;
}

.center_eff8:hover {
  box-shadow: var(--shadow-lg);
}

.center_eff8.out-55bb {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.wrapper_pro_9536 {
  flex-shrink: 0;
}

.wrapper_pro_9536 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);
}

.outer-f194 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.paper_95e8,
.status-3ed2,
.west-0b34 {
  width: 100%;
  margin: 1.5rem 0;
}

.over_21c8 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.over_21c8 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.list-short-eaf4 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.list-short-eaf4 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.dropdown-easy-7de6 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.dropdown-easy-7de6 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.popup-north-d1ba {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.breadcrumb-current-c16b {
  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;
}

.breadcrumb-current-c16b:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.breadcrumb-current-c16b.form-huge-8d63 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.breadcrumb-current-c16b .form-wood-d6f6 {
  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;
}

.breadcrumb-current-c16b h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.filter_a59a {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.picture-next-94d1 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.picture-next-94d1 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.card-warm-d8b6 {
  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 === */
.menu_1b35 {
  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;
}

.hot-0adb {
  background-color: var(--primary-color);
  color: white;
}

.hot-0adb:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.frame_9b17 {
  background-color: var(--text-secondary);
  color: white;
}

.frame_9b17:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.stale-36be {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.stale-36be:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.tag_7c5b {
  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;
}

.tag_7c5b:hover {
  background-color: var(--primary-dark);
}

.paper-b5ae {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.popup-6d81 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.search_rough_4f32 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.search_basic_0aa3 {
  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 === */
.outer-91a6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.dropdown_01ca {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.dropdown_01ca h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.component_905f {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.brown_44cc {
  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;
}

.section-current-2bad {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.title_e00e {
  list-style: none;
  counter-reset: rank-counter;
}

.title_e00e li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.title_e00e 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;
}

.modal_dynamic_b023 {
  list-style: none;
}

.modal_dynamic_b023 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.popup-78a0 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.button-wood-b8f6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.button-wood-b8f6 .fluid_f59c {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.button-wood-b8f6 .paper-b0c8 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.summary_middle_c799 {
  margin-top: 3rem;
}

.hovered_3be0 {
  width: 100%;
}

.section_053d {
  background-color: #fef3c7;
}

.tertiary-gas-2e70 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.iron-53b0 {
  margin: 3rem 0;
}

.video_cbbc {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.outline-2a56 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.outline-2a56:hover {
  box-shadow: var(--shadow-lg);
}

.outline-2a56.tabs_selected_358c {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.tag_left_61e3 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.tall_cb69 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.tall_cb69 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.active-404f {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.outline-2a56 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.widget_in_5f7a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.glass_d011 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.section-north-77c1 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.thumbnail_slow_b88f {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.progress-5140 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.progress_91db {
  margin-top: 1rem;
}

/* === FAQ Section === */
.active-fast-d142 {
  max-width: 900px;
  margin: 0 auto;
}

.light_a551 {
  margin: 2rem 0;
}

.carousel_20fd {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.carousel_20fd summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.carousel_20fd summary::-webkit-details-marker {
  display: none;
}

.carousel_20fd summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.breadcrumb_south_60c2 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.carousel_20fd[open] .breadcrumb_south_60c2 {
  transform: rotate(45deg);
}

.texture_last_65af {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.texture_last_65af p:last-child {
  margin-bottom: 0;
}

.layout_inner_5f2b {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.filter-smooth-8d25 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.card_fresh_acaa {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.card_fresh_acaa p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.card_fresh_acaa .menu_1b35 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.link_2eea {
  max-width: 900px;
  margin: 0 auto;
}

.detail_mini_0bf9 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.link_outer_84b3 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.link_outer_84b3.fn-success-ab7a {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.carousel_98ba {
  font-size: 3rem;
  line-height: 1;
}

.filter-02d4 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.picture_black_abfd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-09b2,
.modal-80b0 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.feature-09b2 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.modal-80b0 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.tooltip_fresh_a244,
.label-164c {
  margin: 1.5rem 0;
}

.tooltip_fresh_a244 li,
.label-164c li {
  margin-bottom: 1rem;
}

.background_de95 {
  margin: 3rem 0;
}

.component-tall-d41b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.component-tall-d41b h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.component-tall-d41b ol {
  margin: 1rem 0;
}

.component-tall-d41b li {
  margin-bottom: 0.75rem;
}

.heading_static_604d {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.summary_small_e9e5 {
  margin: 2rem 0;
}

.pattern-dynamic-a2c4 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.backdrop-down-5b48 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.carousel-plasma-09e2 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.dim-4e84 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.static-427e {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.blue-b3de {
  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;
}

.blue-b3de img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.component_087c {
  flex: 1;
}

.component_087c h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.video_f3e8 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.current_c481 p {
  margin-bottom: 1rem;
}

.sidebar-bright-4b8c {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.logo_upper_47e7 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.table_steel_27d2 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.table_steel_27d2 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.north-ee84 h3 {
  margin-bottom: 1.5rem;
}

.north_4424 {
  display: grid;
  gap: 2rem;
}

.avatar-pressed-04d3 {
  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;
}

.avatar-pressed-04d3 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.avatar-pressed-04d3 h4 {
  margin: 0 0 0.25rem;
}

.avatar-pressed-04d3 p {
  margin: 0;
  font-size: 0.9375rem;
}

.blue_dfbd {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.white-c760 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.white-c760 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.white-c760 ul {
  margin: 1.5rem 0;
}

.white-c760 li {
  margin-bottom: 0.75rem;
}

.upper-4c0f {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.solid_fccc {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.rough_01f5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.filter_red_82dc h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.filter_red_82dc p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.card_hovered_1ea0 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.card_hovered_1ea0 a {
  color: rgba(255, 255, 255, 0.8);
}

.filter_324c {
  list-style: none;
}

.filter_324c li {
  margin-bottom: 0.75rem;
}

.filter_324c a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.filter_324c a:hover {
  color: white;
}

.popup_b5d5 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer_cold_1bcf {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.aside_smooth_9a60 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.border_962f {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.huge-afba {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .notification_fast_ac2e {
    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;
  }

  .highlight-hard-083a {
    font-size: 1.5rem !important;
  }

  .outer-0db9 {
    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 */
  .carousel_ada0,
  .form-a797,
  .link_f700,
  .outer-f194,
  .tag_left_61e3,
  .outline-2a56,
  .texture_last_65af,
  .title-silver-8018,
  .footer-420e,
  .red-cb73 {
    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 */
  .under_062e {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .primary_a1af {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .breadcrumb-prev-b7cc {
    flex-shrink: 0;
  }

  .component_087c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .input-large-395d,
  .banner-110e {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .banner-110e {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .module_next_6efb {
    display: none;
  }

  /* Show mobile actions */
  .menu-rough-6817 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .gradient_d5e6 {
    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;
  }

  .gradient_d5e6 svg {
    flex-shrink: 0;
  }

  .gradient_d5e6 .under-472a {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .gradient_d5e6 .cold-ec71 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .image_aa73 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .content-4d35 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .gradient_d5e6:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .dirty-d49b {
    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;
  }

  .dirty-d49b.fn-active-ab7a {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .dirty-d49b li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .dirty-d49b li:last-child {
    border-bottom: none;
  }

  .dirty-d49b a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .preview_edf2 {
    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;
  }

  .preview_edf2 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .preview_edf2 li:last-child {
    border-bottom: none;
  }

  .preview_edf2 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .input_right_c55e {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .header_basic_c56c {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .info_7d0f,
  .pressed_e2a7 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .info_7d0f {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .pressed_e2a7 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .preview_edf2.fn-active-ab7a {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .dirty-c674 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .link_north_38c3 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .text_6ec0 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .label-action-71f0 {
    margin-top: 0;
  }

  /* Hero section */
  .label-action-71f0 {
    padding: 2rem 0 1.5rem;
  }

  .outer-0db9 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .footer-420e {
    font-size: 1rem;
  }

  /* Hero brand image */
  .content_f6a1 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .under_b250 {
    max-width: 100%;
    border-radius: 8px;
  }

  .element_f5bd {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .search-orange-1baf {
    padding: 1rem;
  }

  .main-575f {
    font-size: 1.5rem;
  }

  .heading-cool-ec05 {
    font-size: 0.75rem;
  }

  .title-silver-8018 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .widget_b0c2 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .widget_b0c2 .menu_1b35 {
    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 */
  .article_basic_c2f3 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .center_eff8 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .wrapper_pro_9536 {
    margin-bottom: 1rem;
  }

  /* Author */
  .component_e4b3 {
    flex-direction: column;
  }

  .blue-b3de {
    flex-direction: column;
  }

  /* Quotes */
  .tag_left_61e3 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .picture_black_abfd {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .dim-4e84 {
    flex-direction: column;
  }

  .dim-4e84 .menu_1b35 {
    width: 100%;
  }

  /* Version comparison */
  .popup-north-d1ba {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .outer-91a6 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .rough_01f5 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .aside_smooth_9a60 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .form-b5e4,
  .status-3ed2,
  .mask_dirty_6e63,
  .hovered_3be0,
  .paper_95e8,
  .west-0b34 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .form-b5e4 table,
  .status-3ed2 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .card-warm-d8b6 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .notification_fast_ac2e {
    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;
  }

  .highlight-hard-083a {
    font-size: 1.25rem !important;
  }

  .outer-0db9 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .link_north_38c3 {
    position: fixed;
  }

  .text_6ec0 {
    padding: 0.625rem 0;
  }

  .pink-4235 img {
    height: 26px;
  }

  .preview_edf2 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .dirty-d49b {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .gradient_d5e6 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .gradient_d5e6 svg {
    width: 18px;
    height: 18px;
  }

  .gradient_d5e6 .under-472a {
    font-size: 0.7rem;
  }

  .gradient_d5e6 .cold-ec71 {
    font-size: 0.65rem;
  }

  .info_7d0f,
  .pressed_e2a7 {
    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, .notification_fast_ac2e, .row_cac5, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .content_f6a1 {
    padding: 1rem;
  }

  .element_f5bd {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .search-orange-1baf {
    padding: 0.875rem;
  }

  .main-575f {
    font-size: 1.25rem;
  }

  .widget_b0c2 .menu_1b35 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .outer-0db9 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .menu_1b35 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .paper-b5ae {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .center_eff8 {
    padding: 1rem;
  }

  .wrapper_pro_9536 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .carousel_ada0,
  .banner_1136,
  .motion-d88d,
  .thumbnail_small_8c24 {
    padding: 1rem;
  }
}

@media print {
  .link_north_38c3,
  .article_5550,
  .dirty-c674,
  .menu_1b35,
  .solid_fccc {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .notification_fast_ac2e {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.picture_f43a {
  margin-bottom: 3rem;
  text-align: center;
}

.highlight-hard-083a {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.liquid-58f3 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.hot-83e3,
.tabs-basic-df19 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.video-smooth-00c7 {
  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;
}

.video-smooth-00c7:hover {
  transform: translateY(-5px);
}

.video-smooth-00c7 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.video-smooth-00c7 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.message-liquid-44a4 {
  margin: 3rem 0;
}

.info-3cfc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.popup-wood-cb2e {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.popup-wood-cb2e:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.hover-7f01 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.backdrop-next-592b {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.row-thick-6936 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.last-f108 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.texture-up-457e {
  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;
}

.texture-up-457e:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.texture-up-457e.block_2312 {
  border-left: 4px solid var(--primary-color);
}

.accent_old_e5a5 {
  flex-shrink: 0;
}

.accent_old_e5a5 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.description_easy_9914 {
  flex: 1;
}

.description_easy_9914 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.picture_5056 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.photo-hot-4e23,
.badge_plasma_0b70,
.under_170f {
  margin-bottom: 1.5rem;
}

.photo-hot-4e23 h4,
.badge_plasma_0b70 h4,
.under_170f h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.photo-hot-4e23 ul,
.badge_plasma_0b70 ul,
.under_170f ul {
  list-style: none;
  padding: 0;
}

.photo-hot-4e23 li,
.badge_plasma_0b70 li,
.under_170f li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.photo-hot-4e23 li:before,
.badge_plasma_0b70 li:before,
.under_170f li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.frame-5076 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.frame-5076 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;
}

.frame-5076 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.slider-dirty-7148 { margin: 2rem 0; }
.pressed-95cd { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.pressed-95cd h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.hero-action-9e04 p { margin-bottom: 1rem; line-height: 1.7; }
.hero-action-9e04 strong { color: var(--text-primary); }
.hero-action-9e04 ul { list-style: none; padding-left: 0; }
.hero-action-9e04 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.hero-action-9e04 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.filter-8e2a { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.link_5541 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.link_5541:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.fixed_c17e { font-size: 3rem; margin-bottom: 1rem; }
.link_5541 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.link_5541 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.content-pink-29b2 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.content-pink-29b2 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.badge-glass-d6db { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.pattern_d343 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.silver-4ee7 { text-align: center; }
.popup_large_1ca6 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.pagination-cold-7cab { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.thick-1628 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.advanced-b406 { margin: 2rem 0; }
.glass-661b { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.glass-661b h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.glass-661b p, .glass-661b ul { line-height: 1.7; }
.glass-661b ul { list-style: none; padding-left: 0; }
.glass-661b ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.glass-661b ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.notice-inner-973a { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.hot_dda0 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.active_3aaf { text-align: center; }
.search_hovered_045f { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.info_819e { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.glass-dbfd { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.accent_top_3c84 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.inner-14e2 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.inner-14e2:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.inner-14e2 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.inner-14e2 p, .inner-14e2 ul { line-height: 1.7; }
.inner-14e2 ul { list-style: none; padding-left: 0; }
.inner-14e2 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.inner-14e2 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: d3c6 */
.shadow-element-r5 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.0;
}
