/* ============================================
   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 */
.copper-970d p,
.list-green-948f,
.brown_4606,
.box-1c4f,
.thumbnail_4592,
.heading-2a63,
.primary_current_6d3a,
.container_top_6d7c {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.shadow-3635 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.shadow-3635 > *,
.progress_36d4,
.copper-970d,
.brown-6a21 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .shadow-3635 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .shadow-3635 {
    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 === */
.module-short-b000 {
  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 */
.module-short-b000.dynamic_78f9 {
  box-shadow: var(--shadow-md);
}

.hidden-7d16 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.old-6fdd img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.narrow-6aef {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.main-2552 {
  display: none;
}

/* Hide mobile actions on desktop */
.frame-2d4b {
  display: none;
}

.primary-ed99 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.primary-ed99 a:hover,
.primary-ed99 a.fn-active-0750 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.backdrop-fe47 {
  margin-left: 1rem;
}

.complex-a146 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.dirty_0a1d,
.message_47cc {
  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;
}

.dirty_0a1d {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.dirty_0a1d: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;
}

.message_47cc {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.message_47cc: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;
}

.dirty_0a1d svg,
.message_47cc svg {
  flex-shrink: 0;
}

.main_rough_9f97 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.fluid-f351 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.fluid-f351::before,
.fluid-f351::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.fluid-f351::before {
  top: -7px;
}

.fluid-f351::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.feature-01a8 {
  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 === */
.tag_tiny_2c7e {
  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);
}

.cool_4056 {
  margin: 0 0 2rem;
  text-align: center;
}

.dropdown_hard_5369 {
  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;
}

.dropdown_hard_5369:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.preview_advanced_6e05 {
  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);
}

.preview_advanced_6e05 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.thick_f7ef {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.highlight-ba55 {
  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;
}

.highlight-ba55:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.thick-a8e7 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.aside_soft_2d65 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.yellow-18f3 {
  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);
}

.yellow-18f3 .breadcrumb-8c5a {
  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;
}

.yellow-18f3 .breadcrumb-8c5a svg {
  flex-shrink: 0;
}

.yellow-18f3 .wrapper-dae8 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.yellow-18f3 .wrapper-dae8: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);
}

.yellow-18f3 .video-9a65 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.yellow-18f3 .video-9a65: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) {
  .tag_tiny_2c7e {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .dropdown_hard_5369 {
    max-width: 100%;
  }

  .thick_f7ef {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .highlight-ba55 {
    padding: 1rem;
  }

  .thick-a8e7 {
    font-size: 1.5rem;
  }

  .aside_soft_2d65 {
    font-size: 0.75rem;
  }

  .preview_advanced_6e05 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .yellow-18f3 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .yellow-18f3 .breadcrumb-8c5a {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .thick_f7ef {
    grid-template-columns: 1fr;
  }
}

.caption-stale-bb8e {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.bottom-f483 {
  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 === */
.wide_b4fc {
  margin-bottom: 2.5rem;
}

.row-2daa {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.caption-stale-bb8e {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.out_7a86 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.primary-7af6 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.element-full-792d {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.title-09f9 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.media-simple-edf7 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.video_up_6ac2 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.picture_5854 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.picture_5854 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.large_b366 {
  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);
}

.row_fast_ec9e {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.west_5597 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.grid_415c {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.gold_0720 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.hot_f00f {
  display: grid;
  gap: 1rem;
}

.plasma_3197 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.center_7898 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.mask-bright-e2fc {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.focused_b404 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.hover_8fbd {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.active-green-8335 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.active-green-8335 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.list-green-948f {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.pink_8259 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.top_7a7c {
  display: grid;
  gap: 2rem;
}

.under-9364 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.primary-7af6 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.out_7a86 {
  flex: 1;
}

.title-09f9 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.title-09f9 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.disabled-513f {
  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;
}

.media-simple-edf7 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.dynamic-04b4 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.dynamic-04b4 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.dynamic-d7b3 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.dynamic-d7b3 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.sidebar-white-de60 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.sidebar-white-de60 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.sidebar-white-de60 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-white-de60 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.cool-13fa {
  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 === */
.message_dc87 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.icon_fb9c {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.shadow_b5f1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.input-west-0f54 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.input-west-0f54 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.input-west-0f54 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.input-west-0f54 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;
}

.input-west-0f54 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.input-west-0f54 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.copper-970d {
  padding: 3rem 0 5rem;
}

.brown-6a21 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.brown-6a21.list_simple_0a84 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.brown_4606 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.slider-bronze-e312 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.description_soft_395a {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.description_soft_395a h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.highlight-02a3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.left_d728 {
  text-align: center;
}

.message-899f {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.item_d712 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.iron_b646 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.heading-2a63 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.box-1c4f {
  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;
}

.box-1c4f * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.box-1c4f:hover {
  box-shadow: var(--shadow-lg);
}

.box-1c4f.box_solid_622c {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.box-1c4f h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.box-1c4f ul {
  margin: 1rem 0;
}

.box-1c4f li {
  margin-bottom: 0.75rem;
}

.layout_c739 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.link_6832 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.link_6832 a {
  font-weight: 600;
}

/* === Data Tables === */
.slider-selected-129e {
  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;
}

.slider-selected-129e table {
  width: 100%;
  min-width: 600px;
}

.slider-selected-129e thead {
  background-color: var(--primary-color);
  color: white;
}

.slider-selected-129e th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.slider-selected-129e td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.slider-selected-129e tbody tr:hover {
  background-color: var(--bg-secondary);
}

.slider-selected-129e tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.blue-9790 {
  list-style: none;
  margin: 1.5rem 0;
}

.blue-9790 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.blue-9790 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.pagination_c9cf::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-0750::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 === */
.widget-bright-6159 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.label_8593 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.label_8593 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.label_8593 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.label_8593 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.widget-bright-6159 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.primary_current_6d3a {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.primary_current_6d3a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.row-0f1e {
  position: relative;
  margin-bottom: 3rem;
}

.copper-ebea {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.copper-ebea .menu_light_9f3a {
  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-4cd6 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.banner-4cd6 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.banner-4cd6 ul {
  margin: 1rem 0;
}

.banner-4cd6 li {
  margin-bottom: 0.75rem;
}

.input-cool-c6d7 {
  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 === */
.gallery-1b3a {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.gallery-1b3a h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.content_bright_cd96 {
  list-style: none;
  margin: 1.5rem 0;
}

.content_bright_cd96 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.content_bright_cd96 a {
  font-weight: 600;
}

.layout-1835 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.container_top_6d7c {
  margin: 2.5rem 0;
}

.image-8bf1 {
  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;
}

.image-8bf1:hover {
  box-shadow: var(--shadow-lg);
}

.image-8bf1.hidden-pro-3fe7 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.bronze-dace {
  flex-shrink: 0;
}

.bronze-dace 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);
}

.black_f338 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.layout_cf6c,
.box-iron-0c0c,
.outline_simple_82c7 {
  width: 100%;
  margin: 1.5rem 0;
}

.wide_9d73 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.wide_9d73 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.popup-17b7 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.popup-17b7 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.container_up_d658 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.container_up_d658 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.image-88a2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.main-7cd9 {
  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;
}

.main-7cd9:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.main-7cd9.shadow-44a5 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.main-7cd9 .hover-active-c314 {
  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;
}

.main-7cd9 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.accordion-40fd {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.column_steel_7a07 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.column_steel_7a07 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.copper-5a7c {
  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 === */
.breadcrumb-8c5a {
  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;
}

.wrapper-dae8 {
  background-color: var(--primary-color);
  color: white;
}

.wrapper-dae8:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.video-9a65 {
  background-color: var(--text-secondary);
  color: white;
}

.video-9a65:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.hovered_81c9 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.hovered_81c9:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.north_b1a9 {
  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;
}

.north_b1a9:hover {
  background-color: var(--primary-dark);
}

.image_1b7c {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.message_action_bca2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.backdrop_17e8 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.section_65cf {
  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 === */
.texture-wood-c66a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.form-basic-4a8a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.form-basic-4a8a h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.label-tiny-745c {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.article_5bc0 {
  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;
}

.search-1d41 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.purple_9e8e {
  list-style: none;
  counter-reset: rank-counter;
}

.purple_9e8e li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.purple_9e8e 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;
}

.medium-c380 {
  list-style: none;
}

.medium-c380 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.media-focused-edbe {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.logo_tall_a6b8 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.logo_tall_a6b8 .shade_slow_2a84 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.logo_tall_a6b8 .detail_148f {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.header-easy-c86b {
  margin-top: 3rem;
}

.wrapper_cb8b {
  width: 100%;
}

.aside-e660 {
  background-color: #fef3c7;
}

.focused_7892 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.thick_3ddb {
  margin: 3rem 0;
}

.lower_af13 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.popup-purple-c4b0 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.popup-purple-c4b0:hover {
  box-shadow: var(--shadow-lg);
}

.popup-purple-c4b0.header_d3c5 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.pattern_4869 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.mini-ae15 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.mini-ae15 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.message_9c00 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.popup-purple-c4b0 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.green-04b2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pagination-cool-fcf4 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.plasma_b591 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.highlight_7395 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.primary-2f40 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.content_complex_0968 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.brown_29aa {
  max-width: 900px;
  margin: 0 auto;
}

.tertiary_84cc {
  margin: 2rem 0;
}

.heading_wood_cd11 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.heading_wood_cd11 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.heading_wood_cd11 summary::-webkit-details-marker {
  display: none;
}

.heading_wood_cd11 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.photo_d8b2 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.heading_wood_cd11[open] .photo_d8b2 {
  transform: rotate(45deg);
}

.chip_2275 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.chip_2275 p:last-child {
  margin-bottom: 0;
}

.in-4f91 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.tooltip-52a6 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.in_0936 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.in_0936 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.in_0936 .breadcrumb-8c5a {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.active_2e0e {
  max-width: 900px;
  margin: 0 auto;
}

.section-glass-b4c5 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.steel-c14b {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.steel-c14b.fn-success-0750 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.list_left_66ba {
  font-size: 3rem;
  line-height: 1;
}

.shade-gas-3a18 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.copper_a59a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.picture_fa73,
.media-glass-d6cc {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.picture_fa73 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.media-glass-d6cc h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.paragraph-037b,
.footer_plasma_d37c {
  margin: 1.5rem 0;
}

.paragraph-037b li,
.footer_plasma_d37c li {
  margin-bottom: 1rem;
}

.dirty_cc7e {
  margin: 3rem 0;
}

.full-0b43 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.full-0b43 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.full-0b43 ol {
  margin: 1rem 0;
}

.full-0b43 li {
  margin-bottom: 0.75rem;
}

.message_a6d3 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.glass_6174 {
  margin: 2rem 0;
}

.panel_next_74f5 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.slider_thick_e7d3 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.light_4266 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.white-9e47 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.breadcrumb_smooth_02a8 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.gradient_cool_c0b4 {
  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;
}

.gradient_cool_c0b4 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.element-full-792d {
  flex: 1;
}

.element-full-792d h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.mask-fe72 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.bottom-81c2 p {
  margin-bottom: 1rem;
}

.feature_059b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.steel-da7a {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.dynamic-1abe {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.dynamic-1abe a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.title_17fb h3 {
  margin-bottom: 1.5rem;
}

.media_a38c {
  display: grid;
  gap: 2rem;
}

.large_ba01 {
  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;
}

.large_ba01 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.large_ba01 h4 {
  margin: 0 0 0.25rem;
}

.large_ba01 p {
  margin: 0;
  font-size: 0.9375rem;
}

.modal_29ce {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.huge_b932 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.huge_b932 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.huge_b932 ul {
  margin: 1.5rem 0;
}

.huge_b932 li {
  margin-bottom: 0.75rem;
}

.search_dirty_ff5f {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.gas-6c5d {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.tag-dirty-efe9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.dynamic-96f9 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.dynamic-96f9 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-91e6 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.breadcrumb-91e6 a {
  color: rgba(255, 255, 255, 0.8);
}

.hidden-134d {
  list-style: none;
}

.hidden-134d li {
  margin-bottom: 0.75rem;
}

.hidden-134d a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.hidden-134d a:hover {
  color: white;
}

.summary-e90a {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.focus-fast-0d0f {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.highlight_8c9a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.gradient-steel-1213 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.item-338d {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .shadow-3635 {
    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;
  }

  .shadow_dark_ac7a {
    font-size: 1.5rem !important;
  }

  .row-2daa {
    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 */
  .box-1c4f,
  .thumbnail_4592,
  .banner-4cd6,
  .black_f338,
  .pattern_4869,
  .popup-purple-c4b0,
  .chip_2275,
  .preview_advanced_6e05,
  .list-green-948f,
  .brown_4606 {
    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 */
  .caption-stale-bb8e {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .out_7a86 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .primary-7af6 {
    flex-shrink: 0;
  }

  .element-full-792d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .title-09f9,
  .media-simple-edf7 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .media-simple-edf7 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .narrow-6aef {
    display: none;
  }

  /* Show mobile actions */
  .frame-2d4b {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .tag_3594 {
    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;
  }

  .tag_3594 svg {
    flex-shrink: 0;
  }

  .tag_3594 .disabled_hot_b759 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .tag_3594 .gold-f7cb {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .badge-849a {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .wood_dcab {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .tag_3594:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .main-2552 {
    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;
  }

  .main-2552.fn-active-0750 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-2552 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .main-2552 li:last-child {
    border-bottom: none;
  }

  .main-2552 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .primary-ed99 {
    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;
  }

  .primary-ed99 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .primary-ed99 li:last-child {
    border-bottom: none;
  }

  .primary-ed99 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .backdrop-fe47 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .complex-a146 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .dirty_0a1d,
  .message_47cc {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .dirty_0a1d {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .message_47cc {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .primary-ed99.fn-active-0750 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main_rough_9f97 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .module-short-b000 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .hidden-7d16 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .feature-01a8 {
    margin-top: 0;
  }

  /* Hero section */
  .feature-01a8 {
    padding: 2rem 0 1.5rem;
  }

  .row-2daa {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .list-green-948f {
    font-size: 1rem;
  }

  /* Hero brand image */
  .tag_tiny_2c7e {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .dropdown_hard_5369 {
    max-width: 100%;
    border-radius: 8px;
  }

  .thick_f7ef {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .highlight-ba55 {
    padding: 1rem;
  }

  .thick-a8e7 {
    font-size: 1.5rem;
  }

  .aside_soft_2d65 {
    font-size: 0.75rem;
  }

  .preview_advanced_6e05 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .yellow-18f3 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .yellow-18f3 .breadcrumb-8c5a {
    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 */
  .shadow_b5f1 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .image-8bf1 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .bronze-dace {
    margin-bottom: 1rem;
  }

  /* Author */
  .under-9364 {
    flex-direction: column;
  }

  .gradient_cool_c0b4 {
    flex-direction: column;
  }

  /* Quotes */
  .pattern_4869 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .copper_a59a {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .white-9e47 {
    flex-direction: column;
  }

  .white-9e47 .breadcrumb-8c5a {
    width: 100%;
  }

  /* Version comparison */
  .image-88a2 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .texture-wood-c66a {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .tag-dirty-efe9 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .highlight_8c9a {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .slider-selected-129e,
  .box-iron-0c0c,
  .preview-cool-0036,
  .wrapper_cb8b,
  .layout_cf6c,
  .outline_simple_82c7 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .slider-selected-129e table,
  .box-iron-0c0c table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .copper-5a7c {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .shadow-3635 {
    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;
  }

  .shadow_dark_ac7a {
    font-size: 1.25rem !important;
  }

  .row-2daa {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .module-short-b000 {
    position: fixed;
  }

  .hidden-7d16 {
    padding: 0.625rem 0;
  }

  .old-6fdd img {
    height: 26px;
  }

  .primary-ed99 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .main-2552 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .tag_3594 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .tag_3594 svg {
    width: 18px;
    height: 18px;
  }

  .tag_3594 .disabled_hot_b759 {
    font-size: 0.7rem;
  }

  .tag_3594 .gold-f7cb {
    font-size: 0.65rem;
  }

  .dirty_0a1d,
  .message_47cc {
    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, .shadow-3635, .progress_36d4, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .tag_tiny_2c7e {
    padding: 1rem;
  }

  .thick_f7ef {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .highlight-ba55 {
    padding: 0.875rem;
  }

  .thick-a8e7 {
    font-size: 1.25rem;
  }

  .yellow-18f3 .breadcrumb-8c5a {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .row-2daa {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .breadcrumb-8c5a {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .image_1b7c {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .image-8bf1 {
    padding: 1rem;
  }

  .bronze-dace span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .box-1c4f,
  .accordion-hard-de9d,
  .inner_7dc6,
  .list_fixed_1783 {
    padding: 1rem;
  }
}

@media print {
  .module-short-b000,
  .message_dc87,
  .main_rough_9f97,
  .breadcrumb-8c5a,
  .gas-6c5d {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .shadow-3635 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.fixed_c641 {
  margin-bottom: 3rem;
  text-align: center;
}

.shadow_dark_ac7a {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.detail_motion_d72d {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.panel-228e,
.button-1cb8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.slow-429d {
  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;
}

.slow-429d:hover {
  transform: translateY(-5px);
}

.slow-429d strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.slow-429d span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.component-6891 {
  margin: 3rem 0;
}

.picture-liquid-71da {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.text-e1ed {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.text-e1ed:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.background-huge-514b {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.carousel_lower_3074 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.stone-44e7 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.bronze-964b {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.disabled_paper_ec66 {
  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;
}

.disabled_paper_ec66:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.disabled_paper_ec66.hover_west_1ea3 {
  border-left: 4px solid var(--primary-color);
}

.content_e29b {
  flex-shrink: 0;
}

.content_e29b svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.gallery-9869 {
  flex: 1;
}

.gallery-9869 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.menu-0df1 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.banner_gas_6416,
.fluid_9926,
.label-ff82 {
  margin-bottom: 1.5rem;
}

.banner_gas_6416 h4,
.fluid_9926 h4,
.label-ff82 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.banner_gas_6416 ul,
.fluid_9926 ul,
.label-ff82 ul {
  list-style: none;
  padding: 0;
}

.banner_gas_6416 li,
.fluid_9926 li,
.label-ff82 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.banner_gas_6416 li:before,
.fluid_9926 li:before,
.label-ff82 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.shade-fast-5449 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.shade-fast-5449 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;
}

.shade-fast-5449 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.info-selected-f193 { margin: 2rem 0; }
.paper-c740 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.paper-c740 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.banner_4db6 p { margin-bottom: 1rem; line-height: 1.7; }
.banner_4db6 strong { color: var(--text-primary); }
.banner_4db6 ul { list-style: none; padding-left: 0; }
.banner_4db6 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.banner_4db6 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.highlight-selected-b5b0 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.column-1985 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.column-1985:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.content-paper-ce15 { font-size: 3rem; margin-bottom: 1rem; }
.column-1985 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.column-1985 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.status_b54e { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.status_b54e span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.glass-220e { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.icon-0246 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.upper_c11b { text-align: center; }
.primary-cold-d049 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.small-1efb { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.bronze_cf2d { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.next-e2b5 { margin: 2rem 0; }
.breadcrumb_huge_7824 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.breadcrumb_huge_7824 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.breadcrumb_huge_7824 p, .breadcrumb_huge_7824 ul { line-height: 1.7; }
.breadcrumb_huge_7824 ul { list-style: none; padding-left: 0; }
.breadcrumb_huge_7824 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.breadcrumb_huge_7824 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.content-901a { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.rough-1553 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.wrapper_259a { text-align: center; }
.upper-d275 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.picture-57b1 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.text_cool_777f { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.cold-faf0 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.gallery-8d40 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.gallery-8d40:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.gallery-8d40 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.gallery-8d40 p, .gallery-8d40 ul { line-height: 1.7; }
.gallery-8d40 ul { list-style: none; padding-left: 0; }
.gallery-8d40 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.gallery-8d40 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 7ef5 */
.shadow-element-x9 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.1;
}
