/* ============================================
   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 */
.input_yellow_0f26 p,
.preview-8edd,
.up_e68f,
.card_215f,
.pink-29fd,
.hidden_81a9,
.summary-568a,
.short-db79 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.background_2e75 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.background_2e75 > *,
.prev-158a,
.input_yellow_0f26,
.component_yellow_2b2b {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .background_2e75 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .background_2e75 {
    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 === */
.filter_cold_3e86 {
  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 */
.filter_cold_3e86.progress-d461 {
  box-shadow: var(--shadow-md);
}

.focus-6c60 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.mini-546e img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.heading-18ee {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.dropdown_d2af {
  display: none;
}

/* Hide mobile actions on desktop */
.header-plasma-9a5d {
  display: none;
}

.form-c122 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.form-c122 a:hover,
.form-c122 a.fn-active-2bde {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.tabs_55e6 {
  margin-left: 1rem;
}

.label_clean_b370 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.notice-3280,
.overlay-b039 {
  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-3280 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.notice-3280: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;
}

.overlay-b039 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.overlay-b039: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-3280 svg,
.overlay-b039 svg {
  flex-shrink: 0;
}

.east_14c1 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hidden_fresh_f955 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.hidden_fresh_f955::before,
.hidden_fresh_f955::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.hidden_fresh_f955::before {
  top: -7px;
}

.hidden_fresh_f955::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.text-full-9b3a {
  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 === */
.action-8073 {
  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);
}

.main-pink-cab1 {
  margin: 0 0 2rem;
  text-align: center;
}

.gas-00ba {
  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;
}

.gas-00ba:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.bronze_c6aa {
  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);
}

.bronze_c6aa strong {
  color: var(--primary-color);
  font-weight: 700;
}

.border_black_4447 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.inner-1759 {
  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;
}

.inner-1759:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.fixed_ff7a {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.grid_08d4 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.disabled-5641 {
  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);
}

.disabled-5641 .container_easy_4442 {
  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;
}

.disabled-5641 .container_easy_4442 svg {
  flex-shrink: 0;
}

.disabled-5641 .video-light-1db7 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.disabled-5641 .video-light-1db7: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);
}

.disabled-5641 .avatar-9301 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.disabled-5641 .avatar-9301: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) {
  .action-8073 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .gas-00ba {
    max-width: 100%;
  }

  .border_black_4447 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .inner-1759 {
    padding: 1rem;
  }

  .fixed_ff7a {
    font-size: 1.5rem;
  }

  .grid_08d4 {
    font-size: 0.75rem;
  }

  .bronze_c6aa {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .disabled-5641 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .disabled-5641 .container_easy_4442 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .border_black_4447 {
    grid-template-columns: 1fr;
  }
}

.next_28cf {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.soft-808f {
  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 === */
.frame_c0c0 {
  margin-bottom: 2.5rem;
}

.sort_inner_d2c1 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.next_28cf {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.plasma-6703 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.image-a7fd {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.sort_fluid_5027 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.badge-purple-50e6 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.breadcrumb_clean_1ed9 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.lite_e5b4 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.wood_107f {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.wood_107f svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.active_8e7b {
  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);
}

.heading_blue_c128 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.east-3279 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.column-2df4 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.mini-6dc8 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.bronze-c845 {
  display: grid;
  gap: 1rem;
}

.middle_dc3e {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.tertiary-green-98cf {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.component-22db {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.highlight_brown_459b {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.badge_warm_9392 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.copper-3d90 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.copper-3d90 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.preview-8edd {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.smooth_8029 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.middle-a4e3 {
  display: grid;
  gap: 2rem;
}

.menu_gold_e1ea {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.image-a7fd {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.plasma-6703 {
  flex: 1;
}

.badge-purple-50e6 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.badge-purple-50e6 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.picture_d2f9 {
  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;
}

.breadcrumb_clean_1ed9 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.dropdown_tall_2d24 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.dropdown_tall_2d24 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.right_5ffb {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.right_5ffb a {
  font-size: 0.875rem;
  font-weight: 500;
}

.stale_13f2 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.stale_13f2 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.stale_13f2 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stale_13f2 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.primary-a5dc {
  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 === */
.secondary-small-9678 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.large_c950 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.basic-4e51 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.secondary_51df h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.secondary_51df ol {
  list-style: none;
  counter-reset: toc-counter;
}

.secondary_51df ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.secondary_51df 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;
}

.secondary_51df ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.secondary_51df ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.input_yellow_0f26 {
  padding: 3rem 0 5rem;
}

.component_yellow_2b2b {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.component_yellow_2b2b.shade_copper_e4fc {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.up_e68f {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.hovered_7d8b {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.tag_f96d {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.tag_f96d h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.border_upper_9774 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.avatar-b650 {
  text-align: center;
}

.heading_f2b0 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.media_763b {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.icon_4ac2 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.hidden_81a9 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.card_215f {
  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;
}

.card_215f * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card_215f:hover {
  box-shadow: var(--shadow-lg);
}

.card_215f.summary_2a44 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.card_215f h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.card_215f ul {
  margin: 1rem 0;
}

.card_215f li {
  margin-bottom: 0.75rem;
}

.copper_a685 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.popup_76a9 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.popup_76a9 a {
  font-weight: 600;
}

/* === Data Tables === */
.thick-8e03 {
  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;
}

.thick-8e03 table {
  width: 100%;
  min-width: 600px;
}

.thick-8e03 thead {
  background-color: var(--primary-color);
  color: white;
}

.thick-8e03 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.thick-8e03 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.thick-8e03 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.thick-8e03 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.detail_iron_789a {
  list-style: none;
  margin: 1.5rem 0;
}

.detail_iron_789a li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.detail_iron_789a li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.wide-f310::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-2bde::before {
  content: '⚠';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--warning-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

/* === Expert Insight Box === */
.slider-40b7 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.widget-d529 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.widget-d529 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.widget-d529 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.widget-d529 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.slider-40b7 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.summary-568a {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.summary-568a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.heading-9222 {
  position: relative;
  margin-bottom: 3rem;
}

.steel_d4be {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.steel_d4be .block_basic_4e8a {
  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;
}

.tertiary_225f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.tertiary_225f h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.tertiary_225f ul {
  margin: 1rem 0;
}

.tertiary_225f li {
  margin-bottom: 0.75rem;
}

.input_9d5c {
  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 === */
.black-d6b7 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.black-d6b7 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.hidden-36d1 {
  list-style: none;
  margin: 1.5rem 0;
}

.hidden-36d1 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.hidden-36d1 a {
  font-weight: 600;
}

.in_00f0 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.short-db79 {
  margin: 2.5rem 0;
}

.plasma-7b0d {
  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;
}

.plasma-7b0d:hover {
  box-shadow: var(--shadow-lg);
}

.plasma-7b0d.frame_down_7d0a {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.old_e949 {
  flex-shrink: 0;
}

.old_e949 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);
}

.badge-bottom-a4eb h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.south_b145,
.pressed_f701,
.module_8a67 {
  width: 100%;
  margin: 1.5rem 0;
}

.hidden_pressed_00b8 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.hidden_pressed_00b8 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.texture-selected-7a5d {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.texture-selected-7a5d strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.container-slow-fcf0 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.container-slow-fcf0 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.shade_8467 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.label-yellow-b0e3 {
  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;
}

.label-yellow-b0e3:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.label-yellow-b0e3.action-d259 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.label-yellow-b0e3 .huge-9a1d {
  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;
}

.label-yellow-b0e3 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.first_e8e0 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.paragraph-e93e {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.paragraph-e93e label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.simple_f1ef {
  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 === */
.container_easy_4442 {
  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;
}

.video-light-1db7 {
  background-color: var(--primary-color);
  color: white;
}

.video-light-1db7:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.avatar-9301 {
  background-color: var(--text-secondary);
  color: white;
}

.avatar-9301:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.active-fresh-c9f6 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.active-fresh-c9f6:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.out_3135 {
  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;
}

.out_3135:hover {
  background-color: var(--primary-dark);
}

.border_motion_be6a {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.picture_501b {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.heading-paper-6dff {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pattern_84c2 {
  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 === */
.item-dd1f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.pattern-0c23 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.pattern-0c23 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.wrapper_action_e551 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.pro-0b65 {
  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;
}

.middle_fe2d {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.preview_496a {
  list-style: none;
  counter-reset: rank-counter;
}

.preview_496a li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.preview_496a 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;
}

.text-2ce1 {
  list-style: none;
}

.text-2ce1 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.secondary_lite_0d32 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.main_basic_0172 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.main_basic_0172 .detail-a20c {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.main_basic_0172 .component_6d96 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mask-yellow-be8f {
  margin-top: 3rem;
}

.banner-e0b8 {
  width: 100%;
}

.orange_8275 {
  background-color: #fef3c7;
}

.detail_cfba {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.secondary-pro-9125 {
  margin: 3rem 0;
}

.accent_blue_beef {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.preview-light-15fa {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.preview-light-15fa:hover {
  box-shadow: var(--shadow-lg);
}

.preview-light-15fa.component-22a9 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.breadcrumb-cc64 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.iron_e63d strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.iron_e63d span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-5579 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.preview-light-15fa blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.header_295c {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.next_bbb2 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.widget_25d0 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.layout_pro_9a37 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.description-05a5 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.frame_f088 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.fast-ccc1 {
  max-width: 900px;
  margin: 0 auto;
}

.background-hot-cff8 {
  margin: 2rem 0;
}

.widget_focused_bacd {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.widget_focused_bacd summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.widget_focused_bacd summary::-webkit-details-marker {
  display: none;
}

.widget_focused_bacd summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.thick-eb60 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.widget_focused_bacd[open] .thick-eb60 {
  transform: rotate(45deg);
}

.footer-large-1a1c {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.footer-large-1a1c p:last-child {
  margin-bottom: 0;
}

.banner_green_f939 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.shade-east-8ab6 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.pattern-bottom-c7dc {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.pattern-bottom-c7dc p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.pattern-bottom-c7dc .container_easy_4442 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.under-f638 {
  max-width: 900px;
  margin: 0 auto;
}

.dropdown_east_a0e7 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero_full_d831 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.hero_full_d831.fn-success-2bde {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.mask_89ed {
  font-size: 3rem;
  line-height: 1;
}

.description_first_1663 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.input-soft-3e86 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.tabs-bd02,
.aside-dca6 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.tabs-bd02 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.aside-dca6 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.block-thick-ec35,
.icon_3200 {
  margin: 1.5rem 0;
}

.block-thick-ec35 li,
.icon_3200 li {
  margin-bottom: 1rem;
}

.article-out-36c1 {
  margin: 3rem 0;
}

.rough-981b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.rough-981b h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.rough-981b ol {
  margin: 1rem 0;
}

.rough-981b li {
  margin-bottom: 0.75rem;
}

.picture_4fd7 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.tall-c816 {
  margin: 2rem 0;
}

.bottom_2041 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.paper-b3f5 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.wrapper_65ba {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.easy_1489 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.filter-left-422f {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.easy-8204 {
  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;
}

.easy-8204 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.sort_fluid_5027 {
  flex: 1;
}

.sort_fluid_5027 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.input-top-41a2 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.green-a587 p {
  margin-bottom: 1rem;
}

.accordion_easy_684c {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.overlay_900f {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.widget_e49a {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.widget_e49a a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.aside-b509 h3 {
  margin-bottom: 1.5rem;
}

.media_left_f66f {
  display: grid;
  gap: 2rem;
}

.backdrop_0d0f {
  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;
}

.backdrop_0d0f img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.backdrop_0d0f h4 {
  margin: 0 0 0.25rem;
}

.backdrop_0d0f p {
  margin: 0;
  font-size: 0.9375rem;
}

.label_4e6d {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.brown-e22f {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.brown-e22f h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.brown-e22f ul {
  margin: 1.5rem 0;
}

.brown-e22f li {
  margin-bottom: 0.75rem;
}

.highlight-new-58c4 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.badge-b7ab {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.container_red_7cc9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.avatar-wide-802b h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.avatar-wide-802b p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.west-17fe {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.west-17fe a {
  color: rgba(255, 255, 255, 0.8);
}

.title-rough-0c7c {
  list-style: none;
}

.title-rough-0c7c li {
  margin-bottom: 0.75rem;
}

.title-rough-0c7c a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.title-rough-0c7c a:hover {
  color: white;
}

.full_d8ef {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.paper_0ad9 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.dark_f2e1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.pro-a8cd {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.button-dirty-7804 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .background_2e75 {
    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;
  }

  .aside-b68a {
    font-size: 1.5rem !important;
  }

  .sort_inner_d2c1 {
    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 */
  .card_215f,
  .pink-29fd,
  .tertiary_225f,
  .badge-bottom-a4eb,
  .breadcrumb-cc64,
  .preview-light-15fa,
  .footer-large-1a1c,
  .bronze_c6aa,
  .preview-8edd,
  .up_e68f {
    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 */
  .next_28cf {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .plasma-6703 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .image-a7fd {
    flex-shrink: 0;
  }

  .sort_fluid_5027 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .badge-purple-50e6,
  .breadcrumb_clean_1ed9 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .breadcrumb_clean_1ed9 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .heading-18ee {
    display: none;
  }

  /* Show mobile actions */
  .header-plasma-9a5d {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .status_active_ad69 {
    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;
  }

  .status_active_ad69 svg {
    flex-shrink: 0;
  }

  .status_active_ad69 .tooltip_cool_6a2a {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .status_active_ad69 .stale_211e {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .photo_2afa {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .background-2cbc {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .status_active_ad69:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .dropdown_d2af {
    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;
  }

  .dropdown_d2af.fn-active-2bde {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .dropdown_d2af li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .dropdown_d2af li:last-child {
    border-bottom: none;
  }

  .dropdown_d2af a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .form-c122 {
    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;
  }

  .form-c122 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .form-c122 li:last-child {
    border-bottom: none;
  }

  .form-c122 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .tabs_55e6 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .label_clean_b370 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .notice-3280,
  .overlay-b039 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .notice-3280 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .overlay-b039 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .form-c122.fn-active-2bde {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .east_14c1 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .filter_cold_3e86 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .focus-6c60 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .text-full-9b3a {
    margin-top: 0;
  }

  /* Hero section */
  .text-full-9b3a {
    padding: 2rem 0 1.5rem;
  }

  .sort_inner_d2c1 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .preview-8edd {
    font-size: 1rem;
  }

  /* Hero brand image */
  .action-8073 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .gas-00ba {
    max-width: 100%;
    border-radius: 8px;
  }

  .border_black_4447 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .inner-1759 {
    padding: 1rem;
  }

  .fixed_ff7a {
    font-size: 1.5rem;
  }

  .grid_08d4 {
    font-size: 0.75rem;
  }

  .bronze_c6aa {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .disabled-5641 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .disabled-5641 .container_easy_4442 {
    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 */
  .basic-4e51 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .plasma-7b0d {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .old_e949 {
    margin-bottom: 1rem;
  }

  /* Author */
  .menu_gold_e1ea {
    flex-direction: column;
  }

  .easy-8204 {
    flex-direction: column;
  }

  /* Quotes */
  .breadcrumb-cc64 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .input-soft-3e86 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .easy_1489 {
    flex-direction: column;
  }

  .easy_1489 .container_easy_4442 {
    width: 100%;
  }

  /* Version comparison */
  .shade_8467 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .item-dd1f {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .container_red_7cc9 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .dark_f2e1 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .thick-8e03,
  .pressed_f701,
  .card-easy-cf3a,
  .banner-e0b8,
  .south_b145,
  .module_8a67 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .thick-8e03 table,
  .pressed_f701 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .simple_f1ef {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .background_2e75 {
    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;
  }

  .aside-b68a {
    font-size: 1.25rem !important;
  }

  .sort_inner_d2c1 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .filter_cold_3e86 {
    position: fixed;
  }

  .focus-6c60 {
    padding: 0.625rem 0;
  }

  .mini-546e img {
    height: 26px;
  }

  .form-c122 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .dropdown_d2af {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .status_active_ad69 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .status_active_ad69 svg {
    width: 18px;
    height: 18px;
  }

  .status_active_ad69 .tooltip_cool_6a2a {
    font-size: 0.7rem;
  }

  .status_active_ad69 .stale_211e {
    font-size: 0.65rem;
  }

  .notice-3280,
  .overlay-b039 {
    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, .background_2e75, .prev-158a, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .action-8073 {
    padding: 1rem;
  }

  .border_black_4447 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .inner-1759 {
    padding: 0.875rem;
  }

  .fixed_ff7a {
    font-size: 1.25rem;
  }

  .disabled-5641 .container_easy_4442 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .sort_inner_d2c1 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .container_easy_4442 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .border_motion_be6a {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .plasma-7b0d {
    padding: 1rem;
  }

  .old_e949 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .card_215f,
  .popup-glass-3512,
  .focus-a582,
  .disabled_inner_6e16 {
    padding: 1rem;
  }
}

@media print {
  .filter_cold_3e86,
  .secondary-small-9678,
  .east_14c1,
  .container_easy_4442,
  .badge-b7ab {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .background_2e75 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.active-pro-d660 {
  margin-bottom: 3rem;
  text-align: center;
}

.aside-b68a {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.aside_out_b3ca {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.header-3b78,
.alert-action-21c7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.primary-14ac {
  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;
}

.primary-14ac:hover {
  transform: translateY(-5px);
}

.primary-14ac strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.primary-14ac span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.nav_c89c {
  margin: 3rem 0;
}

.detail-a4f0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.tall-1fb4 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.tall-1fb4:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.tag_first_f680 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.sidebar-tall-5e47 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.cold_8b22 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.footer-glass-da1b {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.status_f8bf {
  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;
}

.status_f8bf:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.status_f8bf.pink_cbae {
  border-left: 4px solid var(--primary-color);
}

.chip_dim_f669 {
  flex-shrink: 0;
}

.chip_dim_f669 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.chip_1a0c {
  flex: 1;
}

.chip_1a0c h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.shadow-full-09eb {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hot-ced7,
.accordion_0cbb,
.search-100a {
  margin-bottom: 1.5rem;
}

.hot-ced7 h4,
.accordion_0cbb h4,
.search-100a h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hot-ced7 ul,
.accordion_0cbb ul,
.search-100a ul {
  list-style: none;
  padding: 0;
}

.hot-ced7 li,
.accordion_0cbb li,
.search-100a li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.hot-ced7 li:before,
.accordion_0cbb li:before,
.search-100a li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.east_20be {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.east_20be 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;
}

.east_20be a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.avatar-f61f { margin: 2rem 0; }
.fluid_3aed { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.fluid_3aed h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.preview_next_efd7 p { margin-bottom: 1rem; line-height: 1.7; }
.preview_next_efd7 strong { color: var(--text-primary); }
.preview_next_efd7 ul { list-style: none; padding-left: 0; }
.preview_next_efd7 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.preview_next_efd7 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.focus_fast_08ff { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.box-c26c { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.box-c26c:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.texture-copper-5172 { font-size: 3rem; margin-bottom: 1rem; }
.box-c26c h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.box-c26c p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.gold_31bd { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.gold_31bd span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.summary_right_3c62 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.overlay_white_f4f6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.upper_badd { text-align: center; }
.module-small-2bc9 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.hard_3bdd { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.outline_b73e { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.fast_8c38 { margin: 2rem 0; }
.huge-c430 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.huge-c430 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.huge-c430 p, .huge-c430 ul { line-height: 1.7; }
.huge-c430 ul { list-style: none; padding-left: 0; }
.huge-c430 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.huge-c430 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.hovered_52f5 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.pagination_static_9ad6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.preview-dynamic-e5af { text-align: center; }
.progress_liquid_2e9c { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.table_b276 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.aside_clean_af40 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.texture_top_8bd5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.notice-19ce { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.notice-19ce:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.notice-19ce h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.notice-19ce p, .notice-19ce ul { line-height: 1.7; }
.notice-19ce ul { list-style: none; padding-left: 0; }
.notice-19ce ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.notice-19ce ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: b415 */
.widget-item-k8 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.2;
}
