/* ============================================
   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 */
.hover_c0c9 p,
.input_white_c652,
.message-61cd,
.fluid-15dc,
.link_d8a4,
.chip-liquid-6ca4,
.hot_6343,
.heading-a7a6 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.frame-warm-15a3 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.frame-warm-15a3 > *,
.middle_1045,
.hover_c0c9,
.glass-f7ba {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .frame-warm-15a3 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .frame-warm-15a3 {
    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 === */
.stone_7820 {
  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 */
.stone_7820.column-76e5 {
  box-shadow: var(--shadow-md);
}

.gradient-a728 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.label-1fa9 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.menu_7144 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.surface-a8e2 {
  display: none;
}

/* Hide mobile actions on desktop */
.search_47ae {
  display: none;
}

.thick_8237 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.thick_8237 a:hover,
.thick_8237 a.fn-active-da19 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.list-inner-cf52 {
  margin-left: 1rem;
}

.accordion-758c {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.block-e773,
.label-advanced-0e64 {
  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;
}

.block-e773 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.block-e773: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;
}

.label-advanced-0e64 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.label-advanced-0e64: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;
}

.block-e773 svg,
.label-advanced-0e64 svg {
  flex-shrink: 0;
}

.red_b46b {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.image_steel_01b6 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.image_steel_01b6::before,
.image_steel_01b6::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.image_steel_01b6::before {
  top: -7px;
}

.image_steel_01b6::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.current-0afc {
  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 === */
.under-aca8 {
  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);
}

.pressed_ccf4 {
  margin: 0 0 2rem;
  text-align: center;
}

.dim_e6ac {
  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;
}

.dim_e6ac:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.shade_stale_6319 {
  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);
}

.shade_stale_6319 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.stale_db3b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.footer-a9c0 {
  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;
}

.footer-a9c0:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.video_a05c {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.article_bottom_0210 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.pro_4a88 {
  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);
}

.pro_4a88 .article_fcca {
  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;
}

.pro_4a88 .article_fcca svg {
  flex-shrink: 0;
}

.pro_4a88 .wide-2e96 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.pro_4a88 .wide-2e96: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);
}

.pro_4a88 .input_center_5e47 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.pro_4a88 .input_center_5e47: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) {
  .under-aca8 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .dim_e6ac {
    max-width: 100%;
  }

  .stale_db3b {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .footer-a9c0 {
    padding: 1rem;
  }

  .video_a05c {
    font-size: 1.5rem;
  }

  .article_bottom_0210 {
    font-size: 0.75rem;
  }

  .shade_stale_6319 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .pro_4a88 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .pro_4a88 .article_fcca {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .stale_db3b {
    grid-template-columns: 1fr;
  }
}

.wrapper_last_1fe5 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.logo_37c3 {
  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 === */
.yellow_4039 {
  margin-bottom: 2.5rem;
}

.primary_right_859e {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.wrapper_last_1fe5 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.purple-03bb {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.disabled-3533 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.shadow_403b {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.overlay-slow-3d1c {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.widget_large_ea56 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.hidden-260d {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.active-1c34 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.active-1c34 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.tooltip_static_a1fe {
  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);
}

.block-910a {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.container_5d83 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.message-eccb {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.thumbnail_fe02 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.card-f469 {
  display: grid;
  gap: 1rem;
}

.hero-47b9 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.red_0db2 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.shadow-24b3 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.accordion_first_e186 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.search-0fff {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.up-b52b {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.up-b52b p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.input_white_c652 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.avatar_slow_5386 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.card-under-f329 {
  display: grid;
  gap: 2rem;
}

.sidebar-simple-a3da {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.disabled-3533 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.purple-03bb {
  flex: 1;
}

.overlay-slow-3d1c {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.overlay-slow-3d1c a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.tooltip-0ed2 {
  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;
}

.widget_large_ea56 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.module_fixed_2753 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.module_fixed_2753 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.card-2b36 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.card-2b36 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.overlay_fresh_ed2d {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.overlay_fresh_ed2d strong {
  display: block;
  margin-bottom: 0.75rem;
}

.overlay_fresh_ed2d ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.overlay_fresh_ed2d li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.button-cold-172a {
  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 === */
.caption_15e5 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.mini_e473 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.row_32ab {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.copper-fdee h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.copper-fdee ol {
  list-style: none;
  counter-reset: toc-counter;
}

.copper-fdee ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.copper-fdee 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;
}

.copper-fdee ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.copper-fdee ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.hover_c0c9 {
  padding: 3rem 0 5rem;
}

.glass-f7ba {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.glass-f7ba.mask-d523 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.message-61cd {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.hot-f4c7 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.block-small-08fa {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.block-small-08fa h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.up_8224 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.notification-8a0d {
  text-align: center;
}

.banner-e3f6 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pattern_49c3 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.paragraph_4f9c {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.chip-liquid-6ca4 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.fluid-15dc {
  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;
}

.fluid-15dc * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.fluid-15dc:hover {
  box-shadow: var(--shadow-lg);
}

.fluid-15dc.green-babb {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.fluid-15dc h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.fluid-15dc ul {
  margin: 1rem 0;
}

.fluid-15dc li {
  margin-bottom: 0.75rem;
}

.small-f708 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.icon_50c1 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.icon_50c1 a {
  font-weight: 600;
}

/* === Data Tables === */
.info_d225 {
  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;
}

.info_d225 table {
  width: 100%;
  min-width: 600px;
}

.info_d225 thead {
  background-color: var(--primary-color);
  color: white;
}

.info_d225 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.info_d225 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.info_d225 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.info_d225 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.steel_ec38 {
  list-style: none;
  margin: 1.5rem 0;
}

.steel_ec38 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.steel_ec38 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.search-02f0::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-da19::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 === */
.feature-first-3d87 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.text_8262 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.text_8262 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.text_8262 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.text_8262 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.feature-first-3d87 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.hot_6343 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.hot_6343::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.backdrop_huge_9968 {
  position: relative;
  margin-bottom: 3rem;
}

.pattern-purple-f4d1 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.pattern-purple-f4d1 .frame-next-0560 {
  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;
}

.picture-5fbd {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.picture-5fbd h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.picture-5fbd ul {
  margin: 1rem 0;
}

.picture-5fbd li {
  margin-bottom: 0.75rem;
}

.form-advanced-754b {
  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 === */
.texture_selected_8735 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.texture_selected_8735 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.first_1e33 {
  list-style: none;
  margin: 1.5rem 0;
}

.first_1e33 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.first_1e33 a {
  font-weight: 600;
}

.shade_50d5 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.heading-a7a6 {
  margin: 2.5rem 0;
}

.box-warm-dc8e {
  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;
}

.box-warm-dc8e:hover {
  box-shadow: var(--shadow-lg);
}

.box-warm-dc8e.small-5fe8 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.logo-98b7 {
  flex-shrink: 0;
}

.logo-98b7 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);
}

.accent-motion-d49f h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.preview-63d2,
.dropdown-center-20b2,
.shade-8ba1 {
  width: 100%;
  margin: 1.5rem 0;
}

.surface-b56d {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.surface-b56d strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.tertiary-first-f6b1 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.tertiary-first-f6b1 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.widget-cfdb {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.widget-cfdb strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.avatar-fast-d0f8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.pressed-53b2 {
  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-53b2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pressed-53b2.frame_6591 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.pressed-53b2 .tooltip_silver_dd79 {
  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-53b2 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.pagination_advanced_f687 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.card_upper_80bb {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.card_upper_80bb label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.carousel_down_ab41 {
  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 === */
.article_fcca {
  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;
}

.wide-2e96 {
  background-color: var(--primary-color);
  color: white;
}

.wide-2e96:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.input_center_5e47 {
  background-color: var(--text-secondary);
  color: white;
}

.input_center_5e47:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.outline-tall-3e57 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.outline-tall-3e57:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.next_5c3c {
  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;
}

.next_5c3c:hover {
  background-color: var(--primary-dark);
}

.content_action_8336 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.paper-ba4f {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.box_2694 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.border-basic-2640 {
  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 === */
.message-8062 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.cool_bea3 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.cool_bea3 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.left_d75b {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.thumbnail_silver_e7e4 {
  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;
}

.header-2218 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.green-ce84 {
  list-style: none;
  counter-reset: rank-counter;
}

.green-ce84 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.green-ce84 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;
}

.lite_8b71 {
  list-style: none;
}

.lite_8b71 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.notice_in_b18f {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.inner_b616 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.inner_b616 .alert-7513 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.inner_b616 .active_6e59 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.last-e225 {
  margin-top: 3rem;
}

.element-6553 {
  width: 100%;
}

.small_913b {
  background-color: #fef3c7;
}

.notice_81da {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.element_1408 {
  margin: 3rem 0;
}

.search_light_547f {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.static-4725 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.static-4725:hover {
  box-shadow: var(--shadow-lg);
}

.static-4725.out-2524 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.alert-a05e {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.hard_8bd9 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.hard_8bd9 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.inner-7109 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.static-4725 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.accent-glass-364b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hard_65a9 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.caption-cold-70e3 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.old_0620 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.container-9633 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.column-dim-07c8 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.avatar-simple-9328 {
  max-width: 900px;
  margin: 0 auto;
}

.alert-in-1792 {
  margin: 2rem 0;
}

.active-491e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.active-491e summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.active-491e summary::-webkit-details-marker {
  display: none;
}

.active-491e summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.grid_4f66 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.active-491e[open] .grid_4f66 {
  transform: rotate(45deg);
}

.shadow-selected-f243 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.shadow-selected-f243 p:last-child {
  margin-bottom: 0;
}

.widget_bright_3491 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.column-center-b3f2 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.silver_d923 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.silver_d923 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.silver_d923 .article_fcca {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.pagination_aaf3 {
  max-width: 900px;
  margin: 0 auto;
}

.surface_232c {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.orange_41a8 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.orange_41a8.fn-success-da19 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.box-old-b956 {
  font-size: 3rem;
  line-height: 1;
}

.clean-bd85 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.nav-d0d3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.easy_57e3,
.border-a9e4 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.easy_57e3 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.border-a9e4 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.item_334c,
.rough-69d6 {
  margin: 1.5rem 0;
}

.item_334c li,
.rough-69d6 li {
  margin-bottom: 1rem;
}

.smooth_379b {
  margin: 3rem 0;
}

.out-9bf3 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.out-9bf3 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.out-9bf3 ol {
  margin: 1rem 0;
}

.out-9bf3 li {
  margin-bottom: 0.75rem;
}

.sidebar-pink-20e8 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.row_hard_1b33 {
  margin: 2rem 0;
}

.detail_upper_e9f2 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.large-df23 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.box_ce13 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.thick_cf21 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.popup-thick-7761 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.notification-eff2 {
  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;
}

.notification-eff2 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.shadow_403b {
  flex: 1;
}

.shadow_403b h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.detail_6dfb {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.yellow-ee18 p {
  margin-bottom: 1rem;
}

.carousel_18bb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.wood-cd10 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.status_7128 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.status_7128 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.heading-fac9 h3 {
  margin-bottom: 1.5rem;
}

.old-8a7e {
  display: grid;
  gap: 2rem;
}

.active_1046 {
  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;
}

.active_1046 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.active_1046 h4 {
  margin: 0 0 0.25rem;
}

.active_1046 p {
  margin: 0;
  font-size: 0.9375rem;
}

.disabled_b125 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.inner_234e {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.inner_234e h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.inner_234e ul {
  margin: 1.5rem 0;
}

.inner_234e li {
  margin-bottom: 0.75rem;
}

.thumbnail_0e75 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.bright_ae7c {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.last_9b18 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.pattern_8af7 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.pattern_8af7 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.modal_narrow_592c {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.modal_narrow_592c a {
  color: rgba(255, 255, 255, 0.8);
}

.texture-outer-2fd4 {
  list-style: none;
}

.texture-outer-2fd4 li {
  margin-bottom: 0.75rem;
}

.texture-outer-2fd4 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.texture-outer-2fd4 a:hover {
  color: white;
}

.east_977a {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.east-58c8 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.hard_dcd7 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.sidebar_0a2e {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.paragraph_6411 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .frame-warm-15a3 {
    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;
  }

  .info_old_6839 {
    font-size: 1.5rem !important;
  }

  .primary_right_859e {
    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 */
  .fluid-15dc,
  .link_d8a4,
  .picture-5fbd,
  .accent-motion-d49f,
  .alert-a05e,
  .static-4725,
  .shadow-selected-f243,
  .shade_stale_6319,
  .input_white_c652,
  .message-61cd {
    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 */
  .wrapper_last_1fe5 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .purple-03bb {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .disabled-3533 {
    flex-shrink: 0;
  }

  .shadow_403b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .overlay-slow-3d1c,
  .widget_large_ea56 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .widget_large_ea56 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .menu_7144 {
    display: none;
  }

  /* Show mobile actions */
  .search_47ae {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .easy-3a83 {
    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;
  }

  .easy-3a83 svg {
    flex-shrink: 0;
  }

  .easy-3a83 .current_1a26 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .easy-3a83 .plasma_dcd3 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .gallery-3a5f {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .tag-c72e {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .easy-3a83:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .surface-a8e2 {
    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-a8e2.fn-active-da19 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .surface-a8e2 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .surface-a8e2 li:last-child {
    border-bottom: none;
  }

  .surface-a8e2 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .thick_8237 {
    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;
  }

  .thick_8237 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .thick_8237 li:last-child {
    border-bottom: none;
  }

  .thick_8237 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .list-inner-cf52 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .accordion-758c {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .block-e773,
  .label-advanced-0e64 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .block-e773 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .label-advanced-0e64 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .thick_8237.fn-active-da19 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .red_b46b {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .stone_7820 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .gradient-a728 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .current-0afc {
    margin-top: 0;
  }

  /* Hero section */
  .current-0afc {
    padding: 2rem 0 1.5rem;
  }

  .primary_right_859e {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .input_white_c652 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .under-aca8 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .dim_e6ac {
    max-width: 100%;
    border-radius: 8px;
  }

  .stale_db3b {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .footer-a9c0 {
    padding: 1rem;
  }

  .video_a05c {
    font-size: 1.5rem;
  }

  .article_bottom_0210 {
    font-size: 0.75rem;
  }

  .shade_stale_6319 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .pro_4a88 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .pro_4a88 .article_fcca {
    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 */
  .row_32ab {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .box-warm-dc8e {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .logo-98b7 {
    margin-bottom: 1rem;
  }

  /* Author */
  .sidebar-simple-a3da {
    flex-direction: column;
  }

  .notification-eff2 {
    flex-direction: column;
  }

  /* Quotes */
  .alert-a05e {
    flex-direction: column;
  }

  /* Pros/Cons */
  .nav-d0d3 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .thick_cf21 {
    flex-direction: column;
  }

  .thick_cf21 .article_fcca {
    width: 100%;
  }

  /* Version comparison */
  .avatar-fast-d0f8 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .message-8062 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .last_9b18 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hard_dcd7 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .info_d225,
  .dropdown-center-20b2,
  .photo_75d9,
  .element-6553,
  .preview-63d2,
  .shade-8ba1 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .info_d225 table,
  .dropdown-center-20b2 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .carousel_down_ab41 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .frame-warm-15a3 {
    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;
  }

  .info_old_6839 {
    font-size: 1.25rem !important;
  }

  .primary_right_859e {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .stone_7820 {
    position: fixed;
  }

  .gradient-a728 {
    padding: 0.625rem 0;
  }

  .label-1fa9 img {
    height: 26px;
  }

  .thick_8237 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .surface-a8e2 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .easy-3a83 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .easy-3a83 svg {
    width: 18px;
    height: 18px;
  }

  .easy-3a83 .current_1a26 {
    font-size: 0.7rem;
  }

  .easy-3a83 .plasma_dcd3 {
    font-size: 0.65rem;
  }

  .block-e773,
  .label-advanced-0e64 {
    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, .frame-warm-15a3, .middle_1045, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .under-aca8 {
    padding: 1rem;
  }

  .stale_db3b {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .footer-a9c0 {
    padding: 0.875rem;
  }

  .video_a05c {
    font-size: 1.25rem;
  }

  .pro_4a88 .article_fcca {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .primary_right_859e {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .article_fcca {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .content_action_8336 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .box-warm-dc8e {
    padding: 1rem;
  }

  .logo-98b7 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .fluid-15dc,
  .overlay-cedb,
  .widget_46a4,
  .old-2a86 {
    padding: 1rem;
  }
}

@media print {
  .stone_7820,
  .caption_15e5,
  .red_b46b,
  .article_fcca,
  .bright_ae7c {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .frame-warm-15a3 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.summary_ff88 {
  margin-bottom: 3rem;
  text-align: center;
}

.info_old_6839 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.glass_8959 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.label_fluid_759a,
.progress_c3b3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.white_f0eb {
  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;
}

.white_f0eb:hover {
  transform: translateY(-5px);
}

.white_f0eb strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.white_f0eb span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.nav_paper_e95b {
  margin: 3rem 0;
}

.old-a826 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.search-619b {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.search-619b:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.slider-dim-c4c5 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.header_225c {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.active_south_363c {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.bottom-d1ee {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.section-8b80 {
  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;
}

.section-8b80:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.section-8b80.large_db66 {
  border-left: 4px solid var(--primary-color);
}

.gallery_medium_2904 {
  flex-shrink: 0;
}

.gallery_medium_2904 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.shade_tiny_0210 {
  flex: 1;
}

.shade_tiny_0210 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.iron-767f {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.progress-rough-8eee,
.stale-b9b1,
.red_fc4d {
  margin-bottom: 1.5rem;
}

.progress-rough-8eee h4,
.stale-b9b1 h4,
.red_fc4d h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.progress-rough-8eee ul,
.stale-b9b1 ul,
.red_fc4d ul {
  list-style: none;
  padding: 0;
}

.progress-rough-8eee li,
.stale-b9b1 li,
.red_fc4d li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.progress-rough-8eee li:before,
.stale-b9b1 li:before,
.red_fc4d li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.dropdown-ce74 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.dropdown-ce74 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;
}

.dropdown-ce74 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.gas-566b { margin: 2rem 0; }
.title_c056 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.title_c056 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.secondary-7169 p { margin-bottom: 1rem; line-height: 1.7; }
.secondary-7169 strong { color: var(--text-primary); }
.secondary-7169 ul { list-style: none; padding-left: 0; }
.secondary-7169 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.secondary-7169 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.dim_3907 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.notice_active_9b07 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.notice_active_9b07:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.notice-dynamic-7ccb { font-size: 3rem; margin-bottom: 1rem; }
.notice_active_9b07 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.notice_active_9b07 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.main_d17e { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.main_d17e span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.in_181e { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.paragraph_bottom_568d { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.wide_5621 { text-align: center; }
.orange-a72c { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.pattern_5b4b { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.video_e00e { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.button-5aef { margin: 2rem 0; }
.simple-7eb8 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.simple-7eb8 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.simple-7eb8 p, .simple-7eb8 ul { line-height: 1.7; }
.simple-7eb8 ul { list-style: none; padding-left: 0; }
.simple-7eb8 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.simple-7eb8 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.hero-b192 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.texture-cold-0b55 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.new-aea6 { text-align: center; }
.progress_7b19 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.tag-209b { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.warm_184c { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.east_36fb { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.video-949e { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.video-949e:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.video-949e h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.video-949e p, .video-949e ul { line-height: 1.7; }
.video-949e ul { list-style: none; padding-left: 0; }
.video-949e ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.video-949e ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: ffaa */
.phantom-card-t6 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.2;
}
