/* ============================================
   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 */
.summary_pro_71be p,
.description_orange_f36e,
.widget-iron-08b3,
.image_567d,
.dim_466c,
.backdrop-58a3,
.border_b873,
.element_iron_78eb {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.search_f43e {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.search_f43e > *,
.fast_574f,
.summary_pro_71be,
.hero_fluid_0b18 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .search_f43e {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .search_f43e {
    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 === */
.sort_1e3f {
  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 */
.sort_1e3f.yellow_c1f6 {
  box-shadow: var(--shadow-md);
}

.tertiary_full_96df {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.item-2c45 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.notice_warm_fcb6 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.list-smooth-a145 {
  display: none;
}

/* Hide mobile actions on desktop */
.border_1cf3 {
  display: none;
}

.gradient_selected_0515 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.gradient_selected_0515 a:hover,
.gradient_selected_0515 a.fn-active-7f47 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.row-plasma-2f5d {
  margin-left: 1rem;
}

.texture_8599 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.in-7a04,
.fresh_9da9 {
  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;
}

.in-7a04 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.in-7a04: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;
}

.fresh_9da9 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.fresh_9da9: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;
}

.in-7a04 svg,
.fresh_9da9 svg {
  flex-shrink: 0;
}

.south-ce59 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hidden_plasma_e746 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.hidden_plasma_e746::before,
.hidden_plasma_e746::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.hidden_plasma_e746::before {
  top: -7px;
}

.hidden_plasma_e746::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.summary_b9e4 {
  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 === */
.large-2020 {
  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);
}

.widget_soft_0687 {
  margin: 0 0 2rem;
  text-align: center;
}

.surface-513a {
  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;
}

.surface-513a:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.gradient-warm-fa17 {
  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);
}

.gradient-warm-fa17 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.form-warm-7dec {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.paragraph-east-5542 {
  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;
}

.paragraph-east-5542:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.media-4ecd {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.rough-e84a {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.dynamic-555c {
  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);
}

.dynamic-555c .aside-b1a6 {
  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;
}

.dynamic-555c .aside-b1a6 svg {
  flex-shrink: 0;
}

.dynamic-555c .modal_static_0567 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.dynamic-555c .modal_static_0567: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);
}

.dynamic-555c .cold-e7b6 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.dynamic-555c .cold-e7b6: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) {
  .large-2020 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .surface-513a {
    max-width: 100%;
  }

  .form-warm-7dec {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .paragraph-east-5542 {
    padding: 1rem;
  }

  .media-4ecd {
    font-size: 1.5rem;
  }

  .rough-e84a {
    font-size: 0.75rem;
  }

  .gradient-warm-fa17 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .dynamic-555c {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .dynamic-555c .aside-b1a6 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .form-warm-7dec {
    grid-template-columns: 1fr;
  }
}

.active-7b32 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.article-left-0850 {
  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 === */
.info-a0d8 {
  margin-bottom: 2.5rem;
}

.last-1319 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.active-7b32 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.mask_hot_fca3 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.down-ac3c {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.logo_79bc {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.table-43b2 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.input_old_9d6d {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.huge-67c9 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.accent-7603 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.accent-7603 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.medium-7058 {
  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);
}

.hover_43e6 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.list_e6c6 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tertiary_58d4 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.down_ac8f {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.texture_43ae {
  display: grid;
  gap: 1rem;
}

.up-bda1 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.overlay-855a {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.orange_ccc4 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.grid-top-61dd {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.full-7e15 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.thick_c6d2 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.thick_c6d2 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.description_orange_f36e {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.red-e84f {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.icon-1377 {
  display: grid;
  gap: 2rem;
}

.row-lower-377e {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.down-ac3c {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.mask_hot_fca3 {
  flex: 1;
}

.table-43b2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.table-43b2 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.search_top_23d3 {
  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;
}

.input_old_9d6d {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.mask_tiny_e71b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.mask_tiny_e71b span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.outer_a410 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.outer_a410 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.card_last_6d69 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.card_last_6d69 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.card_last_6d69 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card_last_6d69 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.wood-6812 {
  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 === */
.new-68ac {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.steel_b940 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.summary_93c7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.wood_713b h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.wood_713b ol {
  list-style: none;
  counter-reset: toc-counter;
}

.wood_713b ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.wood_713b 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;
}

.wood_713b ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.wood_713b ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.summary_pro_71be {
  padding: 3rem 0 5rem;
}

.hero_fluid_0b18 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.hero_fluid_0b18.outer_bc31 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.widget-iron-08b3 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.filter-6225 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.paragraph_active_010a {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.paragraph_active_010a h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.prev-c04a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.clean_93fd {
  text-align: center;
}

.disabled_silver_8137 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.aside_next_00ca {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.border_7daa {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.backdrop-58a3 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.image_567d {
  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;
}

.image_567d * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.image_567d:hover {
  box-shadow: var(--shadow-lg);
}

.image_567d.shade-hard-6bc1 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.image_567d h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.image_567d ul {
  margin: 1rem 0;
}

.image_567d li {
  margin-bottom: 0.75rem;
}

.image_2925 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.action_e967 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.action_e967 a {
  font-weight: 600;
}

/* === Data Tables === */
.module_cold_c467 {
  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;
}

.module_cold_c467 table {
  width: 100%;
  min-width: 600px;
}

.module_cold_c467 thead {
  background-color: var(--primary-color);
  color: white;
}

.module_cold_c467 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.module_cold_c467 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.module_cold_c467 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.module_cold_c467 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.hard_7413 {
  list-style: none;
  margin: 1.5rem 0;
}

.hard_7413 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.hard_7413 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.next_e035::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-7f47::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 === */
.overlay_a78c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.main_4266 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.main_4266 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.main_4266 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.main_4266 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.overlay_a78c blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.border_b873 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.border_b873::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.layout_a487 {
  position: relative;
  margin-bottom: 3rem;
}

.bronze_0993 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.bronze_0993 .info_d696 {
  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;
}

.solid-b334 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.solid-b334 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.solid-b334 ul {
  margin: 1rem 0;
}

.solid-b334 li {
  margin-bottom: 0.75rem;
}

.in_b8ba {
  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 === */
.liquid-98a1 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.liquid-98a1 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.card_f674 {
  list-style: none;
  margin: 1.5rem 0;
}

.card_f674 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.card_f674 a {
  font-weight: 600;
}

.icon-iron-4811 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.element_iron_78eb {
  margin: 2.5rem 0;
}

.form-plasma-0f31 {
  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;
}

.form-plasma-0f31:hover {
  box-shadow: var(--shadow-lg);
}

.form-plasma-0f31.dark-93fc {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.disabled_26a0 {
  flex-shrink: 0;
}

.disabled_26a0 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);
}

.tertiary_e83e h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.column_short_94af,
.main_slow_0173,
.status_d2dc {
  width: 100%;
  margin: 1.5rem 0;
}

.pattern-92d0 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.pattern-92d0 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.cool_db32 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.cool_db32 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.module_f146 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.module_f146 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.gradient-lite-2599 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.first-330f {
  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;
}

.first-330f:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.first-330f.mask_outer_f259 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.first-330f .action_82d4 {
  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;
}

.first-330f h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.frame_2682 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.aside_slow_b21b {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.aside_slow_b21b label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.fast_1f6e {
  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 === */
.aside-b1a6 {
  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;
}

.modal_static_0567 {
  background-color: var(--primary-color);
  color: white;
}

.modal_static_0567:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.cold-e7b6 {
  background-color: var(--text-secondary);
  color: white;
}

.cold-e7b6:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.texture-9f01 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.texture-9f01:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.white_729d {
  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;
}

.white_729d:hover {
  background-color: var(--primary-dark);
}

.primary_advanced_7e37 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.active_1f5b {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.card_orange_38c2 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.background_active_b8f0 {
  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 === */
.avatar_3011 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.light_eac2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.light_eac2 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.thumbnail-black-13d1 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.secondary_84cf {
  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;
}

.menu-silver-1f76 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.fluid_a62f {
  list-style: none;
  counter-reset: rank-counter;
}

.fluid_a62f li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.fluid_a62f 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;
}

.list_9300 {
  list-style: none;
}

.list_9300 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.tall_9a88 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.tall-7720 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.tall-7720 .alert-right-8b68 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.tall-7720 .avatar-7683 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.progress-89b0 {
  margin-top: 3rem;
}

.pattern-b28b {
  width: 100%;
}

.heading_876f {
  background-color: #fef3c7;
}

.hard_a08a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.hard_ea5b {
  margin: 3rem 0;
}

.main_0715 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.feature_copper_66a6 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.feature_copper_66a6:hover {
  box-shadow: var(--shadow-lg);
}

.feature_copper_66a6.gold_5c1f {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.bright_a04b {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.tooltip_warm_3929 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.tooltip_warm_3929 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.sort-tall-19f2 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.feature_copper_66a6 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.notice_outer_9640 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.glass_9592 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.preview-5b7a {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.upper-db60 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.filter_76b0 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.bottom-90ee {
  margin-top: 1rem;
}

/* === FAQ Section === */
.down_1bf1 {
  max-width: 900px;
  margin: 0 auto;
}

.iron-e4a6 {
  margin: 2rem 0;
}

.frame-1d46 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.frame-1d46 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.frame-1d46 summary::-webkit-details-marker {
  display: none;
}

.frame-1d46 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.slider_66b6 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.frame-1d46[open] .slider_66b6 {
  transform: rotate(45deg);
}

.sort-e6a2 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.sort-e6a2 p:last-child {
  margin-bottom: 0;
}

.shade-091e {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.mask-copper-c3f4 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.soft_63f3 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.soft_63f3 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.soft_63f3 .aside-b1a6 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.hero-in-c57b {
  max-width: 900px;
  margin: 0 auto;
}

.out_69a5 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.heading-focused-fd77 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.heading-focused-fd77.fn-success-7f47 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.row_6613 {
  font-size: 3rem;
  line-height: 1;
}

.west_2259 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.liquid_2945 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.nav_yellow_1f6a,
.white_efb8 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.nav_yellow_1f6a h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.white_efb8 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.list-red-c45a,
.short-2cdd {
  margin: 1.5rem 0;
}

.list-red-c45a li,
.short-2cdd li {
  margin-bottom: 1rem;
}

.pagination_011d {
  margin: 3rem 0;
}

.frame_soft_4f9f {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.frame_soft_4f9f h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.frame_soft_4f9f ol {
  margin: 1rem 0;
}

.frame_soft_4f9f li {
  margin-bottom: 0.75rem;
}

.backdrop_tiny_3738 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.glass_a5ad {
  margin: 2rem 0;
}

.dim-6cc9 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.wide-8792 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.disabled-middle-9029 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.border_smooth_92c1 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.gallery_360c {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.table-static-19ac {
  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;
}

.table-static-19ac img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.logo_79bc {
  flex: 1;
}

.logo_79bc h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.fluid_02b9 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.element-8785 p {
  margin-bottom: 1rem;
}

.overlay_9323 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.notice-6bc9 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.tag-cdcc {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.tag-cdcc a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.info-top-6e23 h3 {
  margin-bottom: 1.5rem;
}

.accordion-d09f {
  display: grid;
  gap: 2rem;
}

.easy-57f1 {
  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;
}

.easy-57f1 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.easy-57f1 h4 {
  margin: 0 0 0.25rem;
}

.easy-57f1 p {
  margin: 0;
  font-size: 0.9375rem;
}

.solid-96fb {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.notification_71c4 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.notification_71c4 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.notification_71c4 ul {
  margin: 1.5rem 0;
}

.notification_71c4 li {
  margin-bottom: 0.75rem;
}

.dark-6837 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.tertiary-lite-6ce6 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.component_c607 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.slider_fresh_12b7 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.slider_fresh_12b7 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.image_silver_2a1e {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.image_silver_2a1e a {
  color: rgba(255, 255, 255, 0.8);
}

.disabled-inner-2cf7 {
  list-style: none;
}

.disabled-inner-2cf7 li {
  margin-bottom: 0.75rem;
}

.disabled-inner-2cf7 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.disabled-inner-2cf7 a:hover {
  color: white;
}

.filter-outer-b1a6 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.highlight_mini_50cd {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.secondary-fresh-d1a5 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.focus_5fd5 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.input-6a4b {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .search_f43e {
    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;
  }

  .simple-5ac5 {
    font-size: 1.5rem !important;
  }

  .last-1319 {
    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 */
  .image_567d,
  .dim_466c,
  .solid-b334,
  .tertiary_e83e,
  .bright_a04b,
  .feature_copper_66a6,
  .sort-e6a2,
  .gradient-warm-fa17,
  .description_orange_f36e,
  .widget-iron-08b3 {
    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 */
  .active-7b32 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .mask_hot_fca3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .down-ac3c {
    flex-shrink: 0;
  }

  .logo_79bc {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .table-43b2,
  .input_old_9d6d {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .input_old_9d6d {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .notice_warm_fcb6 {
    display: none;
  }

  /* Show mobile actions */
  .border_1cf3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .container-brown-480d {
    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;
  }

  .container-brown-480d svg {
    flex-shrink: 0;
  }

  .container-brown-480d .brown_0180 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .container-brown-480d .table_easy_906a {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .status-small-4642 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .summary_a5cd {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .container-brown-480d:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .list-smooth-a145 {
    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;
  }

  .list-smooth-a145.fn-active-7f47 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .list-smooth-a145 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .list-smooth-a145 li:last-child {
    border-bottom: none;
  }

  .list-smooth-a145 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .gradient_selected_0515 {
    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;
  }

  .gradient_selected_0515 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .gradient_selected_0515 li:last-child {
    border-bottom: none;
  }

  .gradient_selected_0515 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .row-plasma-2f5d {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .texture_8599 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .in-7a04,
  .fresh_9da9 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .in-7a04 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .fresh_9da9 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .gradient_selected_0515.fn-active-7f47 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .south-ce59 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .sort_1e3f {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .tertiary_full_96df {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .summary_b9e4 {
    margin-top: 0;
  }

  /* Hero section */
  .summary_b9e4 {
    padding: 2rem 0 1.5rem;
  }

  .last-1319 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .description_orange_f36e {
    font-size: 1rem;
  }

  /* Hero brand image */
  .large-2020 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .surface-513a {
    max-width: 100%;
    border-radius: 8px;
  }

  .form-warm-7dec {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .paragraph-east-5542 {
    padding: 1rem;
  }

  .media-4ecd {
    font-size: 1.5rem;
  }

  .rough-e84a {
    font-size: 0.75rem;
  }

  .gradient-warm-fa17 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .dynamic-555c {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .dynamic-555c .aside-b1a6 {
    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 */
  .summary_93c7 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .form-plasma-0f31 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .disabled_26a0 {
    margin-bottom: 1rem;
  }

  /* Author */
  .row-lower-377e {
    flex-direction: column;
  }

  .table-static-19ac {
    flex-direction: column;
  }

  /* Quotes */
  .bright_a04b {
    flex-direction: column;
  }

  /* Pros/Cons */
  .liquid_2945 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .border_smooth_92c1 {
    flex-direction: column;
  }

  .border_smooth_92c1 .aside-b1a6 {
    width: 100%;
  }

  /* Version comparison */
  .gradient-lite-2599 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .avatar_3011 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .component_c607 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .secondary-fresh-d1a5 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .module_cold_c467,
  .main_slow_0173,
  .brown-bec2,
  .pattern-b28b,
  .column_short_94af,
  .status_d2dc {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .module_cold_c467 table,
  .main_slow_0173 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .fast_1f6e {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .search_f43e {
    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;
  }

  .simple-5ac5 {
    font-size: 1.25rem !important;
  }

  .last-1319 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .sort_1e3f {
    position: fixed;
  }

  .tertiary_full_96df {
    padding: 0.625rem 0;
  }

  .item-2c45 img {
    height: 26px;
  }

  .gradient_selected_0515 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .list-smooth-a145 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .container-brown-480d {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .container-brown-480d svg {
    width: 18px;
    height: 18px;
  }

  .container-brown-480d .brown_0180 {
    font-size: 0.7rem;
  }

  .container-brown-480d .table_easy_906a {
    font-size: 0.65rem;
  }

  .in-7a04,
  .fresh_9da9 {
    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, .search_f43e, .fast_574f, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .large-2020 {
    padding: 1rem;
  }

  .form-warm-7dec {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .paragraph-east-5542 {
    padding: 0.875rem;
  }

  .media-4ecd {
    font-size: 1.25rem;
  }

  .dynamic-555c .aside-b1a6 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .last-1319 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .aside-b1a6 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .primary_advanced_7e37 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .form-plasma-0f31 {
    padding: 1rem;
  }

  .disabled_26a0 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .image_567d,
  .status_first_25b7,
  .surface_steel_173a,
  .slider-upper-7f5d {
    padding: 1rem;
  }
}

@media print {
  .sort_1e3f,
  .new-68ac,
  .south-ce59,
  .aside-b1a6,
  .tertiary-lite-6ce6 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .search_f43e {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.video_tall_69e6 {
  margin-bottom: 3rem;
  text-align: center;
}

.simple-5ac5 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.fluid-3a6f {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.widget-east-b620,
.frame-6ef7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.border_orange_cbee {
  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;
}

.border_orange_cbee:hover {
  transform: translateY(-5px);
}

.border_orange_cbee strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.border_orange_cbee span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.easy-c6bd {
  margin: 3rem 0;
}

.icon-ed59 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gas-0cbb {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.gas-0cbb:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.fast_1566 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.border-west-3a1a {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.badge_38bf {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.wide_99df {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.active-6429 {
  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;
}

.active-6429:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.active-6429.tooltip-focused-3692 {
  border-left: 4px solid var(--primary-color);
}

.container-9790 {
  flex-shrink: 0;
}

.container-9790 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.fresh_2940 {
  flex: 1;
}

.fresh_2940 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.column-3260 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.input-bronze-54e9,
.tabs-4c3f,
.article-down-a9d0 {
  margin-bottom: 1.5rem;
}

.input-bronze-54e9 h4,
.tabs-4c3f h4,
.article-down-a9d0 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.input-bronze-54e9 ul,
.tabs-4c3f ul,
.article-down-a9d0 ul {
  list-style: none;
  padding: 0;
}

.input-bronze-54e9 li,
.tabs-4c3f li,
.article-down-a9d0 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.input-bronze-54e9 li:before,
.tabs-4c3f li:before,
.article-down-a9d0 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.logo-78f3 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.logo-78f3 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;
}

.logo-78f3 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.dirty-7bcf { margin: 2rem 0; }
.narrow-b30a { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.narrow-b30a h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.sidebar-black-b864 p { margin-bottom: 1rem; line-height: 1.7; }
.sidebar-black-b864 strong { color: var(--text-primary); }
.sidebar-black-b864 ul { list-style: none; padding-left: 0; }
.sidebar-black-b864 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.sidebar-black-b864 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.preview_bronze_1c75 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.wrapper_ac03 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.wrapper_ac03:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.frame-6021 { font-size: 3rem; margin-bottom: 1rem; }
.wrapper_ac03 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.wrapper_ac03 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.static-e24e { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.static-e24e span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.hard_1af1 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.layout_4f0e { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.chip_d950 { text-align: center; }
.list_down_5bb4 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.mini-bca6 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.steel-6bc6 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.pagination-liquid-a415 { margin: 2rem 0; }
.accent_8ed2 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.accent_8ed2 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.accent_8ed2 p, .accent_8ed2 ul { line-height: 1.7; }
.accent_8ed2 ul { list-style: none; padding-left: 0; }
.accent_8ed2 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.accent_8ed2 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.outline-simple-a724 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.tooltip-f5e2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.alert_lite_0918 { text-align: center; }
.over_fdf2 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.popup_441a { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.row-tall-b1f0 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.carousel_hard_28b7 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.solid-efad { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.solid-efad:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.solid-efad h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.solid-efad p, .solid-efad ul { line-height: 1.7; }
.solid-efad ul { list-style: none; padding-left: 0; }
.solid-efad ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.solid-efad ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 1f4e */
.promo-block-j5 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.3;
}
