/* ============================================
   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 */
.link-80ae p,
.gradient_pressed_b032,
.slider-small-7639,
.filter-west-1c12,
.input_cabb,
.next-f5ad,
.lower-0a11,
.button-slow-613c {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.notice_9d1e {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.notice_9d1e > *,
.basic_c5ca,
.link-80ae,
.list-c89d {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .notice_9d1e {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .notice_9d1e {
    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 === */
.main_selected_68f1 {
  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 */
.main_selected_68f1.aside_silver_31fa {
  box-shadow: var(--shadow-md);
}

.pattern_thick_0942 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.frame-be0e img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.middle-9c16 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.surface_011e {
  display: none;
}

/* Hide mobile actions on desktop */
.liquid_45e6 {
  display: none;
}

.texture-c898 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.texture-c898 a:hover,
.texture-c898 a.fn-active-8e44 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.narrow-fe06 {
  margin-left: 1rem;
}

.pink_f678 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.fluid-72f8,
.primary-medium-f0de {
  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;
}

.fluid-72f8 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.fluid-72f8: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;
}

.primary-medium-f0de {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.primary-medium-f0de: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;
}

.fluid-72f8 svg,
.primary-medium-f0de svg {
  flex-shrink: 0;
}

.hero_plasma_a7dc {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.detail-103c {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.detail-103c::before,
.detail-103c::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.detail-103c::before {
  top: -7px;
}

.detail-103c::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.breadcrumb-first-308d {
  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 === */
.red_6dc0 {
  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);
}

.link-north-6f44 {
  margin: 0 0 2rem;
  text-align: center;
}

.bottom_d761 {
  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;
}

.bottom_d761:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.over-e66e {
  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);
}

.over-e66e strong {
  color: var(--primary-color);
  font-weight: 700;
}

.icon-west-d60e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.east-9bc8 {
  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;
}

.east-9bc8:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.preview_3be3 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.photo-black-55b1 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.basic_bfad {
  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);
}

.basic_bfad .solid-dbb5 {
  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;
}

.basic_bfad .solid-dbb5 svg {
  flex-shrink: 0;
}

.basic_bfad .panel_ece2 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.basic_bfad .panel_ece2: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);
}

.basic_bfad .full-208b {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.basic_bfad .full-208b: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) {
  .red_6dc0 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .bottom_d761 {
    max-width: 100%;
  }

  .icon-west-d60e {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .east-9bc8 {
    padding: 1rem;
  }

  .preview_3be3 {
    font-size: 1.5rem;
  }

  .photo-black-55b1 {
    font-size: 0.75rem;
  }

  .over-e66e {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .basic_bfad {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .basic_bfad .solid-dbb5 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .icon-west-d60e {
    grid-template-columns: 1fr;
  }
}

.black_eb1e {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer_e768 {
  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 === */
.cold-4446 {
  margin-bottom: 2.5rem;
}

.menu_d224 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.black_eb1e {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.title-fluid-845d {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.container-fluid-d390 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.backdrop-fee9 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.layout_f86d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.header_dirty_0a56 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.short-0661 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.item-9777 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.item-9777 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.accent-new-fb2c {
  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);
}

.pro_c2e5 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.sidebar_00ab {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.label_action_311b {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.over-e3c0 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.component-bottom-56e2 {
  display: grid;
  gap: 1rem;
}

.video-fc42 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.layout_af32 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.backdrop_clean_531a {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.link_large_86e5 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.complex_29ef {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.fluid_9f61 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.fluid_9f61 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.gradient_pressed_b032 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.badge-right-4873 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.info_5662 {
  display: grid;
  gap: 2rem;
}

.gold_3f9c {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.container-fluid-d390 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.title-fluid-845d {
  flex: 1;
}

.layout_f86d {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.layout_f86d a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.soft-8f12 {
  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;
}

.header_dirty_0a56 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.focused-7a07 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.focused-7a07 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.current_25dc {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.current_25dc a {
  font-size: 0.875rem;
  font-weight: 500;
}

.motion_70cc {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.motion_70cc strong {
  display: block;
  margin-bottom: 0.75rem;
}

.motion_70cc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.motion_70cc li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.border-3843 {
  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 === */
.selected-e86b {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.sort_blue_d56b {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.preview_1526 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.header_d9d6 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.header_d9d6 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.header_d9d6 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.header_d9d6 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;
}

.header_d9d6 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.header_d9d6 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.link-80ae {
  padding: 3rem 0 5rem;
}

.list-c89d {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.list-c89d.form-1d22 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.slider-small-7639 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.dynamic_0a6c {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.gallery-first-0433 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.gallery-first-0433 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.advanced-ef71 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.sort-f816 {
  text-align: center;
}

.tabs-focused-75b5 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.in_978c {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.carousel-selected-32a5 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.next-f5ad {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.filter-west-1c12 {
  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;
}

.filter-west-1c12 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.filter-west-1c12:hover {
  box-shadow: var(--shadow-lg);
}

.filter-west-1c12.thumbnail_c62b {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.filter-west-1c12 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.filter-west-1c12 ul {
  margin: 1rem 0;
}

.filter-west-1c12 li {
  margin-bottom: 0.75rem;
}

.row_solid_2e92 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.focused_b4d7 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.focused_b4d7 a {
  font-weight: 600;
}

/* === Data Tables === */
.old-bac8 {
  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;
}

.old-bac8 table {
  width: 100%;
  min-width: 600px;
}

.old-bac8 thead {
  background-color: var(--primary-color);
  color: white;
}

.old-bac8 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.old-bac8 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.old-bac8 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.old-bac8 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.box_huge_a621 {
  list-style: none;
  margin: 1.5rem 0;
}

.box_huge_a621 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.box_huge_a621 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.link-1002::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-8e44::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 === */
.slider_warm_32b4 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.logo_pro_27bc {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.logo_pro_27bc img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.logo_pro_27bc strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.logo_pro_27bc span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.slider_warm_32b4 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.lower-0a11 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.lower-0a11::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.heading_9949 {
  position: relative;
  margin-bottom: 3rem;
}

.status_stale_63b0 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.status_stale_63b0 .detail-inner-0947 {
  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;
}

.cold_0e4b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.cold_0e4b h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.cold_0e4b ul {
  margin: 1rem 0;
}

.cold_0e4b li {
  margin-bottom: 0.75rem;
}

.motion-441f {
  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 === */
.last_6302 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.last_6302 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.hidden_c4c3 {
  list-style: none;
  margin: 1.5rem 0;
}

.hidden_c4c3 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.hidden_c4c3 a {
  font-weight: 600;
}

.highlight_99f2 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.button-slow-613c {
  margin: 2.5rem 0;
}

.progress-rough-f270 {
  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;
}

.progress-rough-f270:hover {
  box-shadow: var(--shadow-lg);
}

.progress-rough-f270.component-3766 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.sort_active_6538 {
  flex-shrink: 0;
}

.sort_active_6538 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);
}

.outline-tiny-ae00 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.slow-be32,
.fluid-fc21,
.full_1503 {
  width: 100%;
  margin: 1.5rem 0;
}

.widget-43ee {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.widget-43ee strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.new-2599 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.new-2599 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.panel_action_5092 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.panel_action_5092 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.nav-0208 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.pressed-71ca {
  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;
}

.pressed-71ca:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pressed-71ca.accent-next-7a45 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.pressed-71ca .paragraph-66ff {
  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;
}

.pressed-71ca h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.list_a856 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.status_down_c0f2 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.status_down_c0f2 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.video_under_4cc0 {
  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 === */
.solid-dbb5 {
  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;
}

.panel_ece2 {
  background-color: var(--primary-color);
  color: white;
}

.panel_ece2:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.full-208b {
  background-color: var(--text-secondary);
  color: white;
}

.full-208b:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.focus_1643 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.focus_1643:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.border_narrow_9fca {
  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;
}

.border_narrow_9fca:hover {
  background-color: var(--primary-dark);
}

.pink_c33f {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.paper-42fa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.progress_824f {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.advanced_cb96 {
  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 === */
.bronze_ec2d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.motion_0988 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.motion_0988 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.carousel_under_5c1d {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.pattern-8442 {
  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;
}

.panel_0801 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.cool-828f {
  list-style: none;
  counter-reset: rank-counter;
}

.cool-828f li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.cool-828f 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;
}

.texture-7d4c {
  list-style: none;
}

.texture-7d4c li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.link_3628 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.hot_3fb3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hot_3fb3 .focused_1368 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.hot_3fb3 .feature-6f41 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.pattern-2f84 {
  margin-top: 3rem;
}

.description_4651 {
  width: 100%;
}

.active_548a {
  background-color: #fef3c7;
}

.solid-fd26 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.text-hovered-6940 {
  margin: 3rem 0;
}

.wide_1f80 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.logo_9b5d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.logo_9b5d:hover {
  box-shadow: var(--shadow-lg);
}

.logo_9b5d.column-cdb2 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.sidebar_active_4b7c {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.wood_040c strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.wood_040c span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.alert_fresh_e1e3 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.logo_9b5d blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.texture-focused-7f89 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.selected_da9b {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.icon-gas-6ef4 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.hidden-cab0 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.wrapper_06b0 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.west-c616 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.west-732f {
  max-width: 900px;
  margin: 0 auto;
}

.current-6ddf {
  margin: 2rem 0;
}

.photo-6d66 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.photo-6d66 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.photo-6d66 summary::-webkit-details-marker {
  display: none;
}

.photo-6d66 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.main_74b4 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.photo-6d66[open] .main_74b4 {
  transform: rotate(45deg);
}

.up-d6d5 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.up-d6d5 p:last-child {
  margin-bottom: 0;
}

.message-1a57 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.filter_under_29cc {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.fluid-c1d8 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.fluid-c1d8 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.fluid-c1d8 .solid-dbb5 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.progress-c106 {
  max-width: 900px;
  margin: 0 auto;
}

.filter_over_cab5 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.orange_7f89 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.orange_7f89.fn-success-8e44 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.stale-9127 {
  font-size: 3rem;
  line-height: 1;
}

.modal_orange_ad0c h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.summary_b7c2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.top_75bf,
.slider_plasma_0925 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.top_75bf h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.slider_plasma_0925 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.text-new-1827,
.primary-stale-9703 {
  margin: 1.5rem 0;
}

.text-new-1827 li,
.primary-stale-9703 li {
  margin-bottom: 1rem;
}

.complex-b075 {
  margin: 3rem 0;
}

.fast_1f7d {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.fast_1f7d h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.fast_1f7d ol {
  margin: 1rem 0;
}

.fast_1f7d li {
  margin-bottom: 0.75rem;
}

.banner-b986 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.orange-1f51 {
  margin: 2rem 0;
}

.picture-glass-9085 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.menu-fixed-1ead {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.popup_cc45 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.surface_tiny_227a {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.texture-d0d7 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.notice-239d {
  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;
}

.notice-239d img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.backdrop-fee9 {
  flex: 1;
}

.backdrop-fee9 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.down-0b08 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.slider_2bef p {
  margin-bottom: 1rem;
}

.frame_7cf0 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.shade_f8e8 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.section-c001 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.section-c001 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.fresh_9c02 h3 {
  margin-bottom: 1.5rem;
}

.fixed-171f {
  display: grid;
  gap: 2rem;
}

.overlay_right_2d24 {
  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;
}

.overlay_right_2d24 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.overlay_right_2d24 h4 {
  margin: 0 0 0.25rem;
}

.overlay_right_2d24 p {
  margin: 0;
  font-size: 0.9375rem;
}

.silver-fc55 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.lite_b659 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.lite_b659 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.lite_b659 ul {
  margin: 1.5rem 0;
}

.lite_b659 li {
  margin-bottom: 0.75rem;
}

.inner-7117 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.header-008f {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.icon_clean_65bc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.element_4865 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.element_4865 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.container_8da9 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.container_8da9 a {
  color: rgba(255, 255, 255, 0.8);
}

.frame_ea5d {
  list-style: none;
}

.frame_ea5d li {
  margin-bottom: 0.75rem;
}

.frame_ea5d a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.frame_ea5d a:hover {
  color: white;
}

.gallery_5b94 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.label-258f {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.article-b85c {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.photo_9bb2 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.shade_06c7 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .notice_9d1e {
    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;
  }

  .list-8ffa {
    font-size: 1.5rem !important;
  }

  .menu_d224 {
    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 */
  .filter-west-1c12,
  .input_cabb,
  .cold_0e4b,
  .outline-tiny-ae00,
  .sidebar_active_4b7c,
  .logo_9b5d,
  .up-d6d5,
  .over-e66e,
  .gradient_pressed_b032,
  .slider-small-7639 {
    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 */
  .black_eb1e {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .title-fluid-845d {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .container-fluid-d390 {
    flex-shrink: 0;
  }

  .backdrop-fee9 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .layout_f86d,
  .header_dirty_0a56 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .header_dirty_0a56 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .middle-9c16 {
    display: none;
  }

  /* Show mobile actions */
  .liquid_45e6 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .complex_8873 {
    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;
  }

  .complex_8873 svg {
    flex-shrink: 0;
  }

  .complex_8873 .avatar_top_cf6e {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .complex_8873 .photo_plasma_1977 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .icon-0ffe {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .fluid-38cd {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .complex_8873:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .surface_011e {
    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;
  }

  .surface_011e.fn-active-8e44 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .surface_011e li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .surface_011e li:last-child {
    border-bottom: none;
  }

  .surface_011e a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .texture-c898 {
    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;
  }

  .texture-c898 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .texture-c898 li:last-child {
    border-bottom: none;
  }

  .texture-c898 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .narrow-fe06 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .pink_f678 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .fluid-72f8,
  .primary-medium-f0de {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .fluid-72f8 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .primary-medium-f0de {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .texture-c898.fn-active-8e44 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hero_plasma_a7dc {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .main_selected_68f1 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .pattern_thick_0942 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .breadcrumb-first-308d {
    margin-top: 0;
  }

  /* Hero section */
  .breadcrumb-first-308d {
    padding: 2rem 0 1.5rem;
  }

  .menu_d224 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .gradient_pressed_b032 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .red_6dc0 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .bottom_d761 {
    max-width: 100%;
    border-radius: 8px;
  }

  .icon-west-d60e {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .east-9bc8 {
    padding: 1rem;
  }

  .preview_3be3 {
    font-size: 1.5rem;
  }

  .photo-black-55b1 {
    font-size: 0.75rem;
  }

  .over-e66e {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .basic_bfad {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .basic_bfad .solid-dbb5 {
    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 */
  .preview_1526 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .progress-rough-f270 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .sort_active_6538 {
    margin-bottom: 1rem;
  }

  /* Author */
  .gold_3f9c {
    flex-direction: column;
  }

  .notice-239d {
    flex-direction: column;
  }

  /* Quotes */
  .sidebar_active_4b7c {
    flex-direction: column;
  }

  /* Pros/Cons */
  .summary_b7c2 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .surface_tiny_227a {
    flex-direction: column;
  }

  .surface_tiny_227a .solid-dbb5 {
    width: 100%;
  }

  /* Version comparison */
  .nav-0208 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .bronze_ec2d {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .icon_clean_65bc {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .article-b85c {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .old-bac8,
  .fluid-fc21,
  .table_lite_1bec,
  .description_4651,
  .slow-be32,
  .full_1503 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .old-bac8 table,
  .fluid-fc21 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .video_under_4cc0 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .notice_9d1e {
    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;
  }

  .list-8ffa {
    font-size: 1.25rem !important;
  }

  .menu_d224 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .main_selected_68f1 {
    position: fixed;
  }

  .pattern_thick_0942 {
    padding: 0.625rem 0;
  }

  .frame-be0e img {
    height: 26px;
  }

  .texture-c898 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .surface_011e {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .complex_8873 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .complex_8873 svg {
    width: 18px;
    height: 18px;
  }

  .complex_8873 .avatar_top_cf6e {
    font-size: 0.7rem;
  }

  .complex_8873 .photo_plasma_1977 {
    font-size: 0.65rem;
  }

  .fluid-72f8,
  .primary-medium-f0de {
    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, .notice_9d1e, .basic_c5ca, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .red_6dc0 {
    padding: 1rem;
  }

  .icon-west-d60e {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .east-9bc8 {
    padding: 0.875rem;
  }

  .preview_3be3 {
    font-size: 1.25rem;
  }

  .basic_bfad .solid-dbb5 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .menu_d224 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .solid-dbb5 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .pink_c33f {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .progress-rough-f270 {
    padding: 1rem;
  }

  .sort_active_6538 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .filter-west-1c12,
  .pro_fb3d,
  .tertiary-simple-20ea,
  .gradient-dynamic-d151 {
    padding: 1rem;
  }
}

@media print {
  .main_selected_68f1,
  .selected-e86b,
  .hero_plasma_a7dc,
  .solid-dbb5,
  .header-008f {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .notice_9d1e {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.content_cc85 {
  margin-bottom: 3rem;
  text-align: center;
}

.list-8ffa {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.tertiary_3893 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.aside-bright-f486,
.component-next-a4ce {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.progress_focused_0439 {
  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;
}

.progress_focused_0439:hover {
  transform: translateY(-5px);
}

.progress_focused_0439 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.progress_focused_0439 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.column_small_cd4c {
  margin: 3rem 0;
}

.pattern-blue-e5f8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.wide_fc02 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.wide_fc02:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.container_b099 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.description_fluid_0151 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.gold_c114 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.feature_wood_fd85 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.pro_7066 {
  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;
}

.pro_7066:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.pro_7066.heading_copper_15f4 {
  border-left: 4px solid var(--primary-color);
}

.gradient_middle_32b0 {
  flex-shrink: 0;
}

.gradient_middle_32b0 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.silver-db00 {
  flex: 1;
}

.silver-db00 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pagination-tiny-1641 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.texture-363c,
.content-next-2e85,
.content-over-c9cf {
  margin-bottom: 1.5rem;
}

.texture-363c h4,
.content-next-2e85 h4,
.content-over-c9cf h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.texture-363c ul,
.content-next-2e85 ul,
.content-over-c9cf ul {
  list-style: none;
  padding: 0;
}

.texture-363c li,
.content-next-2e85 li,
.content-over-c9cf li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.texture-363c li:before,
.content-next-2e85 li:before,
.content-over-c9cf li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.filter-48b7 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.filter-48b7 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;
}

.filter-48b7 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.box_hard_d96e { margin: 2rem 0; }
.notice_active_bc1e { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.notice_active_bc1e h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.smooth_44ac p { margin-bottom: 1rem; line-height: 1.7; }
.smooth_44ac strong { color: var(--text-primary); }
.smooth_44ac ul { list-style: none; padding-left: 0; }
.smooth_44ac ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.smooth_44ac ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.last-df00 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.advanced-5960 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.advanced-5960:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.outline-31d7 { font-size: 3rem; margin-bottom: 1rem; }
.advanced-5960 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.advanced-5960 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.fixed_20fa { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.fixed_20fa span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.accent-first-7fb0 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.module_2811 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.feature-new-0406 { text-align: center; }
.bottom_5949 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.container-inner-7af4 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.hero_blue_c6df { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.lower_3099 { margin: 2rem 0; }
.fast-b637 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.fast-b637 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.fast-b637 p, .fast-b637 ul { line-height: 1.7; }
.fast-b637 ul { list-style: none; padding-left: 0; }
.fast-b637 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.fast-b637 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.hot-34a8 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.carousel-basic-59bc { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.right-156e { text-align: center; }
.focus_f791 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.tooltip-e6b8 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.detail_145e { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.short-2ff5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.thick-b977 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.thick-b977:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.thick-b977 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.thick-b977 p, .thick-b977 ul { line-height: 1.7; }
.thick-b977 ul { list-style: none; padding-left: 0; }
.thick-b977 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.thick-b977 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: d56d */
.promo-block-a1 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.0;
}
