/* ============================================
   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 */
.avatar-hovered-5f80 p,
.huge-2352,
.focused-af06,
.disabled-3132,
.out_a5c0,
.label-f989,
.glass-55ad,
.full-b073 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.hard-2785 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.hard-2785 > *,
.prev_de91,
.avatar-hovered-5f80,
.up-7e25 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .hard-2785 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .hard-2785 {
    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 === */
.banner_0b93 {
  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 */
.banner_0b93.dim-afe6 {
  box-shadow: var(--shadow-md);
}

.static-82b4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.icon-up-afd5 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.lite_bc4f {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.texture-f673 {
  display: none;
}

/* Hide mobile actions on desktop */
.pagination_6021 {
  display: none;
}

.search-large-ac0e a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.search-large-ac0e a:hover,
.search-large-ac0e a.fn-active-419c {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.slider_96f0 {
  margin-left: 1rem;
}

.accent-pink-0c00 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.notification-prev-7cf8,
.stone_911c {
  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;
}

.notification-prev-7cf8 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.notification-prev-7cf8: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;
}

.stone_911c {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.stone_911c: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;
}

.notification-prev-7cf8 svg,
.stone_911c svg {
  flex-shrink: 0;
}

.highlight_c766 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-0197 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.nav-0197::before,
.nav-0197::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.nav-0197::before {
  top: -7px;
}

.nav-0197::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.dropdown_medium_7184 {
  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 === */
.container_e5b0 {
  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);
}

.sidebar-631f {
  margin: 0 0 2rem;
  text-align: center;
}

.pink-a5e5 {
  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;
}

.pink-a5e5:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.widget-red-996b {
  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);
}

.widget-red-996b strong {
  color: var(--primary-color);
  font-weight: 700;
}

.panel_8e69 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.article-aeab {
  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;
}

.article-aeab:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.element-d416 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.brown_cef1 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.hero_7551 {
  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);
}

.hero_7551 .full_8118 {
  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;
}

.hero_7551 .full_8118 svg {
  flex-shrink: 0;
}

.hero_7551 .dirty_04f5 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.hero_7551 .dirty_04f5: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);
}

.hero_7551 .current-8817 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.hero_7551 .current-8817: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) {
  .container_e5b0 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .pink-a5e5 {
    max-width: 100%;
  }

  .panel_8e69 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .article-aeab {
    padding: 1rem;
  }

  .element-d416 {
    font-size: 1.5rem;
  }

  .brown_cef1 {
    font-size: 0.75rem;
  }

  .widget-red-996b {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .hero_7551 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .hero_7551 .full_8118 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .panel_8e69 {
    grid-template-columns: 1fr;
  }
}

.red-80ef {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.item-4e19 {
  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 === */
.image-fast-da69 {
  margin-bottom: 2.5rem;
}

.aside-fixed-305e {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.red-80ef {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.article_south_a01b {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.thick-276d {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.focused_dc50 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.focused_4e82 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.gallery_cf06 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.cold-7d91 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer_1c1d {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer_1c1d svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.hover_liquid_b884 {
  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);
}

.feature_5ca2 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.video_west_8625 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.sort-dirty-866a {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.logo_copper_c5d9 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.accordion-ef51 {
  display: grid;
  gap: 1rem;
}

.header-fluid-3bcd {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.advanced-3b6f {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.red_9f68 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.advanced-4267 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.item_a3d5 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.item-b9d1 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.item-b9d1 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.huge-2352 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.copper-c09d {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.column_stone_38d2 {
  display: grid;
  gap: 2rem;
}

.link_iron_c7de {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.thick-276d {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.article_south_a01b {
  flex: 1;
}

.focused_4e82 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.focused_4e82 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.input_ee54 {
  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;
}

.gallery_cf06 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.modal-690c {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.modal-690c span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.active-87d1 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.active-87d1 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.smooth-6699 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.smooth-6699 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.smooth-6699 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.smooth-6699 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.preview_white_b5c6 {
  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 === */
.content_a7e0 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.avatar-cfdb {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.image_tiny_d086 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.under_ba6e h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.under_ba6e ol {
  list-style: none;
  counter-reset: toc-counter;
}

.under_ba6e ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.under_ba6e 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;
}

.under_ba6e ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.under_ba6e ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.avatar-hovered-5f80 {
  padding: 3rem 0 5rem;
}

.up-7e25 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.up-7e25.icon-inner-9767 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.focused-af06 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.preview_59fc {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.gradient_north_82e8 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.gradient_north_82e8 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.overlay-steel-29dc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.article_white_9e1b {
  text-align: center;
}

.first-4a87 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.large_e2ef {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.description-4f5c {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.label-f989 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.disabled-3132 {
  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;
}

.disabled-3132 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disabled-3132:hover {
  box-shadow: var(--shadow-lg);
}

.disabled-3132.light-567a {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.disabled-3132 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.disabled-3132 ul {
  margin: 1rem 0;
}

.disabled-3132 li {
  margin-bottom: 0.75rem;
}

.title_lite_6ad3 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.accordion_black_2b80 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.accordion_black_2b80 a {
  font-weight: 600;
}

/* === Data Tables === */
.label_dim_ef52 {
  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;
}

.label_dim_ef52 table {
  width: 100%;
  min-width: 600px;
}

.label_dim_ef52 thead {
  background-color: var(--primary-color);
  color: white;
}

.label_dim_ef52 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.label_dim_ef52 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.label_dim_ef52 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.label_dim_ef52 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.bronze_8056 {
  list-style: none;
  margin: 1.5rem 0;
}

.bronze_8056 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.bronze_8056 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.huge_fe93::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-419c::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 === */
.module_last_e159 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.south_f0d4 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.south_f0d4 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.south_f0d4 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.south_f0d4 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.module_last_e159 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.glass-55ad {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.glass-55ad::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.detail_b277 {
  position: relative;
  margin-bottom: 3rem;
}

.message_fb88 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.message_fb88 .component_0989 {
  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;
}

.up-7faa {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.up-7faa h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.up-7faa ul {
  margin: 1rem 0;
}

.up-7faa li {
  margin-bottom: 0.75rem;
}

.input_plasma_8476 {
  display: inline-block;
  background-color: #dbeafe;
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* === Transparency Box === */
.black-70db {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.black-70db h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.chip_16d8 {
  list-style: none;
  margin: 1.5rem 0;
}

.chip_16d8 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.chip_16d8 a {
  font-weight: 600;
}

.next_4934 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.full-b073 {
  margin: 2.5rem 0;
}

.tag-fresh-b331 {
  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;
}

.tag-fresh-b331:hover {
  box-shadow: var(--shadow-lg);
}

.tag-fresh-b331.alert_solid_4cfe {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.element-dim-54a6 {
  flex-shrink: 0;
}

.element-dim-54a6 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);
}

.overlay_full_cef1 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.main_motion_582b,
.table_dirty_9404,
.dark-043a {
  width: 100%;
  margin: 1.5rem 0;
}

.list_west_d142 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.list_west_d142 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.media_prev_bb59 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.media_prev_bb59 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.tiny-c84c {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.tiny-c84c strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.modal-red-40bc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.accordion_outer_7ce1 {
  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;
}

.accordion_outer_7ce1:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.accordion_outer_7ce1.accordion-4aa7 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.accordion_outer_7ce1 .border-d644 {
  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;
}

.accordion_outer_7ce1 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.hover_7043 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.footer-tiny-e02e {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.footer-tiny-e02e label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.feature-f522 {
  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 === */
.full_8118 {
  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;
}

.dirty_04f5 {
  background-color: var(--primary-color);
  color: white;
}

.dirty_04f5:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.current-8817 {
  background-color: var(--text-secondary);
  color: white;
}

.current-8817:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.footer-0eb6 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.footer-0eb6:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.west-f330 {
  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;
}

.west-f330:hover {
  background-color: var(--primary-dark);
}

.breadcrumb-9d9d {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.media-rough-cd57 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.description_old_3a1e {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.sidebar_pressed_77ea {
  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 === */
.link-north-f0af {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.search-8ee7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.search-8ee7 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.status-clean-8e20 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.accordion_80b3 {
  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;
}

.primary_a3f2 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.action_ca2d {
  list-style: none;
  counter-reset: rank-counter;
}

.action_ca2d li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.action_ca2d 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;
}

.nav-tall-c223 {
  list-style: none;
}

.nav-tall-c223 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.active-1ce4 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.form-solid-081d {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.form-solid-081d .texture_99db {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.form-solid-081d .paragraph_pressed_1a1f {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.upper_1be4 {
  margin-top: 3rem;
}

.under_8d05 {
  width: 100%;
}

.pattern_b59e {
  background-color: #fef3c7;
}

.preview-19f5 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.pressed_10c1 {
  margin: 3rem 0;
}

.easy-7fda {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.surface_dark_f60c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.surface_dark_f60c:hover {
  box-shadow: var(--shadow-lg);
}

.surface_dark_f60c.west-6351 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.badge_bc10 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.down-4b82 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.down-4b82 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero_short_270b {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.surface_dark_f60c blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.tag_focused_f634 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.active-d1ad {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.column_hard_a632 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.mask-outer-2930 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.footer_hovered_7294 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.logo-f0d2 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.grid_active_3963 {
  max-width: 900px;
  margin: 0 auto;
}

.logo_soft_a0e2 {
  margin: 2rem 0;
}

.message-lower-dee2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.message-lower-dee2 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.message-lower-dee2 summary::-webkit-details-marker {
  display: none;
}

.message-lower-dee2 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.progress-217a {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.message-lower-dee2[open] .progress-217a {
  transform: rotate(45deg);
}

.gradient_dynamic_5ae4 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.gradient_dynamic_5ae4 p:last-child {
  margin-bottom: 0;
}

.module-dynamic-2ae0 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.thumbnail-white-8b6e {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.soft-4ded {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.soft-4ded p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.soft-4ded .full_8118 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.label-tall-f21f {
  max-width: 900px;
  margin: 0 auto;
}

.hot-cdfc {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.shadow_7ced {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.shadow_7ced.fn-success-419c {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.east_4738 {
  font-size: 3rem;
  line-height: 1;
}

.simple-4e6f h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.fixed-29d6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.down-c0dd,
.gold-3e8d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.down-c0dd h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.gold-3e8d h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.current-f444,
.video-narrow-ffe6 {
  margin: 1.5rem 0;
}

.current-f444 li,
.video-narrow-ffe6 li {
  margin-bottom: 1rem;
}

.photo_fresh_77a8 {
  margin: 3rem 0;
}

.card-tiny-aa69 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.card-tiny-aa69 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.card-tiny-aa69 ol {
  margin: 1rem 0;
}

.card-tiny-aa69 li {
  margin-bottom: 0.75rem;
}

.first_3231 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.old-14eb {
  margin: 2rem 0;
}

.primary-over-90cb {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.notification-4194 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.menu_hard_7ba6 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.bottom_ad75 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.status_cefe {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.widget_c184 {
  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;
}

.widget_c184 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.focused_dc50 {
  flex: 1;
}

.focused_dc50 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.feature_right_7140 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.basic_caef p {
  margin-bottom: 1rem;
}

.gas_c895 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.background-b8af {
  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_73b7 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.white_73b7 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.up-a987 h3 {
  margin-bottom: 1.5rem;
}

.solid_94f3 {
  display: grid;
  gap: 2rem;
}

.wide-5b8f {
  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;
}

.wide-5b8f img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.wide-5b8f h4 {
  margin: 0 0 0.25rem;
}

.wide-5b8f p {
  margin: 0;
  font-size: 0.9375rem;
}

.out_00c3 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.dropdown_5002 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.dropdown_5002 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.dropdown_5002 ul {
  margin: 1.5rem 0;
}

.dropdown_5002 li {
  margin-bottom: 0.75rem;
}

.hero_simple_0f11 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.row-west-ef58 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.block-green-fb6f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.small_445f h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.small_445f p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.lite-7beb {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.lite-7beb a {
  color: rgba(255, 255, 255, 0.8);
}

.logo-9cad {
  list-style: none;
}

.logo-9cad li {
  margin-bottom: 0.75rem;
}

.logo-9cad a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.logo-9cad a:hover {
  color: white;
}

.hover-right-3dd7 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.image_da35 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.chip-out-7f50 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.logo_e2cc {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.hero-7aa6 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .hard-2785 {
    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;
  }

  .in-d7c9 {
    font-size: 1.5rem !important;
  }

  .aside-fixed-305e {
    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 */
  .disabled-3132,
  .out_a5c0,
  .up-7faa,
  .overlay_full_cef1,
  .badge_bc10,
  .surface_dark_f60c,
  .gradient_dynamic_5ae4,
  .widget-red-996b,
  .huge-2352,
  .focused-af06 {
    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 */
  .red-80ef {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .article_south_a01b {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .thick-276d {
    flex-shrink: 0;
  }

  .focused_dc50 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .focused_4e82,
  .gallery_cf06 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .gallery_cf06 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .lite_bc4f {
    display: none;
  }

  /* Show mobile actions */
  .pagination_6021 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .icon_last_56d1 {
    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;
  }

  .icon_last_56d1 svg {
    flex-shrink: 0;
  }

  .icon_last_56d1 .thumbnail-left-e32d {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .icon_last_56d1 .large_8ccf {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .shadow_9712 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .up_ed63 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .icon_last_56d1:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .texture-f673 {
    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;
  }

  .texture-f673.fn-active-419c {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .texture-f673 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .texture-f673 li:last-child {
    border-bottom: none;
  }

  .texture-f673 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .search-large-ac0e {
    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;
  }

  .search-large-ac0e li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .search-large-ac0e li:last-child {
    border-bottom: none;
  }

  .search-large-ac0e a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .slider_96f0 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .accent-pink-0c00 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .notification-prev-7cf8,
  .stone_911c {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .notification-prev-7cf8 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .stone_911c {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .search-large-ac0e.fn-active-419c {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .highlight_c766 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .banner_0b93 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .static-82b4 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .dropdown_medium_7184 {
    margin-top: 0;
  }

  /* Hero section */
  .dropdown_medium_7184 {
    padding: 2rem 0 1.5rem;
  }

  .aside-fixed-305e {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .huge-2352 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .container_e5b0 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .pink-a5e5 {
    max-width: 100%;
    border-radius: 8px;
  }

  .panel_8e69 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .article-aeab {
    padding: 1rem;
  }

  .element-d416 {
    font-size: 1.5rem;
  }

  .brown_cef1 {
    font-size: 0.75rem;
  }

  .widget-red-996b {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .hero_7551 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .hero_7551 .full_8118 {
    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 */
  .image_tiny_d086 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .tag-fresh-b331 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .element-dim-54a6 {
    margin-bottom: 1rem;
  }

  /* Author */
  .link_iron_c7de {
    flex-direction: column;
  }

  .widget_c184 {
    flex-direction: column;
  }

  /* Quotes */
  .badge_bc10 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .fixed-29d6 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .bottom_ad75 {
    flex-direction: column;
  }

  .bottom_ad75 .full_8118 {
    width: 100%;
  }

  /* Version comparison */
  .modal-red-40bc {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .link-north-f0af {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .block-green-fb6f {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .chip-out-7f50 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .label_dim_ef52,
  .table_dirty_9404,
  .grid_clean_a4de,
  .under_8d05,
  .main_motion_582b,
  .dark-043a {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .label_dim_ef52 table,
  .table_dirty_9404 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .feature-f522 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hard-2785 {
    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;
  }

  .in-d7c9 {
    font-size: 1.25rem !important;
  }

  .aside-fixed-305e {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .banner_0b93 {
    position: fixed;
  }

  .static-82b4 {
    padding: 0.625rem 0;
  }

  .icon-up-afd5 img {
    height: 26px;
  }

  .search-large-ac0e {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .texture-f673 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .icon_last_56d1 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .icon_last_56d1 svg {
    width: 18px;
    height: 18px;
  }

  .icon_last_56d1 .thumbnail-left-e32d {
    font-size: 0.7rem;
  }

  .icon_last_56d1 .large_8ccf {
    font-size: 0.65rem;
  }

  .notification-prev-7cf8,
  .stone_911c {
    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, .hard-2785, .prev_de91, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .container_e5b0 {
    padding: 1rem;
  }

  .panel_8e69 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .article-aeab {
    padding: 0.875rem;
  }

  .element-d416 {
    font-size: 1.25rem;
  }

  .hero_7551 .full_8118 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .aside-fixed-305e {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .full_8118 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .breadcrumb-9d9d {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .tag-fresh-b331 {
    padding: 1rem;
  }

  .element-dim-54a6 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .disabled-3132,
  .grid_a270,
  .gradient-632b,
  .hard-2ac7 {
    padding: 1rem;
  }
}

@media print {
  .banner_0b93,
  .content_a7e0,
  .highlight_c766,
  .full_8118,
  .row-west-ef58 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .hard-2785 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.red_0580 {
  margin-bottom: 3rem;
  text-align: center;
}

.in-d7c9 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.tabs-tall-5133 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.light-23f5,
.shade-3f81 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.table-2cca {
  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;
}

.table-2cca:hover {
  transform: translateY(-5px);
}

.table-2cca strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.table-2cca span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.main-medium-5e65 {
  margin: 3rem 0;
}

.accordion-90b4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.paragraph-copper-5b48 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.paragraph-copper-5b48:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.avatar_under_c1a5 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.solid-a5c1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.info-upper-9c11 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.logo_4f94 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.hero-cool-9e77 {
  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;
}

.hero-cool-9e77:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.hero-cool-9e77.west-c07f {
  border-left: 4px solid var(--primary-color);
}

.widget_bd19 {
  flex-shrink: 0;
}

.widget_bd19 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.hard-8fab {
  flex: 1;
}

.hard-8fab h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.link_silver_fe8a {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.lower-252a,
.thumbnail-41f9,
.badge_rough_7ed0 {
  margin-bottom: 1.5rem;
}

.lower-252a h4,
.thumbnail-41f9 h4,
.badge_rough_7ed0 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lower-252a ul,
.thumbnail-41f9 ul,
.badge_rough_7ed0 ul {
  list-style: none;
  padding: 0;
}

.lower-252a li,
.thumbnail-41f9 li,
.badge_rough_7ed0 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.lower-252a li:before,
.thumbnail-41f9 li:before,
.badge_rough_7ed0 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.gold-92a9 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.gold-92a9 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;
}

.gold-92a9 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.active_over_d83b { margin: 2rem 0; }
.modal_up_04de { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.modal_up_04de h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.row_b882 p { margin-bottom: 1rem; line-height: 1.7; }
.row_b882 strong { color: var(--text-primary); }
.row_b882 ul { list-style: none; padding-left: 0; }
.row_b882 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.row_b882 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.button_blue_adb1 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.hero_546b { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.hero_546b:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.link-1be7 { font-size: 3rem; margin-bottom: 1rem; }
.hero_546b h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.hero_546b p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.badge_in_8c31 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.badge_in_8c31 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.hard-477f { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.container-tiny-1356 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.pressed-9db1 { text-align: center; }
.frame_tiny_ad5b { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.gradient_center_579f { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.shadow_ec78 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.brown-8502 { margin: 2rem 0; }
.title-5ac4 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.title-5ac4 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.title-5ac4 p, .title-5ac4 ul { line-height: 1.7; }
.title-5ac4 ul { list-style: none; padding-left: 0; }
.title-5ac4 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.title-5ac4 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.dynamic-4f85 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.text-74da { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.static_2ca7 { text-align: center; }
.highlight_static_f225 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.south-108f { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.sort_4beb { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.shadow-cd54 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.inner-778b { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.inner-778b:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.inner-778b h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.inner-778b p, .inner-778b ul { line-height: 1.7; }
.inner-778b ul { list-style: none; padding-left: 0; }
.inner-778b ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.inner-778b ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: cb52 */
.promo-block-n2 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.0;
}
