/* ============================================
   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 */
.grid_710b p,
.grid_a0ab,
.prev_1711,
.new_971f,
.east_bec0,
.tertiary_short_470f,
.short-7a5f,
.tag-3323 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.middle-bf7f {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.middle-bf7f > *,
.backdrop-76ad,
.grid_710b,
.accordion_bf36 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .middle-bf7f {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .middle-bf7f {
    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 === */
.layout-prev-e8c6 {
  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 */
.layout-prev-e8c6.lite_2fbb {
  box-shadow: var(--shadow-md);
}

.breadcrumb-5565 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.slider_out_5f12 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.chip_slow_4f07 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.inner_1a8c {
  display: none;
}

/* Hide mobile actions on desktop */
.frame_0c15 {
  display: none;
}

.link-06e0 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.link-06e0 a:hover,
.link-06e0 a.fn-active-263d {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.input_a626 {
  margin-left: 1rem;
}

.caption_0f5b {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.thumbnail-b1ec,
.dropdown-6065 {
  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;
}

.thumbnail-b1ec {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.thumbnail-b1ec: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;
}

.dropdown-6065 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.dropdown-6065: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;
}

.thumbnail-b1ec svg,
.dropdown-6065 svg {
  flex-shrink: 0;
}

.accent-green-b343 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.tooltip_in_b44b {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.tooltip_in_b44b::before,
.tooltip_in_b44b::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.tooltip_in_b44b::before {
  top: -7px;
}

.tooltip_in_b44b::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.active-1c04 {
  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 === */
.element_b92d {
  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);
}

.search-new-e124 {
  margin: 0 0 2rem;
  text-align: center;
}

.column_red_f5ef {
  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;
}

.column_red_f5ef:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.shade_40f8 {
  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_40f8 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.button_ab85 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.chip_old_a041 {
  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;
}

.chip_old_a041:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.search_light_2024 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.steel_7ad2 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.gradient_1c56 {
  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);
}

.gradient_1c56 .old-6513 {
  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;
}

.gradient_1c56 .old-6513 svg {
  flex-shrink: 0;
}

.gradient_1c56 .pattern_under_c8ba {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.gradient_1c56 .pattern_under_c8ba: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);
}

.gradient_1c56 .overlay-fa34 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.gradient_1c56 .overlay-fa34: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) {
  .element_b92d {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .column_red_f5ef {
    max-width: 100%;
  }

  .button_ab85 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .chip_old_a041 {
    padding: 1rem;
  }

  .search_light_2024 {
    font-size: 1.5rem;
  }

  .steel_7ad2 {
    font-size: 0.75rem;
  }

  .shade_40f8 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .gradient_1c56 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .gradient_1c56 .old-6513 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .button_ab85 {
    grid-template-columns: 1fr;
  }
}

.badge_a62d {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.video_5443 {
  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 === */
.carousel_gold_6297 {
  margin-bottom: 2.5rem;
}

.soft_50ef {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.badge_a62d {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.accordion_pro_7800 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.north_710a {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.sort_46fe {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.backdrop-0325 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.light-37aa {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.background-3bf8 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.dynamic-aee7 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.dynamic-aee7 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.message-soft-acc8 {
  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);
}

.mask-focused-84bd {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.slider-c37e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pattern-complex-b338 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.south_451d {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.fresh_367c {
  display: grid;
  gap: 1rem;
}

.pressed-473e {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.thumbnail_center_c352 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.shadow-f76d {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.full-6d11 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.widget-bright-2c1d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.column-old-71fa {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.column-old-71fa p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.grid_a0ab {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.element_next_53f3 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.video_huge_570d {
  display: grid;
  gap: 2rem;
}

.row_c8ac {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.north_710a {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.accordion_pro_7800 {
  flex: 1;
}

.backdrop-0325 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.backdrop-0325 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.last_0083 {
  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;
}

.light-37aa {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.iron_4dd0 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.iron_4dd0 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.notice_5b8c {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.notice_5b8c a {
  font-size: 0.875rem;
  font-weight: 500;
}

.description_28b4 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.description_28b4 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.description_28b4 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.description_28b4 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.highlight_2692 {
  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 === */
.popup_wood_922d {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.tertiary_down_c24d {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.iron-d905 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.header-f948 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.header-f948 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.header-f948 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.header-f948 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-f948 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.header-f948 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.grid_710b {
  padding: 3rem 0 5rem;
}

.accordion_bf36 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.accordion_bf36.background-80d0 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.prev_1711 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.module-yellow-cabe {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.title_bronze_471f {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.title_bronze_471f h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.carousel-7704 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.rough-261f {
  text-align: center;
}

.current_60c0 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.progress-solid-21f5 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.info-f3a0 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.tertiary_short_470f {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.new_971f {
  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;
}

.new_971f * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.new_971f:hover {
  box-shadow: var(--shadow-lg);
}

.new_971f.fresh-bf7d {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.new_971f h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.new_971f ul {
  margin: 1rem 0;
}

.new_971f li {
  margin-bottom: 0.75rem;
}

.heading_15c4 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.static-fc64 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.static-fc64 a {
  font-weight: 600;
}

/* === Data Tables === */
.gallery_glass_1dff {
  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;
}

.gallery_glass_1dff table {
  width: 100%;
  min-width: 600px;
}

.gallery_glass_1dff thead {
  background-color: var(--primary-color);
  color: white;
}

.gallery_glass_1dff th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.gallery_glass_1dff td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.gallery_glass_1dff tbody tr:hover {
  background-color: var(--bg-secondary);
}

.gallery_glass_1dff tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.current_3ec5 {
  list-style: none;
  margin: 1.5rem 0;
}

.current_3ec5 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.current_3ec5 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.mini_1b4e::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-263d::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 === */
.active-feed {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.alert-clean-82e0 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.alert-clean-82e0 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.alert-clean-82e0 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.alert-clean-82e0 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.active-feed blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.short-7a5f {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.short-7a5f::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.accent_new_5272 {
  position: relative;
  margin-bottom: 3rem;
}

.short-b6f1 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.short-b6f1 .carousel_5512 {
  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;
}

.badge_d1f3 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.badge_d1f3 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.badge_d1f3 ul {
  margin: 1rem 0;
}

.badge_d1f3 li {
  margin-bottom: 0.75rem;
}

.copper_0b38 {
  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 === */
.upper-d594 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.upper-d594 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.lite_cf18 {
  list-style: none;
  margin: 1.5rem 0;
}

.lite_cf18 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.lite_cf18 a {
  font-weight: 600;
}

.gallery_eb9c {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.tag-3323 {
  margin: 2.5rem 0;
}

.paragraph-slow-e0eb {
  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;
}

.paragraph-slow-e0eb:hover {
  box-shadow: var(--shadow-lg);
}

.paragraph-slow-e0eb.filter_3109 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.panel-slow-2187 {
  flex-shrink: 0;
}

.panel-slow-2187 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);
}

.summary_in_ed5b h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.basic_51ca,
.message_easy_b4f5,
.panel_d923 {
  width: 100%;
  margin: 1.5rem 0;
}

.south-dd50 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.south-dd50 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.backdrop-4d7d {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.backdrop-4d7d strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.accent_964c {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.accent_964c strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.logo_2ac1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.cool_f2c9 {
  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;
}

.cool_f2c9:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.cool_f2c9.block-e5e7 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.cool_f2c9 .heading_middle_38af {
  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;
}

.cool_f2c9 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.modal-ae53 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.message-1c1b {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.message-1c1b label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.last_47eb {
  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 === */
.old-6513 {
  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;
}

.pattern_under_c8ba {
  background-color: var(--primary-color);
  color: white;
}

.pattern_under_c8ba:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.overlay-fa34 {
  background-color: var(--text-secondary);
  color: white;
}

.overlay-fa34:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.action_4837 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.action_4837:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.text-98b4 {
  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;
}

.text-98b4:hover {
  background-color: var(--primary-dark);
}

.column-7404 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.filter-first-79e7 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.mask_large_f302 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.out-fd19 {
  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 === */
.footer_9bce {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.focus-1022 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.focus-1022 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.section-solid-c678 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.module-dcd4 {
  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;
}

.top_efa3 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.fresh_f871 {
  list-style: none;
  counter-reset: rank-counter;
}

.fresh_f871 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.fresh_f871 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;
}

.carousel-black-71c3 {
  list-style: none;
}

.carousel-black-71c3 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.highlight-499e {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.old-08c2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.old-08c2 .frame-f825 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.old-08c2 .dropdown-1a56 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.wood_93cf {
  margin-top: 3rem;
}

.gradient-65fe {
  width: 100%;
}

.prev_7a75 {
  background-color: #fef3c7;
}

.motion_7389 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.current_cfe4 {
  margin: 3rem 0;
}

.widget-paper-b1c3 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.narrow_7384 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.narrow_7384:hover {
  box-shadow: var(--shadow-lg);
}

.narrow_7384.dim-f9f8 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.smooth-0e2b {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.progress_b817 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.progress_b817 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.east-ecbf {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.narrow_7384 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.out_6b31 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.accent_198a {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.avatar_purple_5a0f {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.progress-fast-46e1 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.label_a897 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.stone_7e01 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.title-640a {
  max-width: 900px;
  margin: 0 auto;
}

.column-top-bb59 {
  margin: 2rem 0;
}

.yellow_7ac3 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.yellow_7ac3 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.yellow_7ac3 summary::-webkit-details-marker {
  display: none;
}

.yellow_7ac3 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.label_de9c {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.yellow_7ac3[open] .label_de9c {
  transform: rotate(45deg);
}

.menu-f24d {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.menu-f24d p:last-child {
  margin-bottom: 0;
}

.table_ede0 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.highlight_3300 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.form-58fd {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.form-58fd p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.form-58fd .old-6513 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.pattern_7e13 {
  max-width: 900px;
  margin: 0 auto;
}

.carousel-current-8357 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tag_4352 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.tag_4352.fn-success-263d {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.notification_basic_6ae7 {
  font-size: 3rem;
  line-height: 1;
}

.mini-5ab7 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.dropdown-c03b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.border_0266,
.yellow-bd6c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.border_0266 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.yellow-bd6c h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.motion-37ab,
.message_0c0f {
  margin: 1.5rem 0;
}

.motion-37ab li,
.message_0c0f li {
  margin-bottom: 1rem;
}

.mask_advanced_7198 {
  margin: 3rem 0;
}

.gas_cbf5 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.gas_cbf5 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.gas_cbf5 ol {
  margin: 1rem 0;
}

.gas_cbf5 li {
  margin-bottom: 0.75rem;
}

.article_240f {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.tag-7cec {
  margin: 2rem 0;
}

.over_5f7a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.hot_9c02 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.nav_full_ebf6 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.dropdown_large_260c {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.dynamic-09cf {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.huge-f361 {
  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;
}

.huge-f361 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.sort_46fe {
  flex: 1;
}

.sort_46fe h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.primary-27c4 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hard_1354 p {
  margin-bottom: 1rem;
}

.backdrop_aa25 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.box-353f {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.mask-outer-df7b {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.mask-outer-df7b a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.secondary_124a h3 {
  margin-bottom: 1.5rem;
}

.chip_middle_8bef {
  display: grid;
  gap: 2rem;
}

.caption-hovered-9159 {
  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;
}

.caption-hovered-9159 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.caption-hovered-9159 h4 {
  margin: 0 0 0.25rem;
}

.caption-hovered-9159 p {
  margin: 0;
  font-size: 0.9375rem;
}

.outline-bright-eb3c {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.pro-dd37 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.pro-dd37 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.pro-dd37 ul {
  margin: 1.5rem 0;
}

.pro-dd37 li {
  margin-bottom: 0.75rem;
}

.tooltip-5072 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.left-a965 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.shade_75ee {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.background-c532 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.background-c532 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.disabled_west_f4eb {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.disabled_west_f4eb a {
  color: rgba(255, 255, 255, 0.8);
}

.hover_pressed_30d1 {
  list-style: none;
}

.hover_pressed_30d1 li {
  margin-bottom: 0.75rem;
}

.hover_pressed_30d1 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.hover_pressed_30d1 a:hover {
  color: white;
}

.background_cold_5638 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.static-ea4f {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.thick-bf05 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.table-8301 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.filter-75fe {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .middle-bf7f {
    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;
  }

  .action-c0d5 {
    font-size: 1.5rem !important;
  }

  .soft_50ef {
    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 */
  .new_971f,
  .east_bec0,
  .badge_d1f3,
  .summary_in_ed5b,
  .smooth-0e2b,
  .narrow_7384,
  .menu-f24d,
  .shade_40f8,
  .grid_a0ab,
  .prev_1711 {
    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 */
  .badge_a62d {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .accordion_pro_7800 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .north_710a {
    flex-shrink: 0;
  }

  .sort_46fe {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .backdrop-0325,
  .light-37aa {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .light-37aa {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .chip_slow_4f07 {
    display: none;
  }

  /* Show mobile actions */
  .frame_0c15 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .widget-short-17a8 {
    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;
  }

  .widget-short-17a8 svg {
    flex-shrink: 0;
  }

  .widget-short-17a8 .preview_orange_f777 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .widget-short-17a8 .red_246f {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .simple-ae7c {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .border_345e {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .widget-short-17a8:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .inner_1a8c {
    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;
  }

  .inner_1a8c.fn-active-263d {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .inner_1a8c li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .inner_1a8c li:last-child {
    border-bottom: none;
  }

  .inner_1a8c a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .link-06e0 {
    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;
  }

  .link-06e0 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .link-06e0 li:last-child {
    border-bottom: none;
  }

  .link-06e0 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .input_a626 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .caption_0f5b {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .thumbnail-b1ec,
  .dropdown-6065 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .thumbnail-b1ec {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .dropdown-6065 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .link-06e0.fn-active-263d {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .accent-green-b343 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .layout-prev-e8c6 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .breadcrumb-5565 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .active-1c04 {
    margin-top: 0;
  }

  /* Hero section */
  .active-1c04 {
    padding: 2rem 0 1.5rem;
  }

  .soft_50ef {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .grid_a0ab {
    font-size: 1rem;
  }

  /* Hero brand image */
  .element_b92d {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .column_red_f5ef {
    max-width: 100%;
    border-radius: 8px;
  }

  .button_ab85 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .chip_old_a041 {
    padding: 1rem;
  }

  .search_light_2024 {
    font-size: 1.5rem;
  }

  .steel_7ad2 {
    font-size: 0.75rem;
  }

  .shade_40f8 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .gradient_1c56 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .gradient_1c56 .old-6513 {
    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 */
  .iron-d905 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .paragraph-slow-e0eb {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .panel-slow-2187 {
    margin-bottom: 1rem;
  }

  /* Author */
  .row_c8ac {
    flex-direction: column;
  }

  .huge-f361 {
    flex-direction: column;
  }

  /* Quotes */
  .smooth-0e2b {
    flex-direction: column;
  }

  /* Pros/Cons */
  .dropdown-c03b {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .dropdown_large_260c {
    flex-direction: column;
  }

  .dropdown_large_260c .old-6513 {
    width: 100%;
  }

  /* Version comparison */
  .logo_2ac1 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .footer_9bce {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .shade_75ee {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .thick-bf05 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .gallery_glass_1dff,
  .message_easy_b4f5,
  .full_d811,
  .gradient-65fe,
  .basic_51ca,
  .panel_d923 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .gallery_glass_1dff table,
  .message_easy_b4f5 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .last_47eb {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .middle-bf7f {
    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;
  }

  .action-c0d5 {
    font-size: 1.25rem !important;
  }

  .soft_50ef {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .layout-prev-e8c6 {
    position: fixed;
  }

  .breadcrumb-5565 {
    padding: 0.625rem 0;
  }

  .slider_out_5f12 img {
    height: 26px;
  }

  .link-06e0 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .inner_1a8c {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .widget-short-17a8 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .widget-short-17a8 svg {
    width: 18px;
    height: 18px;
  }

  .widget-short-17a8 .preview_orange_f777 {
    font-size: 0.7rem;
  }

  .widget-short-17a8 .red_246f {
    font-size: 0.65rem;
  }

  .thumbnail-b1ec,
  .dropdown-6065 {
    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, .middle-bf7f, .backdrop-76ad, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .element_b92d {
    padding: 1rem;
  }

  .button_ab85 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .chip_old_a041 {
    padding: 0.875rem;
  }

  .search_light_2024 {
    font-size: 1.25rem;
  }

  .gradient_1c56 .old-6513 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .soft_50ef {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .old-6513 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .column-7404 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .paragraph-slow-e0eb {
    padding: 1rem;
  }

  .panel-slow-2187 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .new_971f,
  .dark_4f55,
  .hover_9f52,
  .layout-dirty-59e9 {
    padding: 1rem;
  }
}

@media print {
  .layout-prev-e8c6,
  .popup_wood_922d,
  .accent-green-b343,
  .old-6513,
  .left-a965 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .middle-bf7f {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.link_cool_baba {
  margin-bottom: 3rem;
  text-align: center;
}

.action-c0d5 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.paragraph-efe9 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.video-fe7f,
.list_mini_52b4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.video_dim_8c7f {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.video_dim_8c7f:hover {
  transform: translateY(-5px);
}

.video_dim_8c7f strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.video_dim_8c7f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.over-6c6b {
  margin: 3rem 0;
}

.pink_39c0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.input_4573 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.input_4573:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.gallery-7e18 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.grid-south-0fb4 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.progress_6a1e {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.fixed_842c {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.dim-abd6 {
  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;
}

.dim-abd6:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.dim-abd6.status_1ba4 {
  border-left: 4px solid var(--primary-color);
}

.preview-simple-0fae {
  flex-shrink: 0;
}

.preview-simple-0fae svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.icon_tall_f7c9 {
  flex: 1;
}

.icon_tall_f7c9 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.under_7aea {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.text_621f,
.background_gold_68af,
.widget_1d61 {
  margin-bottom: 1.5rem;
}

.text_621f h4,
.background_gold_68af h4,
.widget_1d61 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.text_621f ul,
.background_gold_68af ul,
.widget_1d61 ul {
  list-style: none;
  padding: 0;
}

.text_621f li,
.background_gold_68af li,
.widget_1d61 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.text_621f li:before,
.background_gold_68af li:before,
.widget_1d61 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.liquid-d5e9 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.liquid-d5e9 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;
}

.liquid-d5e9 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.gallery_c188 { margin: 2rem 0; }
.hidden_8445 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.hidden_8445 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.stale-340b p { margin-bottom: 1rem; line-height: 1.7; }
.stale-340b strong { color: var(--text-primary); }
.stale-340b ul { list-style: none; padding-left: 0; }
.stale-340b ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.stale-340b ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.in_a346 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.sidebar-58a2 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.sidebar-58a2:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.detail_9b00 { font-size: 3rem; margin-bottom: 1rem; }
.sidebar-58a2 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.sidebar-58a2 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.tag-last-5ae6 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.tag-last-5ae6 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.thumbnail_ab20 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.gas-0564 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.current-844d { text-align: center; }
.white_39f3 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.solid-ea70 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.backdrop-hot-3a4e { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.basic-3ef2 { margin: 2rem 0; }
.form_dark_7e74 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.form_dark_7e74 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.form_dark_7e74 p, .form_dark_7e74 ul { line-height: 1.7; }
.form_dark_7e74 ul { list-style: none; padding-left: 0; }
.form_dark_7e74 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.form_dark_7e74 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.wrapper-tiny-b392 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.medium_1040 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.tooltip_gas_a642 { text-align: center; }
.status-d880 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.notice-hovered-fa68 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.list_hard_f977 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.status-3f78 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.hard_ee2a { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.hard_ee2a:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.hard_ee2a h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.hard_ee2a p, .hard_ee2a ul { line-height: 1.7; }
.hard_ee2a ul { list-style: none; padding-left: 0; }
.hard_ee2a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.hard_ee2a ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 3709 */
.widget-item-e4 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.3;
}
