/* ============================================
   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 */
.paper-1edb p,
.button_3425,
.simple_1aa3,
.old_286a,
.wrapper-0200,
.sort-0e74,
.glass_1090,
.texture-b274 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.slider-west-8907 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.slider-west-8907 > *,
.summary-top-b085,
.paper-1edb,
.purple-2dad {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .slider-west-8907 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .slider-west-8907 {
    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 === */
.carousel_3579 {
  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 */
.carousel_3579.cool-b664 {
  box-shadow: var(--shadow-md);
}

.message_f759 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.progress-a2af img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.module_selected_08b4 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.tiny_a672 {
  display: none;
}

/* Hide mobile actions on desktop */
.mask_west_558d {
  display: none;
}

.progress-pressed-0a49 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.progress-pressed-0a49 a:hover,
.progress-pressed-0a49 a.fn-active-c078 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.feature_b332 {
  margin-left: 1rem;
}

.aside-plasma-0d04 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.notice-8bca,
.surface_brown_727b {
  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;
}

.notice-8bca {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.notice-8bca: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;
}

.surface_brown_727b {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.surface_brown_727b: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;
}

.notice-8bca svg,
.surface_brown_727b svg {
  flex-shrink: 0;
}

.outer-ef12 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.photo_white_ccb6 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.photo_white_ccb6::before,
.photo_white_ccb6::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.photo_white_ccb6::before {
  top: -7px;
}

.photo_white_ccb6::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.chip_light_1ff6 {
  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 === */
.top_0891 {
  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);
}

.module-cool-097a {
  margin: 0 0 2rem;
  text-align: center;
}

.popup_0098 {
  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;
}

.popup_0098:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.texture-144a {
  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);
}

.texture-144a strong {
  color: var(--primary-color);
  font-weight: 700;
}

.tooltip_d169 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.advanced_f99e {
  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;
}

.advanced_f99e:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.white_df6e {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.dropdown_wood_430d {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.video-north-5075 {
  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);
}

.video-north-5075 .accent_silver_0031 {
  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;
}

.video-north-5075 .accent_silver_0031 svg {
  flex-shrink: 0;
}

.video-north-5075 .photo-9a7e {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.video-north-5075 .photo-9a7e: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);
}

.video-north-5075 .hard_9ef0 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.video-north-5075 .hard_9ef0: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) {
  .top_0891 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .popup_0098 {
    max-width: 100%;
  }

  .tooltip_d169 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .advanced_f99e {
    padding: 1rem;
  }

  .white_df6e {
    font-size: 1.5rem;
  }

  .dropdown_wood_430d {
    font-size: 0.75rem;
  }

  .texture-144a {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .video-north-5075 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .video-north-5075 .accent_silver_0031 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .tooltip_d169 {
    grid-template-columns: 1fr;
  }
}

.last-fc50 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.fresh_6781 {
  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 === */
.pink_ddca {
  margin-bottom: 2.5rem;
}

.purple_e90e {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.last-fc50 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.image-74c5 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.highlight_next_1189 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.link_ad72 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.outline_stale_e2cf {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.hero_fd75 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.column-33d0 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.outline-up-ef7b {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.outline-up-ef7b svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.gas_6c80 {
  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);
}

.gallery-warm-b775 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.hover-1a39 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.shade-purple-2cd2 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.right_0953 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.mask-160c {
  display: grid;
  gap: 1rem;
}

.over-9fc2 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.lower_f224 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.carousel_middle_27ad {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.input_d598 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.column_d854 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.thumbnail_f889 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.thumbnail_f889 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.button_3425 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.medium_111e {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.tabs_upper_dbc3 {
  display: grid;
  gap: 2rem;
}

.mask_3780 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.highlight_next_1189 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.image-74c5 {
  flex: 1;
}

.outline_stale_e2cf {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.outline_stale_e2cf a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.outline-bbdd {
  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;
}

.hero_fd75 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.cool-97a6 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.cool-97a6 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.prev-1b9b {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.prev-1b9b a {
  font-size: 0.875rem;
  font-weight: 500;
}

.content-yellow-2856 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.content-yellow-2856 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.content-yellow-2856 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.content-yellow-2856 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.first-61e6 {
  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 === */
.item-wide-d893 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.carousel-7e65 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.column_cool_6c5b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.border-bca2 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.border-bca2 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.border-bca2 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.border-bca2 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;
}

.border-bca2 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.border-bca2 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.paper-1edb {
  padding: 3rem 0 5rem;
}

.purple-2dad {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.purple-2dad.background-cold-ade0 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.simple_1aa3 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.paragraph_50f6 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.tag-e561 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.tag-e561 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.row-265d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.north_c6a4 {
  text-align: center;
}

.fresh_0541 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.copper-cd3e {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.message-163a {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.sort-0e74 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.old_286a {
  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;
}

.old_286a * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.old_286a:hover {
  box-shadow: var(--shadow-lg);
}

.old_286a.texture-huge-057a {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.old_286a h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.old_286a ul {
  margin: 1rem 0;
}

.old_286a li {
  margin-bottom: 0.75rem;
}

.chip_c224 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.hero_eb1d {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.hero_eb1d a {
  font-weight: 600;
}

/* === Data Tables === */
.preview-22b7 {
  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;
}

.preview-22b7 table {
  width: 100%;
  min-width: 600px;
}

.preview-22b7 thead {
  background-color: var(--primary-color);
  color: white;
}

.preview-22b7 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.preview-22b7 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.preview-22b7 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.preview-22b7 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.soft_308a {
  list-style: none;
  margin: 1.5rem 0;
}

.soft_308a li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.soft_308a li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.mask-gold-deb7::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-c078::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 === */
.fast-8c23 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.fluid-17e4 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.fluid-17e4 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.fluid-17e4 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.fluid-17e4 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.fast-8c23 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.glass_1090 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.glass_1090::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.pressed_d3d2 {
  position: relative;
  margin-bottom: 3rem;
}

.iron-fde5 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.iron-fde5 .basic_d2f9 {
  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;
}

.frame-basic-a8d9 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.frame-basic-a8d9 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.frame-basic-a8d9 ul {
  margin: 1rem 0;
}

.frame-basic-a8d9 li {
  margin-bottom: 0.75rem;
}

.tooltip_fluid_f7b9 {
  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 === */
.copper-55c9 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.copper-55c9 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.dark_98ed {
  list-style: none;
  margin: 1.5rem 0;
}

.dark_98ed li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.dark_98ed a {
  font-weight: 600;
}

.row-lower-3a43 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.texture-b274 {
  margin: 2.5rem 0;
}

.widget-glass-c924 {
  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;
}

.widget-glass-c924:hover {
  box-shadow: var(--shadow-lg);
}

.widget-glass-c924.disabled_c326 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.link-rough-5d98 {
  flex-shrink: 0;
}

.link-rough-5d98 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);
}

.container_smooth_e381 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.modal-large-07e3,
.item_gas_f17d,
.section_c168 {
  width: 100%;
  margin: 1.5rem 0;
}

.black_0cd3 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.black_0cd3 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.paragraph-4a33 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.paragraph-4a33 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.list_3403 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.list_3403 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.logo_out_b590 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.top_988e {
  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;
}

.top_988e:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.top_988e.highlight-1b62 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.top_988e .outline_87da {
  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;
}

.top_988e h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.badge-f1ac {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.detail_2d19 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.detail_2d19 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.thumbnail_advanced_43b1 {
  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 === */
.accent_silver_0031 {
  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;
}

.photo-9a7e {
  background-color: var(--primary-color);
  color: white;
}

.photo-9a7e:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.hard_9ef0 {
  background-color: var(--text-secondary);
  color: white;
}

.hard_9ef0:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.layout-5705 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.layout-5705:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.banner-full-fe34 {
  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;
}

.banner-full-fe34:hover {
  background-color: var(--primary-dark);
}

.motion_d27e {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.layout-short-c292 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.small_c2d4 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.heading-lite-db04 {
  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 === */
.hidden-simple-f73a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.solid_10f6 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.solid_10f6 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.overlay-medium-8b4e {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.top-aa2d {
  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;
}

.active-c79c {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.soft_8166 {
  list-style: none;
  counter-reset: rank-counter;
}

.soft_8166 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.soft_8166 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;
}

.black-8ca1 {
  list-style: none;
}

.black-8ca1 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.container-soft-ab0e {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.texture_4534 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.texture_4534 .link_cd0f {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.texture_4534 .form_bf7e {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.surface_pro_4284 {
  margin-top: 3rem;
}

.nav-purple-55b0 {
  width: 100%;
}

.shadow_selected_efd6 {
  background-color: #fef3c7;
}

.smooth_f857 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.avatar-c28a {
  margin: 3rem 0;
}

.table-red-52b1 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.slider_middle_e529 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.slider_middle_e529:hover {
  box-shadow: var(--shadow-lg);
}

.slider_middle_e529.column_01f4 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.pink-824e {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.sidebar_67af strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.sidebar_67af span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.first-68c5 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.slider_middle_e529 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.progress-dee4 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.black-f866 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.up_c7ce {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.search-gas-55c2 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.lite_dd3c {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.active-ef2b {
  margin-top: 1rem;
}

/* === FAQ Section === */
.modal-013b {
  max-width: 900px;
  margin: 0 auto;
}

.video_under_fb6b {
  margin: 2rem 0;
}

.info_1ef0 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.info_1ef0 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.info_1ef0 summary::-webkit-details-marker {
  display: none;
}

.info_1ef0 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.static_3a60 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.info_1ef0[open] .static_3a60 {
  transform: rotate(45deg);
}

.header-ff15 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.header-ff15 p:last-child {
  margin-bottom: 0;
}

.easy-ee8f {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.disabled_purple_0ffe {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.action_b943 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.action_b943 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.action_b943 .accent_silver_0031 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.gold_93f1 {
  max-width: 900px;
  margin: 0 auto;
}

.gas-046a {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.frame-basic-5bd8 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.frame-basic-5bd8.fn-success-c078 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.table_dirty_d2cd {
  font-size: 3rem;
  line-height: 1;
}

.focused-4425 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.dirty_d487 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.list_87a8,
.popup_4ef2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.list_87a8 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.popup_4ef2 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.list_bb68,
.popup_9339 {
  margin: 1.5rem 0;
}

.list_bb68 li,
.popup_9339 li {
  margin-bottom: 1rem;
}

.chip_lite_81c6 {
  margin: 3rem 0;
}

.stale-7722 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.stale-7722 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.stale-7722 ol {
  margin: 1rem 0;
}

.stale-7722 li {
  margin-bottom: 0.75rem;
}

.fluid-14f7 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.basic_1de8 {
  margin: 2rem 0;
}

.paper_b479 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.in_c4ac {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.old_d7e0 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.form-89c3 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.layout_inner_5a58 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.banner-white-dae4 {
  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;
}

.banner-white-dae4 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.link_ad72 {
  flex: 1;
}

.link_ad72 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.hidden-d66c {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.status_huge_bebf p {
  margin-bottom: 1rem;
}

.tag_selected_b998 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.copper_ddce {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.lite-e037 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.lite-e037 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.card_1ec9 h3 {
  margin-bottom: 1.5rem;
}

.short_d4d1 {
  display: grid;
  gap: 2rem;
}

.module-wide-98c9 {
  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;
}

.module-wide-98c9 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.module-wide-98c9 h4 {
  margin: 0 0 0.25rem;
}

.module-wide-98c9 p {
  margin: 0;
  font-size: 0.9375rem;
}

.list-538d {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.frame-hard-e29f {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.frame-hard-e29f h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.frame-hard-e29f ul {
  margin: 1.5rem 0;
}

.frame-hard-e29f li {
  margin-bottom: 0.75rem;
}

.summary_small_7bd8 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.hot-3d3d {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.backdrop-gold-56b9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.form_iron_f684 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.form_iron_f684 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.hover-32f7 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.hover-32f7 a {
  color: rgba(255, 255, 255, 0.8);
}

.thumbnail_dynamic_4f79 {
  list-style: none;
}

.thumbnail_dynamic_4f79 li {
  margin-bottom: 0.75rem;
}

.thumbnail_dynamic_4f79 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.thumbnail_dynamic_4f79 a:hover {
  color: white;
}

.texture_huge_0bef {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.red-738c {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.element_b88b {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.stone-433d {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.element-0a93 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .slider-west-8907 {
    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;
  }

  .hover-rough-72c7 {
    font-size: 1.5rem !important;
  }

  .purple_e90e {
    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 */
  .old_286a,
  .wrapper-0200,
  .frame-basic-a8d9,
  .container_smooth_e381,
  .pink-824e,
  .slider_middle_e529,
  .header-ff15,
  .texture-144a,
  .button_3425,
  .simple_1aa3 {
    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 */
  .last-fc50 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .image-74c5 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .highlight_next_1189 {
    flex-shrink: 0;
  }

  .link_ad72 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .outline_stale_e2cf,
  .hero_fd75 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero_fd75 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .module_selected_08b4 {
    display: none;
  }

  /* Show mobile actions */
  .mask_west_558d {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .accent_efa7 {
    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;
  }

  .accent_efa7 svg {
    flex-shrink: 0;
  }

  .accent_efa7 .link_98dd {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .accent_efa7 .slider_large_baae {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .media_9c4d {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .element_north_6227 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .accent_efa7:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .tiny_a672 {
    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;
  }

  .tiny_a672.fn-active-c078 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .tiny_a672 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .tiny_a672 li:last-child {
    border-bottom: none;
  }

  .tiny_a672 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .progress-pressed-0a49 {
    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;
  }

  .progress-pressed-0a49 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .progress-pressed-0a49 li:last-child {
    border-bottom: none;
  }

  .progress-pressed-0a49 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .feature_b332 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .aside-plasma-0d04 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .notice-8bca,
  .surface_brown_727b {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .notice-8bca {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .surface_brown_727b {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .progress-pressed-0a49.fn-active-c078 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .outer-ef12 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .carousel_3579 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .message_f759 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .chip_light_1ff6 {
    margin-top: 0;
  }

  /* Hero section */
  .chip_light_1ff6 {
    padding: 2rem 0 1.5rem;
  }

  .purple_e90e {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .button_3425 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .top_0891 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .popup_0098 {
    max-width: 100%;
    border-radius: 8px;
  }

  .tooltip_d169 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .advanced_f99e {
    padding: 1rem;
  }

  .white_df6e {
    font-size: 1.5rem;
  }

  .dropdown_wood_430d {
    font-size: 0.75rem;
  }

  .texture-144a {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .video-north-5075 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .video-north-5075 .accent_silver_0031 {
    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 */
  .column_cool_6c5b {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .widget-glass-c924 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .link-rough-5d98 {
    margin-bottom: 1rem;
  }

  /* Author */
  .mask_3780 {
    flex-direction: column;
  }

  .banner-white-dae4 {
    flex-direction: column;
  }

  /* Quotes */
  .pink-824e {
    flex-direction: column;
  }

  /* Pros/Cons */
  .dirty_d487 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .form-89c3 {
    flex-direction: column;
  }

  .form-89c3 .accent_silver_0031 {
    width: 100%;
  }

  /* Version comparison */
  .logo_out_b590 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .hidden-simple-f73a {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .backdrop-gold-56b9 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .element_b88b {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .preview-22b7,
  .item_gas_f17d,
  .pressed_40b8,
  .nav-purple-55b0,
  .modal-large-07e3,
  .section_c168 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .preview-22b7 table,
  .item_gas_f17d table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .thumbnail_advanced_43b1 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .slider-west-8907 {
    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;
  }

  .hover-rough-72c7 {
    font-size: 1.25rem !important;
  }

  .purple_e90e {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .carousel_3579 {
    position: fixed;
  }

  .message_f759 {
    padding: 0.625rem 0;
  }

  .progress-a2af img {
    height: 26px;
  }

  .progress-pressed-0a49 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .tiny_a672 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .accent_efa7 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .accent_efa7 svg {
    width: 18px;
    height: 18px;
  }

  .accent_efa7 .link_98dd {
    font-size: 0.7rem;
  }

  .accent_efa7 .slider_large_baae {
    font-size: 0.65rem;
  }

  .notice-8bca,
  .surface_brown_727b {
    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, .slider-west-8907, .summary-top-b085, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .top_0891 {
    padding: 1rem;
  }

  .tooltip_d169 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .advanced_f99e {
    padding: 0.875rem;
  }

  .white_df6e {
    font-size: 1.25rem;
  }

  .video-north-5075 .accent_silver_0031 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .purple_e90e {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .accent_silver_0031 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .motion_d27e {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .widget-glass-c924 {
    padding: 1rem;
  }

  .link-rough-5d98 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .old_286a,
  .component-e817,
  .thumbnail_active_9a0d,
  .title-fe3d {
    padding: 1rem;
  }
}

@media print {
  .carousel_3579,
  .item-wide-d893,
  .outer-ef12,
  .accent_silver_0031,
  .hot-3d3d {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .slider-west-8907 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.aside_prev_5987 {
  margin-bottom: 3rem;
  text-align: center;
}

.hover-rough-72c7 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.last_c424 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.modal_dirty_1691,
.solid_b9e7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.form-0155 {
  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;
}

.form-0155:hover {
  transform: translateY(-5px);
}

.form-0155 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.form-0155 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.text_ca0f {
  margin: 3rem 0;
}

.mask_wood_222d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.grid_e86b {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.grid_e86b:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.silver_578c {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-6971 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.complex-69c9 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.notification_95bd {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.focus-hard-0c1f {
  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;
}

.focus-hard-0c1f:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.focus-hard-0c1f.fluid-8c60 {
  border-left: 4px solid var(--primary-color);
}

.detail_693b {
  flex-shrink: 0;
}

.detail_693b svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.red_1a33 {
  flex: 1;
}

.red_1a33 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.wood_dd2e {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.active-919c,
.pressed_2109,
.sidebar_short_2247 {
  margin-bottom: 1.5rem;
}

.active-919c h4,
.pressed_2109 h4,
.sidebar_short_2247 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.active-919c ul,
.pressed_2109 ul,
.sidebar_short_2247 ul {
  list-style: none;
  padding: 0;
}

.active-919c li,
.pressed_2109 li,
.sidebar_short_2247 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.active-919c li:before,
.pressed_2109 li:before,
.sidebar_short_2247 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.banner-hard-3b91 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.banner-hard-3b91 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;
}

.banner-hard-3b91 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.breadcrumb_f592 { margin: 2rem 0; }
.shadow-gas-7d0d { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.shadow-gas-7d0d h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.cold-27be p { margin-bottom: 1rem; line-height: 1.7; }
.cold-27be strong { color: var(--text-primary); }
.cold-27be ul { list-style: none; padding-left: 0; }
.cold-27be ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.cold-27be ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.status_b0ed { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.content-d820 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.content-d820:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.paragraph-upper-27b3 { font-size: 3rem; margin-bottom: 1rem; }
.content-d820 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.content-d820 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.badge-solid-e287 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.badge-solid-e287 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.tertiary-9d37 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.hot-25f9 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.wrapper-out-ef51 { text-align: center; }
.badge-d964 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.wood_1b1b { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.status_green_22d0 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.shade_f8aa { margin: 2rem 0; }
.north_8706 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.north_8706 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.north_8706 p, .north_8706 ul { line-height: 1.7; }
.north_8706 ul { list-style: none; padding-left: 0; }
.north_8706 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.north_8706 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.carousel_plasma_a85a { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.dirty_b0f1 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.slider_copper_2d33 { text-align: center; }
.banner-02e6 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.medium-7bde { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.banner-1e42 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.menu_e966 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.stone_d649 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.stone_d649:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.stone_d649 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.stone_d649 p, .stone_d649 ul { line-height: 1.7; }
.stone_d649 ul { list-style: none; padding-left: 0; }
.stone_d649 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.stone_d649 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 1285 */
.shadow-element-y0 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.1;
}
