/* ============================================
   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 */
.focus_advanced_aca4 p,
.secondary-stale-3865,
.north-7fd8,
.article-e48c,
.soft_40b0,
.highlight_stale_826f,
.search-e46f,
.modal_over_646e {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.static-bec2 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.static-bec2 > *,
.text_0f39,
.focus_advanced_aca4,
.carousel_north_febd {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .static-bec2 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .static-bec2 {
    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 === */
.active-c9ec {
  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 */
.active-c9ec.north_5c4a {
  box-shadow: var(--shadow-md);
}

.focus-5dab {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo_east_74ea img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.photo-6d2d {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.content_1334 {
  display: none;
}

/* Hide mobile actions on desktop */
.hover_thick_50d9 {
  display: none;
}

.hard_59fa a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.hard_59fa a:hover,
.hard_59fa a.fn-active-243f {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.dropdown-next-e8e0 {
  margin-left: 1rem;
}

.right-1010 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.panel_6f57,
.icon-5d40 {
  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;
}

.panel_6f57 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.panel_6f57: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;
}

.icon-5d40 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.icon-5d40: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;
}

.panel_6f57 svg,
.icon-5d40 svg {
  flex-shrink: 0;
}

.focus_e421 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.border_solid_9196 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.border_solid_9196::before,
.border_solid_9196::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.border_solid_9196::before {
  top: -7px;
}

.border_solid_9196::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.form_static_3b53 {
  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 === */
.modal-fd69 {
  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);
}

.icon_6eaa {
  margin: 0 0 2rem;
  text-align: center;
}

.component_2534 {
  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;
}

.component_2534:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.thick_723b {
  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);
}

.thick_723b strong {
  color: var(--primary-color);
  font-weight: 700;
}

.background_b73d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.avatar_314d {
  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;
}

.avatar_314d:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.highlight_copper_06c4 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.card-first-6c5e {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.block_e35f {
  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);
}

.block_e35f .simple-e770 {
  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;
}

.block_e35f .simple-e770 svg {
  flex-shrink: 0;
}

.block_e35f .stale_e980 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.block_e35f .stale_e980: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);
}

.block_e35f .slider-glass-fbc9 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.block_e35f .slider-glass-fbc9: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) {
  .modal-fd69 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .component_2534 {
    max-width: 100%;
  }

  .background_b73d {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .avatar_314d {
    padding: 1rem;
  }

  .highlight_copper_06c4 {
    font-size: 1.5rem;
  }

  .card-first-6c5e {
    font-size: 0.75rem;
  }

  .thick_723b {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .block_e35f {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .block_e35f .simple-e770 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .background_b73d {
    grid-template-columns: 1fr;
  }
}

.hover-left-e5d5 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.overlay_2e78 {
  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_d4e6 {
  margin-bottom: 2.5rem;
}

.frame-static-74f7 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.hover-left-e5d5 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.disabled-18d5 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wrapper-right-12d8 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.out-235a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.accordion-8adb {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.border-full-a8a3 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.background-mini-8783 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.north-4226 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.north-4226 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.frame-gold-de22 {
  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);
}

.summary_9be5 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.tooltip-e2f3 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hovered-042a {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.content_easy_7e0b {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.box_66a7 {
  display: grid;
  gap: 1rem;
}

.card-hard-e758 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.basic_d68e {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.header_motion_8208 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.summary_0ba9 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.paragraph_7d9b {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.article-4647 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.article-4647 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.secondary-stale-3865 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.panel_0af7 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.item_west_f6fd {
  display: grid;
  gap: 2rem;
}

.first-7af3 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.wrapper-right-12d8 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.disabled-18d5 {
  flex: 1;
}

.accordion-8adb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.accordion-8adb a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.bright_7e4c {
  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;
}

.border-full-a8a3 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.row_e4dd {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.row_e4dd span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.upper-1c26 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.upper-1c26 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.up-1fda {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.up-1fda strong {
  display: block;
  margin-bottom: 0.75rem;
}

.up-1fda ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.up-1fda li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.menu_a62b {
  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 === */
.accent_iron_1fef {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.rough_536a {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.breadcrumb_a61c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.primary-2d03 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.primary-2d03 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.primary-2d03 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.primary-2d03 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;
}

.primary-2d03 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.primary-2d03 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.focus_advanced_aca4 {
  padding: 3rem 0 5rem;
}

.carousel_north_febd {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.carousel_north_febd.accordion_wood_1223 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.north-7fd8 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.caption-65c0 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.next_778a {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.next_778a h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.wrapper_d678 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.mask-under-e765 {
  text-align: center;
}

.north_9483 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.accent-040b {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.pro_13d7 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.highlight_stale_826f {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.article-e48c {
  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;
}

.article-e48c * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.article-e48c:hover {
  box-shadow: var(--shadow-lg);
}

.article-e48c.main-large-e072 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.article-e48c h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.article-e48c ul {
  margin: 1rem 0;
}

.article-e48c li {
  margin-bottom: 0.75rem;
}

.container-black-ec37 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.heading-3955 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.heading-3955 a {
  font-weight: 600;
}

/* === Data Tables === */
.title_pink_907c {
  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;
}

.title_pink_907c table {
  width: 100%;
  min-width: 600px;
}

.title_pink_907c thead {
  background-color: var(--primary-color);
  color: white;
}

.title_pink_907c th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.title_pink_907c td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.title_pink_907c tbody tr:hover {
  background-color: var(--bg-secondary);
}

.title_pink_907c tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.hero-1d78 {
  list-style: none;
  margin: 1.5rem 0;
}

.hero-1d78 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.hero-1d78 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.dark-01fa::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-243f::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 === */
.detail_ce14 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.disabled-fast-9395 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.disabled-fast-9395 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.disabled-fast-9395 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.disabled-fast-9395 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.detail_ce14 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.search-e46f {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.search-e46f::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.notification-basic-2390 {
  position: relative;
  margin-bottom: 3rem;
}

.cool_5d6b {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.cool_5d6b .paragraph-085b {
  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;
}

.dark-c303 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.dark-c303 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.dark-c303 ul {
  margin: 1rem 0;
}

.dark-c303 li {
  margin-bottom: 0.75rem;
}

.south_8871 {
  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 === */
.action-e592 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.action-e592 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.sidebar-bright-cc92 {
  list-style: none;
  margin: 1.5rem 0;
}

.sidebar-bright-cc92 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.sidebar-bright-cc92 a {
  font-weight: 600;
}

.north-f780 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.modal_over_646e {
  margin: 2.5rem 0;
}

.column_6dad {
  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;
}

.column_6dad:hover {
  box-shadow: var(--shadow-lg);
}

.column_6dad.black-51ad {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.title-large-745c {
  flex-shrink: 0;
}

.title-large-745c 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);
}

.complex_cae2 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.header-brown-5184,
.disabled_easy_bdfa,
.hard-4efe {
  width: 100%;
  margin: 1.5rem 0;
}

.component-clean-0246 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.component-clean-0246 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.content-200f {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.content-200f strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.avatar-under-4d01 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.avatar-under-4d01 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.pattern-ced9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.disabled_complex_4285 {
  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;
}

.disabled_complex_4285:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.disabled_complex_4285.disabled-ac95 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.disabled_complex_4285 .lower-77e8 {
  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;
}

.disabled_complex_4285 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.element-dynamic-6f0d {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.right_1520 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.right_1520 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.top_b6e8 {
  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 === */
.simple-e770 {
  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;
}

.stale_e980 {
  background-color: var(--primary-color);
  color: white;
}

.stale_e980:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.slider-glass-fbc9 {
  background-color: var(--text-secondary);
  color: white;
}

.slider-glass-fbc9:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.message_lower_b7c5 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.message_lower_b7c5:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.accordion_steel_25a2 {
  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;
}

.accordion_steel_25a2:hover {
  background-color: var(--primary-dark);
}

.list-796c {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.accent-blue-c8a1 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.brown_dbfe {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.card-1d4a {
  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 === */
.blue-602d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.avatar-78fb {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.avatar-78fb h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.plasma-fd30 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.text_medium_faec {
  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;
}

.shade-center-22cb {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.icon-4820 {
  list-style: none;
  counter-reset: rank-counter;
}

.icon-4820 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.icon-4820 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;
}

.outer-260e {
  list-style: none;
}

.outer-260e li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.container-hot-0e3b {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.wood-21fe {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.wood-21fe .wide_c575 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.wood-21fe .hover_bca7 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.list_medium_2469 {
  margin-top: 3rem;
}

.gradient_abd1 {
  width: 100%;
}

.pagination-static-608e {
  background-color: #fef3c7;
}

.huge_1cd8 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.secondary_hot_94f3 {
  margin: 3rem 0;
}

.overlay-fast-be2f {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.basic_7368 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.basic_7368:hover {
  box-shadow: var(--shadow-lg);
}

.basic_7368.accent_dynamic_80bd {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.form_6fce {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.summary-medium-1fee strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.summary-medium-1fee span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form_45c4 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.basic_7368 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.north_35aa {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pagination-stone-6acb {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.hard_64e9 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.mini-0cd2 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.first-9794 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.tall_0091 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.sidebar_gas_b974 {
  max-width: 900px;
  margin: 0 auto;
}

.smooth-6ab8 {
  margin: 2rem 0;
}

.gas_8ddc {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.gas_8ddc summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.gas_8ddc summary::-webkit-details-marker {
  display: none;
}

.gas_8ddc summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.new-ade8 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.gas_8ddc[open] .new-ade8 {
  transform: rotate(45deg);
}

.soft_cf05 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.soft_cf05 p:last-child {
  margin-bottom: 0;
}

.narrow-5455 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.row-5d44 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.main_prev_76ac {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.main_prev_76ac p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.main_prev_76ac .simple-e770 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.alert_lower_22ab {
  max-width: 900px;
  margin: 0 auto;
}

.article_bottom_ee5b {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.nav_b9f1 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.nav_b9f1.fn-success-243f {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.list-afee {
  font-size: 3rem;
  line-height: 1;
}

.media_new_edc4 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.content_action_330f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.upper-c7ba,
.container-current-03eb {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.upper-c7ba h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.container-current-03eb h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.disabled-stale-bc42,
.breadcrumb_99ad {
  margin: 1.5rem 0;
}

.disabled-stale-bc42 li,
.breadcrumb_99ad li {
  margin-bottom: 1rem;
}

.block-warm-7ebc {
  margin: 3rem 0;
}

.frame-4d37 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.frame-4d37 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.frame-4d37 ol {
  margin: 1rem 0;
}

.frame-4d37 li {
  margin-bottom: 0.75rem;
}

.short_e7c3 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.old_a7d7 {
  margin: 2rem 0;
}

.column_aea9 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.label-a11f {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.box-6524 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.summary-b6b1 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.search_pressed_1c2b {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.slider-pressed-f276 {
  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;
}

.slider-pressed-f276 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.out-235a {
  flex: 1;
}

.out-235a h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.texture_smooth_f45b {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.heading-49b9 p {
  margin-bottom: 1rem;
}

.search_copper_55e8 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.clean_3978 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.frame_over_039d {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.frame_over_039d a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.gradient_4b9c h3 {
  margin-bottom: 1.5rem;
}

.avatar_dark_d978 {
  display: grid;
  gap: 2rem;
}

.paragraph_5d5d {
  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;
}

.paragraph_5d5d img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.paragraph_5d5d h4 {
  margin: 0 0 0.25rem;
}

.paragraph_5d5d p {
  margin: 0;
  font-size: 0.9375rem;
}

.background_4ff3 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.notification-upper-f8f6 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.notification-upper-f8f6 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.notification-upper-f8f6 ul {
  margin: 1.5rem 0;
}

.notification-upper-f8f6 li {
  margin-bottom: 0.75rem;
}

.overlay_bright_2681 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.box_d288 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.tooltip-dim-5a68 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.alert_dynamic_5be4 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.alert_dynamic_5be4 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.heading_new_fbd8 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.heading_new_fbd8 a {
  color: rgba(255, 255, 255, 0.8);
}

.complex_d4e0 {
  list-style: none;
}

.complex_d4e0 li {
  margin-bottom: 0.75rem;
}

.complex_d4e0 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.complex_d4e0 a:hover {
  color: white;
}

.selected-d346 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.huge_f749 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.search-prev-f020 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.detail_medium_a03b {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.aside-dc7f {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .static-bec2 {
    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;
  }

  .dirty-f542 {
    font-size: 1.5rem !important;
  }

  .frame-static-74f7 {
    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 */
  .article-e48c,
  .soft_40b0,
  .dark-c303,
  .complex_cae2,
  .form_6fce,
  .basic_7368,
  .soft_cf05,
  .thick_723b,
  .secondary-stale-3865,
  .north-7fd8 {
    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 */
  .hover-left-e5d5 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .disabled-18d5 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .wrapper-right-12d8 {
    flex-shrink: 0;
  }

  .out-235a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .accordion-8adb,
  .border-full-a8a3 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .border-full-a8a3 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .photo-6d2d {
    display: none;
  }

  /* Show mobile actions */
  .hover_thick_50d9 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .backdrop_478b {
    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;
  }

  .backdrop_478b svg {
    flex-shrink: 0;
  }

  .backdrop_478b .container_static_53ea {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .backdrop_478b .wide_aaa0 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .purple-5888 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .fixed-1f4b {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .backdrop_478b:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .content_1334 {
    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;
  }

  .content_1334.fn-active-243f {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .content_1334 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .content_1334 li:last-child {
    border-bottom: none;
  }

  .content_1334 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .hard_59fa {
    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;
  }

  .hard_59fa li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .hard_59fa li:last-child {
    border-bottom: none;
  }

  .hard_59fa a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .dropdown-next-e8e0 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .right-1010 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .panel_6f57,
  .icon-5d40 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .panel_6f57 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .icon-5d40 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .hard_59fa.fn-active-243f {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .focus_e421 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .active-c9ec {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .focus-5dab {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .form_static_3b53 {
    margin-top: 0;
  }

  /* Hero section */
  .form_static_3b53 {
    padding: 2rem 0 1.5rem;
  }

  .frame-static-74f7 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .secondary-stale-3865 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .modal-fd69 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .component_2534 {
    max-width: 100%;
    border-radius: 8px;
  }

  .background_b73d {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .avatar_314d {
    padding: 1rem;
  }

  .highlight_copper_06c4 {
    font-size: 1.5rem;
  }

  .card-first-6c5e {
    font-size: 0.75rem;
  }

  .thick_723b {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .block_e35f {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .block_e35f .simple-e770 {
    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 */
  .breadcrumb_a61c {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .column_6dad {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .title-large-745c {
    margin-bottom: 1rem;
  }

  /* Author */
  .first-7af3 {
    flex-direction: column;
  }

  .slider-pressed-f276 {
    flex-direction: column;
  }

  /* Quotes */
  .form_6fce {
    flex-direction: column;
  }

  /* Pros/Cons */
  .content_action_330f {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .summary-b6b1 {
    flex-direction: column;
  }

  .summary-b6b1 .simple-e770 {
    width: 100%;
  }

  /* Version comparison */
  .pattern-ced9 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .blue-602d {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .tooltip-dim-5a68 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .search-prev-f020 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .title_pink_907c,
  .disabled_easy_bdfa,
  .bottom-7e81,
  .gradient_abd1,
  .header-brown-5184,
  .hard-4efe {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .title_pink_907c table,
  .disabled_easy_bdfa table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .top_b6e8 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .static-bec2 {
    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;
  }

  .dirty-f542 {
    font-size: 1.25rem !important;
  }

  .frame-static-74f7 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .active-c9ec {
    position: fixed;
  }

  .focus-5dab {
    padding: 0.625rem 0;
  }

  .logo_east_74ea img {
    height: 26px;
  }

  .hard_59fa {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .content_1334 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .backdrop_478b {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .backdrop_478b svg {
    width: 18px;
    height: 18px;
  }

  .backdrop_478b .container_static_53ea {
    font-size: 0.7rem;
  }

  .backdrop_478b .wide_aaa0 {
    font-size: 0.65rem;
  }

  .panel_6f57,
  .icon-5d40 {
    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, .static-bec2, .text_0f39, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .modal-fd69 {
    padding: 1rem;
  }

  .background_b73d {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .avatar_314d {
    padding: 0.875rem;
  }

  .highlight_copper_06c4 {
    font-size: 1.25rem;
  }

  .block_e35f .simple-e770 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .frame-static-74f7 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .simple-e770 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .list-796c {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .column_6dad {
    padding: 1rem;
  }

  .title-large-745c span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .article-e48c,
  .image-8273,
  .status_445e,
  .alert_silver_0072 {
    padding: 1rem;
  }
}

@media print {
  .active-c9ec,
  .accent_iron_1fef,
  .focus_e421,
  .simple-e770,
  .box_d288 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .static-bec2 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.new_fecf {
  margin-bottom: 3rem;
  text-align: center;
}

.dirty-f542 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.avatar_c51d {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.list-rough-e87c,
.description-732d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.accordion_yellow_ed0b {
  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;
}

.accordion_yellow_ed0b:hover {
  transform: translateY(-5px);
}

.accordion_yellow_ed0b strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.accordion_yellow_ed0b span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.background-south-8020 {
  margin: 3rem 0;
}

.surface-2d29 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card_96f2 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.card_96f2:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.grid-5231 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.grid_upper_e0ff {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.active-1a69 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.section-8ce6 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.simple-1d92 {
  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;
}

.simple-1d92:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.simple-1d92.light-c959 {
  border-left: 4px solid var(--primary-color);
}

.dropdown_4706 {
  flex-shrink: 0;
}

.dropdown_4706 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.carousel-33fc {
  flex: 1;
}

.carousel-33fc h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.text-b5f5 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.brown_fd0c,
.menu-dc9a,
.summary-light-a92d {
  margin-bottom: 1.5rem;
}

.brown_fd0c h4,
.menu-dc9a h4,
.summary-light-a92d h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brown_fd0c ul,
.menu-dc9a ul,
.summary-light-a92d ul {
  list-style: none;
  padding: 0;
}

.brown_fd0c li,
.menu-dc9a li,
.summary-light-a92d li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.brown_fd0c li:before,
.menu-dc9a li:before,
.summary-light-a92d li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.smooth-11b8 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.smooth-11b8 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;
}

.smooth-11b8 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.badge_f201 { margin: 2rem 0; }
.texture-white-f2b1 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.texture-white-f2b1 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.background_024c p { margin-bottom: 1rem; line-height: 1.7; }
.background_024c strong { color: var(--text-primary); }
.background_024c ul { list-style: none; padding-left: 0; }
.background_024c ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.background_024c ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.silver-860f { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.liquid-c594 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.liquid-c594:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.banner_fluid_a58a { font-size: 3rem; margin-bottom: 1rem; }
.liquid-c594 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.liquid-c594 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.last-73b3 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.last-73b3 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.article-wood-4cf0 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.menu_904f { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.photo-pressed-e303 { text-align: center; }
.steel_4075 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.bottom_1a98 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.status_blue_e64c { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.list_9eed { margin: 2rem 0; }
.text_clean_60fa { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.text_clean_60fa h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.text_clean_60fa p, .text_clean_60fa ul { line-height: 1.7; }
.text_clean_60fa ul { list-style: none; padding-left: 0; }
.text_clean_60fa ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.text_clean_60fa ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.mask-081a { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.row_silver_4a65 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.in_5dfe { text-align: center; }
.iron_5915 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.info-brown-e28e { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.module_4a42 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.pro-5663 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.yellow-4fde { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.yellow-4fde:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.yellow-4fde h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.yellow-4fde p, .yellow-4fde ul { line-height: 1.7; }
.yellow-4fde ul { list-style: none; padding-left: 0; }
.yellow-4fde ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.yellow-4fde ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 751c */
.widget-item-l6 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.3;
}
