/* ============================================
   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 */
.paragraph_dim_38b0 p,
.glass_db93,
.text_a56a,
.gallery_55be,
.disabled-hard-7203,
.dynamic-a14c,
.notice_selected_e5fa,
.pattern_a278 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.mask-bronze-f949 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.mask-bronze-f949 > *,
.fluid-7580,
.paragraph_dim_38b0,
.nav_new_54e8 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .mask-bronze-f949 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .mask-bronze-f949 {
    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 === */
.rough-3b51 {
  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 */
.rough-3b51.glass_39a5 {
  box-shadow: var(--shadow-md);
}

.texture-993d {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.info-current-e8a2 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.active_ec42 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.avatar-next-7afb {
  display: none;
}

/* Hide mobile actions on desktop */
.message-211f {
  display: none;
}

.easy_449c a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.easy_449c a:hover,
.easy_449c a.fn-active-b5dc {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.summary-advanced-56b3 {
  margin-left: 1rem;
}

.silver-2a43 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.secondary_640d,
.solid-05c9 {
  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;
}

.secondary_640d {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.secondary_640d: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;
}

.solid-05c9 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.solid-05c9: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;
}

.secondary_640d svg,
.solid-05c9 svg {
  flex-shrink: 0;
}

.first_c67e {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.bronze_822f {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.bronze_822f::before,
.bronze_822f::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.bronze_822f::before {
  top: -7px;
}

.bronze_822f::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.plasma-bf65 {
  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 === */
.hero-d92e {
  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);
}

.badge-f86a {
  margin: 0 0 2rem;
  text-align: center;
}

.south-d6a5 {
  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;
}

.south-d6a5:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.label_middle_5020 {
  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);
}

.label_middle_5020 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.first_43c5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.photo-motion-cbb4 {
  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;
}

.photo-motion-cbb4:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.filter_7d23 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.rough-5ee3 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.list_last_cc35 {
  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);
}

.list_last_cc35 .popup_6bbe {
  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;
}

.list_last_cc35 .popup_6bbe svg {
  flex-shrink: 0;
}

.list_last_cc35 .input-72ea {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.list_last_cc35 .input-72ea: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);
}

.list_last_cc35 .mini-afcf {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.list_last_cc35 .mini-afcf: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) {
  .hero-d92e {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .south-d6a5 {
    max-width: 100%;
  }

  .first_43c5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .photo-motion-cbb4 {
    padding: 1rem;
  }

  .filter_7d23 {
    font-size: 1.5rem;
  }

  .rough-5ee3 {
    font-size: 0.75rem;
  }

  .label_middle_5020 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .list_last_cc35 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .list_last_cc35 .popup_6bbe {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .first_43c5 {
    grid-template-columns: 1fr;
  }
}

.chip_cold_3a23 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.label-gold-892e {
  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 === */
.list_aa8b {
  margin-bottom: 2.5rem;
}

.backdrop-hot-07fb {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.chip_cold_3a23 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.status-edd9 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.heading_3812 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.thumbnail-914b {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.wide_068e {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.full_1387 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.focused-5c4d {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.background-6c99 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.background-6c99 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.mask-4cc2 {
  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);
}

.tag_thick_3dbc {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.highlight_c204 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.top-f632 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.box_dim_c35f {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.middle-6955 {
  display: grid;
  gap: 1rem;
}

.dim_a762 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.menu_5fa5 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.layout_hard_86e2 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.background-0e21 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.avatar_11a4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.element-3e8b {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.element-3e8b p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.glass_db93 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.pagination_cf35 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.form_tall_7805 {
  display: grid;
  gap: 2rem;
}

.thumbnail-a762 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.heading_3812 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.status-edd9 {
  flex: 1;
}

.wide_068e {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.wide_068e a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.main_bb54 {
  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;
}

.full_1387 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.module_7a58 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.module_7a58 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.hero_paper_6ea5 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.hero_paper_6ea5 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.shadow_first_84c1 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.shadow_first_84c1 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.shadow_first_84c1 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.shadow_first_84c1 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.breadcrumb-55f3 {
  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 === */
.aside-blue-52a5 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.tag-4e39 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.basic-076a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.cool-0168 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.cool-0168 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.cool-0168 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.cool-0168 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-0168 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.cool-0168 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.paragraph_dim_38b0 {
  padding: 3rem 0 5rem;
}

.nav_new_54e8 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.nav_new_54e8.first_9416 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.text_a56a {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.selected_a8d9 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.picture_yellow_8c62 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.picture_yellow_8c62 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.steel-30ae {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.east_12a7 {
  text-align: center;
}

.slider_7c87 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.highlight-dd46 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.column-medium-af1b {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.dynamic-a14c {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.gallery_55be {
  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;
}

.gallery_55be * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.gallery_55be:hover {
  box-shadow: var(--shadow-lg);
}

.gallery_55be.short-aeee {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.gallery_55be h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.gallery_55be ul {
  margin: 1rem 0;
}

.gallery_55be li {
  margin-bottom: 0.75rem;
}

.message-b9f0 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.red_0a21 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.red_0a21 a {
  font-weight: 600;
}

/* === Data Tables === */
.new-cb1a {
  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;
}

.new-cb1a table {
  width: 100%;
  min-width: 600px;
}

.new-cb1a thead {
  background-color: var(--primary-color);
  color: white;
}

.new-cb1a th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.new-cb1a td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.new-cb1a tbody tr:hover {
  background-color: var(--bg-secondary);
}

.new-cb1a tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.grid_thick_7a62 {
  list-style: none;
  margin: 1.5rem 0;
}

.grid_thick_7a62 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.grid_thick_7a62 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.block-center-611a::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-b5dc::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 === */
.section_hard_c357 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.label_copper_582e {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.label_copper_582e img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.label_copper_582e strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.label_copper_582e span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.section_hard_c357 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.notice_selected_e5fa {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.notice_selected_e5fa::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.right-63ab {
  position: relative;
  margin-bottom: 3rem;
}

.text_fixed_2bfb {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.text_fixed_2bfb .cool_e87f {
  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;
}

.large_9fb9 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.large_9fb9 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.large_9fb9 ul {
  margin: 1rem 0;
}

.large_9fb9 li {
  margin-bottom: 0.75rem;
}

.soft-f5dc {
  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 === */
.basic_602e {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.basic_602e h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.secondary_22f5 {
  list-style: none;
  margin: 1.5rem 0;
}

.secondary_22f5 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.secondary_22f5 a {
  font-weight: 600;
}

.form_large_6ca1 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.pattern_a278 {
  margin: 2.5rem 0;
}

.avatar-hot-d9e7 {
  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;
}

.avatar-hot-d9e7:hover {
  box-shadow: var(--shadow-lg);
}

.avatar-hot-d9e7.content_current_b88e {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.hover_5571 {
  flex-shrink: 0;
}

.hover_5571 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);
}

.title_c5d4 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.caption_bac9,
.component_f85a,
.grid_dark_3f29 {
  width: 100%;
  margin: 1.5rem 0;
}

.picture-03d0 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.picture-03d0 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.pagination-ab62 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.pagination-ab62 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.plasma_dd10 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.plasma_dd10 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.gold_b007 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.clean-81c7 {
  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;
}

.clean-81c7:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.clean-81c7.container-099e {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.clean-81c7 .east-5d6f {
  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;
}

.clean-81c7 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.module-fluid-56b5 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.video-65cd {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.video-65cd label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.title_north_6cc8 {
  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 === */
.popup_6bbe {
  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;
}

.input-72ea {
  background-color: var(--primary-color);
  color: white;
}

.input-72ea:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.mini-afcf {
  background-color: var(--text-secondary);
  color: white;
}

.mini-afcf:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.stone_4533 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.stone_4533:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.accordion-28ed {
  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;
}

.accordion-28ed:hover {
  background-color: var(--primary-dark);
}

.dropdown_active_1679 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.fresh-d015 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.tag-white-4478 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.item_light_b957 {
  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 === */
.video-7f3c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.module-66dc {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.module-66dc h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.wood_7ae9 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.rough_d25f {
  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;
}

.dirty-8b97 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.light_cd38 {
  list-style: none;
  counter-reset: rank-counter;
}

.light_cd38 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.light_cd38 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;
}

.solid-4c54 {
  list-style: none;
}

.solid-4c54 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.content_6f19 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.under_bc47 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.under_bc47 .main_pro_1f07 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.under_bc47 .tag-motion-efef {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.border_2e2f {
  margin-top: 3rem;
}

.green-38e9 {
  width: 100%;
}

.lite-d395 {
  background-color: #fef3c7;
}

.lite_6cb4 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.accordion_advanced_8712 {
  margin: 3rem 0;
}

.summary_solid_6819 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.box_c9a9 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.box_c9a9:hover {
  box-shadow: var(--shadow-lg);
}

.box_c9a9.old_3726 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.feature-f118 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.block-7089 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.block-7089 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.mini_c90e {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.box_c9a9 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.black-62eb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.outline_complex_a37e {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.row-c9a5 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.detail-fluid-cc46 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.out_c49a {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.video_cdc3 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.search_clean_2970 {
  max-width: 900px;
  margin: 0 auto;
}

.overlay_0afe {
  margin: 2rem 0;
}

.pattern-98ff {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.pattern-98ff summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.pattern-98ff summary::-webkit-details-marker {
  display: none;
}

.pattern-98ff summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.input-inner-5ab0 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.pattern-98ff[open] .input-inner-5ab0 {
  transform: rotate(45deg);
}

.texture-old-659f {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.texture-old-659f p:last-child {
  margin-bottom: 0;
}

.status-e8d7 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.accordion-47ea {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.picture-action-d770 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.picture-action-d770 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.picture-action-d770 .popup_6bbe {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.wide_467f {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-d7af {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.footer-lite-ebd8 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.footer-lite-ebd8.fn-success-b5dc {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.shade-inner-27d3 {
  font-size: 3rem;
  line-height: 1;
}

.white_971f h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.preview_7534 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.pink_7f23,
.menu-e831 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.pink_7f23 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.menu-e831 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.complex-750f,
.right-7079 {
  margin: 1.5rem 0;
}

.complex-750f li,
.right-7079 li {
  margin-bottom: 1rem;
}

.module_f98f {
  margin: 3rem 0;
}

.mask_9cea {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.mask_9cea h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.mask_9cea ol {
  margin: 1rem 0;
}

.mask_9cea li {
  margin-bottom: 0.75rem;
}

.background-6ec8 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.row_2cfc {
  margin: 2rem 0;
}

.hard-214e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.search-dark-69dc {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.secondary_6ce2 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.first_f1de {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.mask_action_f0cc {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.column-d619 {
  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;
}

.column-d619 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.thumbnail-914b {
  flex: 1;
}

.thumbnail-914b h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.avatar_bottom_b9a8 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.info_c283 p {
  margin-bottom: 1rem;
}

.component_top_3014 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.status-iron-e3c3 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.feature-8ea3 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.feature-8ea3 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.carousel-6f81 h3 {
  margin-bottom: 1.5rem;
}

.message_cb29 {
  display: grid;
  gap: 2rem;
}

.breadcrumb_paper_4284 {
  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;
}

.breadcrumb_paper_4284 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.breadcrumb_paper_4284 h4 {
  margin: 0 0 0.25rem;
}

.breadcrumb_paper_4284 p {
  margin: 0;
  font-size: 0.9375rem;
}

.slider-in-a5eb {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.wood_42f7 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.wood_42f7 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.wood_42f7 ul {
  margin: 1.5rem 0;
}

.wood_42f7 li {
  margin-bottom: 0.75rem;
}

.dirty-d799 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.gallery-lower-75c2 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.dark-e573 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.filter-wood-c8b7 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.filter-wood-c8b7 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.north-3655 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.north-3655 a {
  color: rgba(255, 255, 255, 0.8);
}

.list-left-18a3 {
  list-style: none;
}

.list-left-18a3 li {
  margin-bottom: 0.75rem;
}

.list-left-18a3 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.list-left-18a3 a:hover {
  color: white;
}

.outline-basic-4318 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.middle_6b05 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.inner-49ee {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.component_ed0c {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.in_cfec {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .mask-bronze-f949 {
    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;
  }

  .current_0d80 {
    font-size: 1.5rem !important;
  }

  .backdrop-hot-07fb {
    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 */
  .gallery_55be,
  .disabled-hard-7203,
  .large_9fb9,
  .title_c5d4,
  .feature-f118,
  .box_c9a9,
  .texture-old-659f,
  .label_middle_5020,
  .glass_db93,
  .text_a56a {
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }

  /* Long words in Indonesian */
  ul, ol {
    padding-left: 1.5rem;
    max-width: 100%;
  }

  /* Fix author-info layout on mobile */
  .chip_cold_3a23 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .status-edd9 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .heading_3812 {
    flex-shrink: 0;
  }

  .thumbnail-914b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .wide_068e,
  .full_1387 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .full_1387 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .active_ec42 {
    display: none;
  }

  /* Show mobile actions */
  .message-211f {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .banner-632c {
    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;
  }

  .banner-632c svg {
    flex-shrink: 0;
  }

  .banner-632c .heading-714d {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .banner-632c .narrow_e39c {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .tiny_2f30 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .input-9376 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .banner-632c:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .avatar-next-7afb {
    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;
  }

  .avatar-next-7afb.fn-active-b5dc {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .avatar-next-7afb li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .avatar-next-7afb li:last-child {
    border-bottom: none;
  }

  .avatar-next-7afb a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .easy_449c {
    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;
  }

  .easy_449c li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .easy_449c li:last-child {
    border-bottom: none;
  }

  .easy_449c a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .summary-advanced-56b3 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .silver-2a43 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .secondary_640d,
  .solid-05c9 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .secondary_640d {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .solid-05c9 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .easy_449c.fn-active-b5dc {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .first_c67e {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .rough-3b51 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .texture-993d {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .plasma-bf65 {
    margin-top: 0;
  }

  /* Hero section */
  .plasma-bf65 {
    padding: 2rem 0 1.5rem;
  }

  .backdrop-hot-07fb {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .glass_db93 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .hero-d92e {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .south-d6a5 {
    max-width: 100%;
    border-radius: 8px;
  }

  .first_43c5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .photo-motion-cbb4 {
    padding: 1rem;
  }

  .filter_7d23 {
    font-size: 1.5rem;
  }

  .rough-5ee3 {
    font-size: 0.75rem;
  }

  .label_middle_5020 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .list_last_cc35 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .list_last_cc35 .popup_6bbe {
    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 */
  .basic-076a {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .avatar-hot-d9e7 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .hover_5571 {
    margin-bottom: 1rem;
  }

  /* Author */
  .thumbnail-a762 {
    flex-direction: column;
  }

  .column-d619 {
    flex-direction: column;
  }

  /* Quotes */
  .feature-f118 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .preview_7534 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .first_f1de {
    flex-direction: column;
  }

  .first_f1de .popup_6bbe {
    width: 100%;
  }

  /* Version comparison */
  .gold_b007 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .video-7f3c {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .dark-e573 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .inner-49ee {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .new-cb1a,
  .component_f85a,
  .article-2a4c,
  .green-38e9,
  .caption_bac9,
  .grid_dark_3f29 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .new-cb1a table,
  .component_f85a table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .title_north_6cc8 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .mask-bronze-f949 {
    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;
  }

  .current_0d80 {
    font-size: 1.25rem !important;
  }

  .backdrop-hot-07fb {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .rough-3b51 {
    position: fixed;
  }

  .texture-993d {
    padding: 0.625rem 0;
  }

  .info-current-e8a2 img {
    height: 26px;
  }

  .easy_449c {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .avatar-next-7afb {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .banner-632c {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .banner-632c svg {
    width: 18px;
    height: 18px;
  }

  .banner-632c .heading-714d {
    font-size: 0.7rem;
  }

  .banner-632c .narrow_e39c {
    font-size: 0.65rem;
  }

  .secondary_640d,
  .solid-05c9 {
    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, .mask-bronze-f949, .fluid-7580, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .hero-d92e {
    padding: 1rem;
  }

  .first_43c5 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .photo-motion-cbb4 {
    padding: 0.875rem;
  }

  .filter_7d23 {
    font-size: 1.25rem;
  }

  .list_last_cc35 .popup_6bbe {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .backdrop-hot-07fb {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .popup_6bbe {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .dropdown_active_1679 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .avatar-hot-d9e7 {
    padding: 1rem;
  }

  .hover_5571 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .gallery_55be,
  .preview_6b89,
  .text-old-8efe,
  .input_north_2e5c {
    padding: 1rem;
  }
}

@media print {
  .rough-3b51,
  .aside-blue-52a5,
  .first_c67e,
  .popup_6bbe,
  .gallery-lower-75c2 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .mask-bronze-f949 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.aside-0717 {
  margin-bottom: 3rem;
  text-align: center;
}

.current_0d80 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.detail_099d {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.banner-dynamic-89b6,
.copper_29a6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.bright_9d76 {
  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;
}

.bright_9d76:hover {
  transform: translateY(-5px);
}

.bright_9d76 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.bright_9d76 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.article_dark_3b06 {
  margin: 3rem 0;
}

.fast-fafa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.alert_wood_06b8 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.alert_wood_06b8:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.menu-up-a346 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.overlay_east_b52c {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.hidden_hard_e5bd {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.slow-b021 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.banner-2286 {
  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;
}

.banner-2286:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.banner-2286.column-dc9c {
  border-left: 4px solid var(--primary-color);
}

.bronze_7ca8 {
  flex-shrink: 0;
}

.bronze_7ca8 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.warm-1dfd {
  flex: 1;
}

.warm-1dfd h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.breadcrumb_clean_4bd0 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.carousel_hovered_1812,
.primary-blue-edb6,
.badge_middle_6865 {
  margin-bottom: 1.5rem;
}

.carousel_hovered_1812 h4,
.primary-blue-edb6 h4,
.badge_middle_6865 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.carousel_hovered_1812 ul,
.primary-blue-edb6 ul,
.badge_middle_6865 ul {
  list-style: none;
  padding: 0;
}

.carousel_hovered_1812 li,
.primary-blue-edb6 li,
.badge_middle_6865 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.carousel_hovered_1812 li:before,
.primary-blue-edb6 li:before,
.badge_middle_6865 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.video_steel_f5b4 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.video_steel_f5b4 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;
}

.video_steel_f5b4 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.link_glass_1ff7 { margin: 2rem 0; }
.filter-4844 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.filter-4844 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.layout_middle_a00a p { margin-bottom: 1rem; line-height: 1.7; }
.layout_middle_a00a strong { color: var(--text-primary); }
.layout_middle_a00a ul { list-style: none; padding-left: 0; }
.layout_middle_a00a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.layout_middle_a00a ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.badge_e477 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.shade-hovered-f6cc { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.shade-hovered-f6cc:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.secondary-d99a { font-size: 3rem; margin-bottom: 1rem; }
.shade-hovered-f6cc h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.shade-hovered-f6cc p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.section_hard_6bbd { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.section_hard_6bbd span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.fluid-4da6 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.liquid_8613 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.prev_9939 { text-align: center; }
.active-slow-f14b { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.pressed_81a2 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.paragraph_huge_4436 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.north_c05b { margin: 2rem 0; }
.copper-9e7d { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.copper-9e7d h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.copper-9e7d p, .copper-9e7d ul { line-height: 1.7; }
.copper-9e7d ul { list-style: none; padding-left: 0; }
.copper-9e7d ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.copper-9e7d ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.disabled_white_45d0 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.link-tiny-716e { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.box_262c { text-align: center; }
.red-a371 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.silver_93ea { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.stale-dde3 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.old-b783 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.gallery-solid-85f6 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.gallery-solid-85f6:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.gallery-solid-85f6 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.gallery-solid-85f6 p, .gallery-solid-85f6 ul { line-height: 1.7; }
.gallery-solid-85f6 ul { list-style: none; padding-left: 0; }
.gallery-solid-85f6 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.gallery-solid-85f6 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 94fa */
.phantom-card-p4 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.2;
}
