/* ============================================
   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 */
.white-35d8 p,
.pink_d57c,
.notification_last_48c9,
.middle-9d5f,
.media_1210,
.header-a500,
.basic-07f9,
.gradient-cfb6 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.tertiary_fresh_0214 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.tertiary_fresh_0214 > *,
.action-b950,
.white-35d8,
.feature_5fca {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .tertiary_fresh_0214 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .tertiary_fresh_0214 {
    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 === */
.paragraph_d986 {
  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 */
.paragraph_d986.title-purple-16ca {
  box-shadow: var(--shadow-md);
}

.focus-rough-00c1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.lite-4ecf img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.main-81f7 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.modal-26c3 {
  display: none;
}

/* Hide mobile actions on desktop */
.large_b9c1 {
  display: none;
}

.large-62fd a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.large-62fd a:hover,
.large-62fd a.fn-active-7c63 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.top_b672 {
  margin-left: 1rem;
}

.media-slow-db85 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.backdrop-584a,
.background-3108 {
  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;
}

.backdrop-584a {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.backdrop-584a: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;
}

.background-3108 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.background-3108: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;
}

.backdrop-584a svg,
.background-3108 svg {
  flex-shrink: 0;
}

.picture-bab7 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.outline-active-100c {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.outline-active-100c::before,
.outline-active-100c::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.outline-active-100c::before {
  top: -7px;
}

.outline-active-100c::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.tabs_4876 {
  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 === */
.footer_mini_6245 {
  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);
}

.dark-3661 {
  margin: 0 0 2rem;
  text-align: center;
}

.tiny-80bb {
  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;
}

.tiny-80bb:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.chip_d34b {
  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);
}

.chip_d34b strong {
  color: var(--primary-color);
  font-weight: 700;
}

.main_purple_e843 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.thumbnail_purple_9e4a {
  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;
}

.thumbnail_purple_9e4a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.secondary_thick_a00f {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.backdrop-0e94 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.mini-04a0 {
  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);
}

.mini-04a0 .list-ee42 {
  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;
}

.mini-04a0 .list-ee42 svg {
  flex-shrink: 0;
}

.mini-04a0 .progress_huge_2f8b {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.mini-04a0 .progress_huge_2f8b: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);
}

.mini-04a0 .under_4745 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.mini-04a0 .under_4745: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) {
  .footer_mini_6245 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .tiny-80bb {
    max-width: 100%;
  }

  .main_purple_e843 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .thumbnail_purple_9e4a {
    padding: 1rem;
  }

  .secondary_thick_a00f {
    font-size: 1.5rem;
  }

  .backdrop-0e94 {
    font-size: 0.75rem;
  }

  .chip_d34b {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .mini-04a0 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .mini-04a0 .list-ee42 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .main_purple_e843 {
    grid-template-columns: 1fr;
  }
}

.chip-8ac0 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.detail-0b87 {
  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 === */
.copper_ceb8 {
  margin-bottom: 2.5rem;
}

.module-33fb {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.chip-8ac0 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.top_f6ce {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.column_in_5c9c {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.article-inner-fd21 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.white_28f2 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.row_large_e212 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.center_5e09 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.aside_bright_2b15 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.aside_bright_2b15 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.highlight-8fef {
  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);
}

.up_da2f {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.out-98f2 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.grid_f6bb {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.accent-1dca {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.tertiary-395b {
  display: grid;
  gap: 1rem;
}

.pressed_4d38 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.static_e150 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.pro-1672 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.background_thick_44f6 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.wrapper_0975 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.inner-46b3 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.inner-46b3 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.pink_d57c {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.main_action_3b46 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.panel_plasma_b86f {
  display: grid;
  gap: 2rem;
}

.cold-4b15 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.column_in_5c9c {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.top_f6ce {
  flex: 1;
}

.white_28f2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.white_28f2 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.nav_liquid_5c20 {
  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;
}

.row_large_e212 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.stone-6aa6 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.stone-6aa6 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.carousel-8f0d {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.carousel-8f0d a {
  font-size: 0.875rem;
  font-weight: 500;
}

.lower_4848 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.lower_4848 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.lower_4848 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lower_4848 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.mini-0b32 {
  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 === */
.section_hot_50cd {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.paper-e110 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.simple_c278 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.yellow-51bc h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.yellow-51bc ol {
  list-style: none;
  counter-reset: toc-counter;
}

.yellow-51bc ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.yellow-51bc 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;
}

.yellow-51bc ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.yellow-51bc ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.white-35d8 {
  padding: 3rem 0 5rem;
}

.feature_5fca {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.feature_5fca.focus-short-1c61 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.notification_last_48c9 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.bright-7d2b {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.action_3ba6 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.action_3ba6 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.motion_ce3f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.medium-a510 {
  text-align: center;
}

.notice_huge_5513 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.copper-08c6 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.photo-outer-f98a {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.header-a500 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.middle-9d5f {
  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;
}

.middle-9d5f * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.middle-9d5f:hover {
  box-shadow: var(--shadow-lg);
}

.middle-9d5f.pro_0f61 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.middle-9d5f h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.middle-9d5f ul {
  margin: 1rem 0;
}

.middle-9d5f li {
  margin-bottom: 0.75rem;
}

.badge_f470 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.motion-99ef {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.motion-99ef a {
  font-weight: 600;
}

/* === Data Tables === */
.center-92d5 {
  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;
}

.center-92d5 table {
  width: 100%;
  min-width: 600px;
}

.center-92d5 thead {
  background-color: var(--primary-color);
  color: white;
}

.center-92d5 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.center-92d5 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.center-92d5 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.center-92d5 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.picture-thick-8490 {
  list-style: none;
  margin: 1.5rem 0;
}

.picture-thick-8490 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.picture-thick-8490 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.banner-dim-032f::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-7c63::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 === */
.upper-cbbf {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.focus_0193 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.focus_0193 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.focus_0193 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.focus_0193 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.upper-cbbf blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.basic-07f9 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.basic-07f9::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.up_d66d {
  position: relative;
  margin-bottom: 3rem;
}

.outline-purple-2c7a {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.outline-purple-2c7a .chip_current_9a5d {
  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;
}

.modal-lite-9dca {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.modal-lite-9dca h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.modal-lite-9dca ul {
  margin: 1rem 0;
}

.modal-lite-9dca li {
  margin-bottom: 0.75rem;
}

.chip_dbd1 {
  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 === */
.box_f699 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.box_f699 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.form-f877 {
  list-style: none;
  margin: 1.5rem 0;
}

.form-f877 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.form-f877 a {
  font-weight: 600;
}

.feature_gas_5687 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.gradient-cfb6 {
  margin: 2.5rem 0;
}

.south_7d6f {
  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;
}

.south_7d6f:hover {
  box-shadow: var(--shadow-lg);
}

.south_7d6f.label_1ba6 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.article-smooth-3407 {
  flex-shrink: 0;
}

.article-smooth-3407 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);
}

.card-simple-1fd6 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.progress_d556,
.list_outer_f1c6,
.article-bronze-2b81 {
  width: 100%;
  margin: 1.5rem 0;
}

.stone-fe24 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.stone-fe24 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.chip_out_7ad1 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.chip_out_7ad1 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.logo_bfa2 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.logo_bfa2 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.up_d5f2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.image_8976 {
  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;
}

.image_8976:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.image_8976.search-6d4f {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.image_8976 .cool-8df2 {
  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;
}

.image_8976 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.backdrop-9a2e {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.secondary-soft-0d5b {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.secondary-soft-0d5b label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.background-dim-2c47 {
  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 === */
.list-ee42 {
  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;
}

.progress_huge_2f8b {
  background-color: var(--primary-color);
  color: white;
}

.progress_huge_2f8b:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.under_4745 {
  background-color: var(--text-secondary);
  color: white;
}

.under_4745:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.logo_fixed_ebb0 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.logo_fixed_ebb0:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.pro-0fbe {
  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;
}

.pro-0fbe:hover {
  background-color: var(--primary-dark);
}

.section_ab8c {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.action_c164 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.header_a8d0 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-active-f0f0 {
  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 === */
.wood-4303 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.feature-fresh-f9c5 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.feature-fresh-f9c5 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.section-brown-306e {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.red-f134 {
  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;
}

.red_7857 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.texture-931b {
  list-style: none;
  counter-reset: rank-counter;
}

.texture-931b li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.texture-931b 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;
}

.image-thick-a641 {
  list-style: none;
}

.image-thick-a641 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.focus_de12 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.motion_d7fa {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.motion_d7fa .detail_thick_e5c8 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.motion_d7fa .module_0d47 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.wrapper_e5d3 {
  margin-top: 3rem;
}

.thumbnail-out-04d2 {
  width: 100%;
}

.grid_active_48d3 {
  background-color: #fef3c7;
}

.tooltip-d7bc {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.component-f37c {
  margin: 3rem 0;
}

.south_c747 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.paragraph_b750 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.paragraph_b750:hover {
  box-shadow: var(--shadow-lg);
}

.paragraph_b750.image-current-0a28 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.tabs-dc5b {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.column-6d18 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.column-6d18 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.input-wood-b8c4 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.paragraph_b750 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.sort_5561 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hidden_hard_7439 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.search-9928 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.disabled-steel-ef5e {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.widget-e614 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.focus-old-2bcf {
  margin-top: 1rem;
}

/* === FAQ Section === */
.form_pressed_3cec {
  max-width: 900px;
  margin: 0 auto;
}

.tall_523e {
  margin: 2rem 0;
}

.hot-c276 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.hot-c276 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.hot-c276 summary::-webkit-details-marker {
  display: none;
}

.hot-c276 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.notice-93c8 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.hot-c276[open] .notice-93c8 {
  transform: rotate(45deg);
}

.bronze-5e5e {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.bronze-5e5e p:last-child {
  margin-bottom: 0;
}

.action_7362 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.summary_yellow_fd46 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.block-93df {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.block-93df p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.block-93df .list-ee42 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.paragraph-a4fb {
  max-width: 900px;
  margin: 0 auto;
}

.thumbnail_9370 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.accordion-pink-10ba {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.accordion-pink-10ba.fn-success-7c63 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.focus_5dd6 {
  font-size: 3rem;
  line-height: 1;
}

.accent_1efb h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.prev_73d2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.breadcrumb-c12d,
.full_95f3 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.breadcrumb-c12d h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.full_95f3 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.down_86fd,
.plasma_a140 {
  margin: 1.5rem 0;
}

.down_86fd li,
.plasma_a140 li {
  margin-bottom: 1rem;
}

.shadow_active_a5d3 {
  margin: 3rem 0;
}

.basic-f4a1 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.basic-f4a1 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.basic-f4a1 ol {
  margin: 1rem 0;
}

.basic-f4a1 li {
  margin-bottom: 0.75rem;
}

.progress-east-f4a9 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.first_7e8b {
  margin: 2rem 0;
}

.grid_red_c919 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.picture_81b9 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.avatar-east-6b46 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.media-wide-c87f {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.up_e483 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.last-161b {
  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;
}

.last-161b img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.article-inner-fd21 {
  flex: 1;
}

.article-inner-fd21 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.accent-c8fd {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.preview_0e12 p {
  margin-bottom: 1rem;
}

.layout-4efb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.heading_e6ff {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.white-6bf0 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.white-6bf0 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.dropdown-pressed-0a0e h3 {
  margin-bottom: 1.5rem;
}

.heading-b715 {
  display: grid;
  gap: 2rem;
}

.simple-ee6a {
  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;
}

.simple-ee6a img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.simple-ee6a h4 {
  margin: 0 0 0.25rem;
}

.simple-ee6a p {
  margin: 0;
  font-size: 0.9375rem;
}

.search_smooth_5f6f {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.overlay_971d {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.overlay_971d h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.overlay_971d ul {
  margin: 1.5rem 0;
}

.overlay_971d li {
  margin-bottom: 0.75rem;
}

.header_f443 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.clean-c359 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.element-advanced-a5a7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.carousel_ee0a h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.carousel_ee0a p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.box_east_a22a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.box_east_a22a a {
  color: rgba(255, 255, 255, 0.8);
}

.gallery-next-a8f5 {
  list-style: none;
}

.gallery-next-a8f5 li {
  margin-bottom: 0.75rem;
}

.gallery-next-a8f5 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.gallery-next-a8f5 a:hover {
  color: white;
}

.first_d51d {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.hot-c379 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.feature-silver-c5f3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.avatar_in_2dd3 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.logo-db55 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .tertiary_fresh_0214 {
    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;
  }

  .widget-7dc0 {
    font-size: 1.5rem !important;
  }

  .module-33fb {
    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 */
  .middle-9d5f,
  .media_1210,
  .modal-lite-9dca,
  .card-simple-1fd6,
  .tabs-dc5b,
  .paragraph_b750,
  .bronze-5e5e,
  .chip_d34b,
  .pink_d57c,
  .notification_last_48c9 {
    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 */
  .chip-8ac0 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .top_f6ce {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .column_in_5c9c {
    flex-shrink: 0;
  }

  .article-inner-fd21 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .white_28f2,
  .row_large_e212 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .row_large_e212 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .main-81f7 {
    display: none;
  }

  /* Show mobile actions */
  .large_b9c1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .focus-east-0c3b {
    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;
  }

  .focus-east-0c3b svg {
    flex-shrink: 0;
  }

  .focus-east-0c3b .container-next-fcc1 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .focus-east-0c3b .gas-71ca {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .module-dim-606b {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .breadcrumb-164d {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .focus-east-0c3b:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .modal-26c3 {
    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;
  }

  .modal-26c3.fn-active-7c63 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .modal-26c3 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .modal-26c3 li:last-child {
    border-bottom: none;
  }

  .modal-26c3 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .large-62fd {
    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;
  }

  .large-62fd li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .large-62fd li:last-child {
    border-bottom: none;
  }

  .large-62fd a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .top_b672 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .media-slow-db85 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .backdrop-584a,
  .background-3108 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .backdrop-584a {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .background-3108 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .large-62fd.fn-active-7c63 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .picture-bab7 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .paragraph_d986 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .focus-rough-00c1 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .tabs_4876 {
    margin-top: 0;
  }

  /* Hero section */
  .tabs_4876 {
    padding: 2rem 0 1.5rem;
  }

  .module-33fb {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .pink_d57c {
    font-size: 1rem;
  }

  /* Hero brand image */
  .footer_mini_6245 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .tiny-80bb {
    max-width: 100%;
    border-radius: 8px;
  }

  .main_purple_e843 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .thumbnail_purple_9e4a {
    padding: 1rem;
  }

  .secondary_thick_a00f {
    font-size: 1.5rem;
  }

  .backdrop-0e94 {
    font-size: 0.75rem;
  }

  .chip_d34b {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .mini-04a0 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .mini-04a0 .list-ee42 {
    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 */
  .simple_c278 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .south_7d6f {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .article-smooth-3407 {
    margin-bottom: 1rem;
  }

  /* Author */
  .cold-4b15 {
    flex-direction: column;
  }

  .last-161b {
    flex-direction: column;
  }

  /* Quotes */
  .tabs-dc5b {
    flex-direction: column;
  }

  /* Pros/Cons */
  .prev_73d2 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .media-wide-c87f {
    flex-direction: column;
  }

  .media-wide-c87f .list-ee42 {
    width: 100%;
  }

  /* Version comparison */
  .up_d5f2 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .wood-4303 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .element-advanced-a5a7 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-silver-c5f3 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .center-92d5,
  .list_outer_f1c6,
  .mask_silver_738c,
  .thumbnail-out-04d2,
  .progress_d556,
  .article-bronze-2b81 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .center-92d5 table,
  .list_outer_f1c6 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .background-dim-2c47 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .tertiary_fresh_0214 {
    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;
  }

  .widget-7dc0 {
    font-size: 1.25rem !important;
  }

  .module-33fb {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .paragraph_d986 {
    position: fixed;
  }

  .focus-rough-00c1 {
    padding: 0.625rem 0;
  }

  .lite-4ecf img {
    height: 26px;
  }

  .large-62fd {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .modal-26c3 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .focus-east-0c3b {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .focus-east-0c3b svg {
    width: 18px;
    height: 18px;
  }

  .focus-east-0c3b .container-next-fcc1 {
    font-size: 0.7rem;
  }

  .focus-east-0c3b .gas-71ca {
    font-size: 0.65rem;
  }

  .backdrop-584a,
  .background-3108 {
    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, .tertiary_fresh_0214, .action-b950, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .footer_mini_6245 {
    padding: 1rem;
  }

  .main_purple_e843 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .thumbnail_purple_9e4a {
    padding: 0.875rem;
  }

  .secondary_thick_a00f {
    font-size: 1.25rem;
  }

  .mini-04a0 .list-ee42 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .module-33fb {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .list-ee42 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .section_ab8c {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .south_7d6f {
    padding: 1rem;
  }

  .article-smooth-3407 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .middle-9d5f,
  .accent-hard-063d,
  .widget-2573,
  .search-5afd {
    padding: 1rem;
  }
}

@media print {
  .paragraph_d986,
  .section_hot_50cd,
  .picture-bab7,
  .list-ee42,
  .clean-c359 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .tertiary_fresh_0214 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.east_8992 {
  margin-bottom: 3rem;
  text-align: center;
}

.widget-7dc0 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.brown_80a0 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.grid_gold_5aa4,
.element_white_9907 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.backdrop-blue-55f4 {
  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;
}

.backdrop-blue-55f4:hover {
  transform: translateY(-5px);
}

.backdrop-blue-55f4 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.backdrop-blue-55f4 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.hard-098e {
  margin: 3rem 0;
}

.picture-8ff4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.old-9867 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.old-9867:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.large_22a2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cold_b8a6 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.copper-5c49 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.wrapper-bright-a283 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.status_8f67 {
  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_8f67:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.status_8f67.dropdown-f97b {
  border-left: 4px solid var(--primary-color);
}

.hard_b646 {
  flex-shrink: 0;
}

.hard_b646 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.detail_simple_ebd8 {
  flex: 1;
}

.detail_simple_ebd8 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.alert_right_c311 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hover-ce54,
.element-410e,
.breadcrumb-635c {
  margin-bottom: 1.5rem;
}

.hover-ce54 h4,
.element-410e h4,
.breadcrumb-635c h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hover-ce54 ul,
.element-410e ul,
.breadcrumb-635c ul {
  list-style: none;
  padding: 0;
}

.hover-ce54 li,
.element-410e li,
.breadcrumb-635c li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.hover-ce54 li:before,
.element-410e li:before,
.breadcrumb-635c li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.solid_84ca {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.solid_84ca 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;
}

.solid_84ca a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.alert_e391 { margin: 2rem 0; }
.row-yellow-914e { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.row-yellow-914e h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.disabled_489a p { margin-bottom: 1rem; line-height: 1.7; }
.disabled_489a strong { color: var(--text-primary); }
.disabled_489a ul { list-style: none; padding-left: 0; }
.disabled_489a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.disabled_489a ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.content_329b { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.description_warm_01bc { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.description_warm_01bc:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.container_fe35 { font-size: 3rem; margin-bottom: 1rem; }
.description_warm_01bc h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.description_warm_01bc p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.nav_b260 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.nav_b260 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.picture-e888 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.thumbnail-04a3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.nav-db2e { text-align: center; }
.down-4c66 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.clean_aa9e { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.orange_1df2 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.filter_3dc0 { margin: 2rem 0; }
.active-wood-7245 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.active-wood-7245 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.active-wood-7245 p, .active-wood-7245 ul { line-height: 1.7; }
.active-wood-7245 ul { list-style: none; padding-left: 0; }
.active-wood-7245 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.active-wood-7245 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.video-in-5653 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.accordion-e0c6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.rough-5467 { text-align: center; }
.gradient_next_2897 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.panel-stale-722c { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.fluid_7ee2 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.dynamic-9e72 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.container_purple_0d0f { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.container_purple_0d0f:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.container_purple_0d0f h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.container_purple_0d0f p, .container_purple_0d0f ul { line-height: 1.7; }
.container_purple_0d0f ul { list-style: none; padding-left: 0; }
.container_purple_0d0f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.container_purple_0d0f ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 9223 */
.promo-block-y6 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.3;
}
