/* ============================================
   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 */
.pro_5285 p,
.media-pro-40f4,
.card_f9a1,
.logo-0e20,
.dynamic-21db,
.selected_c56f,
.breadcrumb-complex-b502,
.sort-6d2c {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.paper-3a19 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.paper-3a19 > *,
.large-a564,
.pro_5285,
.yellow_08b2 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .paper-3a19 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .paper-3a19 {
    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 === */
.bronze_1fbb {
  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 */
.bronze_1fbb.text-f1f3 {
  box-shadow: var(--shadow-md);
}

.alert-8b64 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.tooltip-ca85 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.image-092f {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.notice_65a4 {
  display: none;
}

/* Hide mobile actions on desktop */
.fixed-5ded {
  display: none;
}

.content_red_8a93 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.content_red_8a93 a:hover,
.content_red_8a93 a.fn-active-9816 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.block_2fcf {
  margin-left: 1rem;
}

.button-5b9e {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.tooltip-east-a01f,
.panel-97a3 {
  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;
}

.tooltip-east-a01f {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.tooltip-east-a01f: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;
}

.panel-97a3 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.panel-97a3: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;
}

.tooltip-east-a01f svg,
.panel-97a3 svg {
  flex-shrink: 0;
}

.grid-cb26 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.silver_db72 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.silver_db72::before,
.silver_db72::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.silver_db72::before {
  top: -7px;
}

.silver_db72::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.hidden_iron_8faa {
  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 === */
.pro-79ef {
  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);
}

.media-light-aeb4 {
  margin: 0 0 2rem;
  text-align: center;
}

.simple_9539 {
  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;
}

.simple_9539:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.gas-b9c9 {
  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);
}

.gas-b9c9 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.description-49b7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.list_f76d {
  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;
}

.list_f76d:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.green_e8cc {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.focused-01d3 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.main_c474 {
  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);
}

.main_c474 .slider-mini-1380 {
  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;
}

.main_c474 .slider-mini-1380 svg {
  flex-shrink: 0;
}

.main_c474 .secondary-smooth-9d07 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.main_c474 .secondary-smooth-9d07: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);
}

.main_c474 .border_cc53 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.main_c474 .border_cc53: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) {
  .pro-79ef {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .simple_9539 {
    max-width: 100%;
  }

  .description-49b7 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .list_f76d {
    padding: 1rem;
  }

  .green_e8cc {
    font-size: 1.5rem;
  }

  .focused-01d3 {
    font-size: 0.75rem;
  }

  .gas-b9c9 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .main_c474 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .main_c474 .slider-mini-1380 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .description-49b7 {
    grid-template-columns: 1fr;
  }
}

.full-f726 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.carousel-dim-fa60 {
  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 === */
.texture-4f61 {
  margin-bottom: 2.5rem;
}

.shade-brown-f619 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.full-f726 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.orange-fd9f {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.block_b2e0 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.simple-9b55 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.next-408e {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.under-9b03 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.menu_1fb8 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.active-62d8 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.active-62d8 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.cold_f00b {
  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);
}

.bright_f7a9 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.in_c53b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.paragraph-296d {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.column_6613 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.input-slow-6db3 {
  display: grid;
  gap: 1rem;
}

.short_f082 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.medium_a925 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.table_bronze_3fd5 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.preview_last_5ae8 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.summary_green_8002 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.frame-a2f0 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.frame-a2f0 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.media-pro-40f4 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.image_394b {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.short-a43c {
  display: grid;
  gap: 2rem;
}

.message_2d35 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.block_b2e0 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.orange-fd9f {
  flex: 1;
}

.next-408e {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.next-408e a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.status_last_73f5 {
  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;
}

.under-9b03 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.description_active_223d {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.description_active_223d span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.hard-a499 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.hard-a499 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.wrapper-iron-2b32 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.wrapper-iron-2b32 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.wrapper-iron-2b32 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wrapper-iron-2b32 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.panel_0879 {
  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 === */
.smooth_e96f {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.first_985d {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.footer-fresh-8c93 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.picture-up-f993 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.picture-up-f993 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.picture-up-f993 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.picture-up-f993 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;
}

.picture-up-f993 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.picture-up-f993 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.pro_5285 {
  padding: 3rem 0 5rem;
}

.yellow_08b2 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.yellow_08b2.row-af34 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.card_f9a1 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.hero_wide_b179 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.out-554b {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.out-554b h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.outline_795c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.full-adf7 {
  text-align: center;
}

.picture-5464 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.wood_97a4 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.dirty_27b2 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.selected_c56f {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.logo-0e20 {
  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;
}

.logo-0e20 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.logo-0e20:hover {
  box-shadow: var(--shadow-lg);
}

.logo-0e20.status_a737 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.logo-0e20 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.logo-0e20 ul {
  margin: 1rem 0;
}

.logo-0e20 li {
  margin-bottom: 0.75rem;
}

.header_8c5a {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.layout_pink_1bd3 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.layout_pink_1bd3 a {
  font-weight: 600;
}

/* === Data Tables === */
.hidden-focused-9794 {
  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;
}

.hidden-focused-9794 table {
  width: 100%;
  min-width: 600px;
}

.hidden-focused-9794 thead {
  background-color: var(--primary-color);
  color: white;
}

.hidden-focused-9794 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.hidden-focused-9794 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.hidden-focused-9794 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.hidden-focused-9794 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.hard_1170 {
  list-style: none;
  margin: 1.5rem 0;
}

.hard_1170 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.hard_1170 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.breadcrumb-black-6e64::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-9816::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 === */
.fluid-0f95 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.element_2a30 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.element_2a30 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.element_2a30 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.element_2a30 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.fluid-0f95 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.breadcrumb-complex-b502 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.breadcrumb-complex-b502::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.dynamic-fbee {
  position: relative;
  margin-bottom: 3rem;
}

.thumbnail-100d {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.thumbnail-100d .popup_blue_7fa7 {
  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;
}

.banner-red-6561 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.banner-red-6561 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.banner-red-6561 ul {
  margin: 1rem 0;
}

.banner-red-6561 li {
  margin-bottom: 0.75rem;
}

.shadow_6f07 {
  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 === */
.focused-f8b3 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.focused-f8b3 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.section_68c0 {
  list-style: none;
  margin: 1.5rem 0;
}

.section_68c0 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.section_68c0 a {
  font-weight: 600;
}

.preview_df6f {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.sort-6d2c {
  margin: 2.5rem 0;
}

.list-hard-5aae {
  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;
}

.list-hard-5aae:hover {
  box-shadow: var(--shadow-lg);
}

.list-hard-5aae.outline_89b7 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.carousel-5017 {
  flex-shrink: 0;
}

.carousel-5017 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);
}

.modal-b477 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.element-38b2,
.stone_208f,
.input_137f {
  width: 100%;
  margin: 1.5rem 0;
}

.white-528c {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.white-528c strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.dropdown-tall-94e3 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.dropdown-tall-94e3 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.inner-94e3 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.inner-94e3 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.media-cold-7f93 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.narrow_8200 {
  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;
}

.narrow_8200:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.narrow_8200.border-advanced-2ac1 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.narrow_8200 .form_5fc1 {
  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;
}

.narrow_8200 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.sort_7925 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.image-129a {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.image-129a label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.popup_north_d18c {
  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 === */
.slider-mini-1380 {
  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;
}

.secondary-smooth-9d07 {
  background-color: var(--primary-color);
  color: white;
}

.secondary-smooth-9d07:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.border_cc53 {
  background-color: var(--text-secondary);
  color: white;
}

.border_cc53:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.breadcrumb-small-aca4 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.breadcrumb-small-aca4:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.sort_under_0736 {
  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;
}

.sort_under_0736:hover {
  background-color: var(--primary-dark);
}

.west_c2c1 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.soft-b703 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.filter_818b {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.focus-bc01 {
  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 === */
.description_8da9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.gallery-fe9f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.gallery-fe9f h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.over-c7db {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.outline_small_9fac {
  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;
}

.title-stale-5961 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.info-yellow-a613 {
  list-style: none;
  counter-reset: rank-counter;
}

.info-yellow-a613 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.info-yellow-a613 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;
}

.background-10b4 {
  list-style: none;
}

.background-10b4 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.feature-5d72 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.fluid_2097 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.fluid_2097 .narrow-c842 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.fluid_2097 .list-in-2350 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.card_6109 {
  margin-top: 3rem;
}

.cool_897b {
  width: 100%;
}

.plasma-0a0f {
  background-color: #fef3c7;
}

.slider_a4cc {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.column-paper-06c2 {
  margin: 3rem 0;
}

.menu_cool_0530 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.thick-c4ae {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.thick-c4ae:hover {
  box-shadow: var(--shadow-lg);
}

.thick-c4ae.green_8ae5 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.next-2b70 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.tabs-steel-74ea strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.tabs-steel-74ea span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.search-tiny-13d0 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.thick-c4ae blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.video_5aed {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pattern_0e0e {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.item-bottom-a9fb {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.message_new_9518 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.nav-d171 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.media_solid_1fbb {
  margin-top: 1rem;
}

/* === FAQ Section === */
.cold-8777 {
  max-width: 900px;
  margin: 0 auto;
}

.fluid-38fd {
  margin: 2rem 0;
}

.slow_ca59 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.slow_ca59 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.slow_ca59 summary::-webkit-details-marker {
  display: none;
}

.slow_ca59 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.hard-8668 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.slow_ca59[open] .hard-8668 {
  transform: rotate(45deg);
}

.container-left-aea8 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.container-left-aea8 p:last-child {
  margin-bottom: 0;
}

.block_1600 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.highlight-white-c9c7 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.background-3801 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.background-3801 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.background-3801 .slider-mini-1380 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.heading-action-7ac1 {
  max-width: 900px;
  margin: 0 auto;
}

.focus_active_f80f {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.filter-3a3d {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.filter-3a3d.fn-success-9816 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.row_bright_290d {
  font-size: 3rem;
  line-height: 1;
}

.fluid_9560 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.frame_dim_999d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.brown-b37a,
.article-white-7bad {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.brown-b37a h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.article-white-7bad h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.status-large-f50a,
.button-selected-775c {
  margin: 1.5rem 0;
}

.status-large-f50a li,
.button-selected-775c li {
  margin-bottom: 1rem;
}

.secondary-old-cb17 {
  margin: 3rem 0;
}

.link_5467 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.link_5467 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.link_5467 ol {
  margin: 1rem 0;
}

.link_5467 li {
  margin-bottom: 0.75rem;
}

.filter-bde0 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.fresh_04b2 {
  margin: 2rem 0;
}

.prev-715a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.left_8d86 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.medium_faf8 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.smooth_e9ed {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.hot-c277 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.title_1ed7 {
  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;
}

.title_1ed7 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.simple-9b55 {
  flex: 1;
}

.simple-9b55 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.article-tall-d956 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.right-04eb p {
  margin-bottom: 1rem;
}

.small-7724 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.accordion_2a0c {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.pagination_motion_1d23 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.pagination_motion_1d23 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.tall-7e33 h3 {
  margin-bottom: 1.5rem;
}

.selected_faf5 {
  display: grid;
  gap: 2rem;
}

.sort_327c {
  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;
}

.sort_327c img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.sort_327c h4 {
  margin: 0 0 0.25rem;
}

.sort_327c p {
  margin: 0;
  font-size: 0.9375rem;
}

.link_046c {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.banner_89c0 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.banner_89c0 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.banner_89c0 ul {
  margin: 1.5rem 0;
}

.banner_89c0 li {
  margin-bottom: 0.75rem;
}

.west_3d4f {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.outline-8dbf {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.steel_37f7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.button-current-c438 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.button-current-c438 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.tertiary_last_c190 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.tertiary_last_c190 a {
  color: rgba(255, 255, 255, 0.8);
}

.widget-4621 {
  list-style: none;
}

.widget-4621 li {
  margin-bottom: 0.75rem;
}

.widget-4621 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.widget-4621 a:hover {
  color: white;
}

.yellow-5fbd {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.cool_47d2 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.element_east_6617 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.photo_clean_af7e {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.tag_48fb {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .paper-3a19 {
    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;
  }

  .secondary-6d5a {
    font-size: 1.5rem !important;
  }

  .shade-brown-f619 {
    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 */
  .logo-0e20,
  .dynamic-21db,
  .banner-red-6561,
  .modal-b477,
  .next-2b70,
  .thick-c4ae,
  .container-left-aea8,
  .gas-b9c9,
  .media-pro-40f4,
  .card_f9a1 {
    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 */
  .full-f726 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .orange-fd9f {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .block_b2e0 {
    flex-shrink: 0;
  }

  .simple-9b55 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .next-408e,
  .under-9b03 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .under-9b03 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .image-092f {
    display: none;
  }

  /* Show mobile actions */
  .fixed-5ded {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .picture-cool-6c30 {
    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;
  }

  .picture-cool-6c30 svg {
    flex-shrink: 0;
  }

  .picture-cool-6c30 .hidden-efd9 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .picture-cool-6c30 .grid-b76f {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .secondary-light-115b {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .stone_5e93 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .picture-cool-6c30:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .notice_65a4 {
    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;
  }

  .notice_65a4.fn-active-9816 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .notice_65a4 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .notice_65a4 li:last-child {
    border-bottom: none;
  }

  .notice_65a4 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .content_red_8a93 {
    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;
  }

  .content_red_8a93 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .content_red_8a93 li:last-child {
    border-bottom: none;
  }

  .content_red_8a93 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .block_2fcf {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .button-5b9e {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .tooltip-east-a01f,
  .panel-97a3 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .tooltip-east-a01f {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .panel-97a3 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .content_red_8a93.fn-active-9816 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .grid-cb26 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .bronze_1fbb {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .alert-8b64 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .hidden_iron_8faa {
    margin-top: 0;
  }

  /* Hero section */
  .hidden_iron_8faa {
    padding: 2rem 0 1.5rem;
  }

  .shade-brown-f619 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .media-pro-40f4 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .pro-79ef {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .simple_9539 {
    max-width: 100%;
    border-radius: 8px;
  }

  .description-49b7 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .list_f76d {
    padding: 1rem;
  }

  .green_e8cc {
    font-size: 1.5rem;
  }

  .focused-01d3 {
    font-size: 0.75rem;
  }

  .gas-b9c9 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .main_c474 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .main_c474 .slider-mini-1380 {
    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 */
  .footer-fresh-8c93 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .list-hard-5aae {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .carousel-5017 {
    margin-bottom: 1rem;
  }

  /* Author */
  .message_2d35 {
    flex-direction: column;
  }

  .title_1ed7 {
    flex-direction: column;
  }

  /* Quotes */
  .next-2b70 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .frame_dim_999d {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .smooth_e9ed {
    flex-direction: column;
  }

  .smooth_e9ed .slider-mini-1380 {
    width: 100%;
  }

  /* Version comparison */
  .media-cold-7f93 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .description_8da9 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .steel_37f7 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .element_east_6617 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .hidden-focused-9794,
  .stone_208f,
  .iron_465f,
  .cool_897b,
  .element-38b2,
  .input_137f {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hidden-focused-9794 table,
  .stone_208f table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .popup_north_d18c {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .paper-3a19 {
    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;
  }

  .secondary-6d5a {
    font-size: 1.25rem !important;
  }

  .shade-brown-f619 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .bronze_1fbb {
    position: fixed;
  }

  .alert-8b64 {
    padding: 0.625rem 0;
  }

  .tooltip-ca85 img {
    height: 26px;
  }

  .content_red_8a93 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .notice_65a4 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .picture-cool-6c30 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .picture-cool-6c30 svg {
    width: 18px;
    height: 18px;
  }

  .picture-cool-6c30 .hidden-efd9 {
    font-size: 0.7rem;
  }

  .picture-cool-6c30 .grid-b76f {
    font-size: 0.65rem;
  }

  .tooltip-east-a01f,
  .panel-97a3 {
    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, .paper-3a19, .large-a564, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .pro-79ef {
    padding: 1rem;
  }

  .description-49b7 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .list_f76d {
    padding: 0.875rem;
  }

  .green_e8cc {
    font-size: 1.25rem;
  }

  .main_c474 .slider-mini-1380 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .shade-brown-f619 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .slider-mini-1380 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .west_c2c1 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .list-hard-5aae {
    padding: 1rem;
  }

  .carousel-5017 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .logo-0e20,
  .full_d825,
  .hero_0e05,
  .button-b7b8 {
    padding: 1rem;
  }
}

@media print {
  .bronze_1fbb,
  .smooth_e96f,
  .grid-cb26,
  .slider-mini-1380,
  .outline-8dbf {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .paper-3a19 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.aside-dark-8e09 {
  margin-bottom: 3rem;
  text-align: center;
}

.secondary-6d5a {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.preview-last-444e {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.steel-e8d3,
.alert-narrow-f92c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.avatar_bright_d0be {
  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;
}

.avatar_bright_d0be:hover {
  transform: translateY(-5px);
}

.avatar_bright_d0be strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.avatar_bright_d0be span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.footer_f2a1 {
  margin: 3rem 0;
}

.panel_bronze_3266 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.hovered-5fc1 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.hovered-5fc1:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.sidebar_short_1351 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.preview_bd64 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.tooltip-smooth-a4fe {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.widget_0335 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.status_caa0 {
  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_caa0:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.status_caa0.highlight_blue_819a {
  border-left: 4px solid var(--primary-color);
}

.row-static-3cc5 {
  flex-shrink: 0;
}

.row-static-3cc5 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.gallery-1feb {
  flex: 1;
}

.gallery-1feb h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.label_061c {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.tag_550b,
.paragraph_green_91de,
.lite_08ad {
  margin-bottom: 1.5rem;
}

.tag_550b h4,
.paragraph_green_91de h4,
.lite_08ad h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tag_550b ul,
.paragraph_green_91de ul,
.lite_08ad ul {
  list-style: none;
  padding: 0;
}

.tag_550b li,
.paragraph_green_91de li,
.lite_08ad li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.tag_550b li:before,
.paragraph_green_91de li:before,
.lite_08ad li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.status-hard-f9eb {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.status-hard-f9eb 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;
}

.status-hard-f9eb a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.stale-f770 { margin: 2rem 0; }
.footer_a5e9 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.footer_a5e9 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.center-36c2 p { margin-bottom: 1rem; line-height: 1.7; }
.center-36c2 strong { color: var(--text-primary); }
.center-36c2 ul { list-style: none; padding-left: 0; }
.center-36c2 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.center-36c2 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.main_pro_7951 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.glass-7a59 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.glass-7a59:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.heading-aacc { font-size: 3rem; margin-bottom: 1rem; }
.glass-7a59 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.glass-7a59 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.menu_96dc { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.menu_96dc span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.chip_silver_fc1e { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.copper_b153 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.carousel-8ed3 { text-align: center; }
.hidden_a8a8 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.motion-81d5 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.fresh-2bfd { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.wide-e73a { margin: 2rem 0; }
.wrapper_blue_b9e4 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.wrapper_blue_b9e4 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.wrapper_blue_b9e4 p, .wrapper_blue_b9e4 ul { line-height: 1.7; }
.wrapper_blue_b9e4 ul { list-style: none; padding-left: 0; }
.wrapper_blue_b9e4 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.wrapper_blue_b9e4 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.footer-short-1c44 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.content-43b2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.purple-c5e1 { text-align: center; }
.red_a22a { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.panel-solid-3590 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.hover_1b8a { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.container-de41 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.container-up-5d44 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.container-up-5d44:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.container-up-5d44 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.container-up-5d44 p, .container-up-5d44 ul { line-height: 1.7; }
.container-up-5d44 ul { list-style: none; padding-left: 0; }
.container-up-5d44 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.container-up-5d44 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: e559 */
.ghost-box-p5 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.3;
}
