/* ============================================
   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 */
.in-d673 p,
.tabs_gold_efc9,
.filter_smooth_4e9a,
.prev-d727,
.old-ef89,
.focused-98d2,
.text_cf22,
.motion_77be {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.aside-9820 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.aside-9820 > *,
.backdrop-silver-affd,
.in-d673,
.menu_8f91 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .aside-9820 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .aside-9820 {
    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 === */
.badge-bronze-8c31 {
  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 */
.badge-bronze-8c31.message_45df {
  box-shadow: var(--shadow-md);
}

.description_1d05 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.outline_light_a877 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.simple_33a5 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.button-b64c {
  display: none;
}

/* Hide mobile actions on desktop */
.primary-46fa {
  display: none;
}

.accordion-next-66e9 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.accordion-next-66e9 a:hover,
.accordion-next-66e9 a.fn-active-b0bb {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.row-966d {
  margin-left: 1rem;
}

.outer-03cc {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.red_0315,
.tertiary-ef16 {
  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;
}

.red_0315 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.red_0315: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;
}

.tertiary-ef16 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.tertiary-ef16: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;
}

.red_0315 svg,
.tertiary-ef16 svg {
  flex-shrink: 0;
}

.carousel_left_115c {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.shade-last-c297 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.shade-last-c297::before,
.shade-last-c297::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.shade-last-c297::before {
  top: -7px;
}

.shade-last-c297::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.pagination-hard-3b43 {
  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 === */
.content-dfc6 {
  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);
}

.plasma-78cf {
  margin: 0 0 2rem;
  text-align: center;
}

.status-b243 {
  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;
}

.status-b243:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.photo-center-84fe {
  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);
}

.photo-center-84fe strong {
  color: var(--primary-color);
  font-weight: 700;
}

.heading-gas-2bde {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.slider-42d4 {
  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;
}

.slider-42d4:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.article_last_6560 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.image_hot_a745 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.gradient_active_4ca8 {
  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);
}

.gradient_active_4ca8 .cold_8429 {
  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;
}

.gradient_active_4ca8 .cold_8429 svg {
  flex-shrink: 0;
}

.gradient_active_4ca8 .surface_warm_9482 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.gradient_active_4ca8 .surface_warm_9482: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);
}

.gradient_active_4ca8 .sort-a739 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.gradient_active_4ca8 .sort-a739: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) {
  .content-dfc6 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .status-b243 {
    max-width: 100%;
  }

  .heading-gas-2bde {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .slider-42d4 {
    padding: 1rem;
  }

  .article_last_6560 {
    font-size: 1.5rem;
  }

  .image_hot_a745 {
    font-size: 0.75rem;
  }

  .photo-center-84fe {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .gradient_active_4ca8 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .gradient_active_4ca8 .cold_8429 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .heading-gas-2bde {
    grid-template-columns: 1fr;
  }
}

.west_8bb4 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.info_hot_8048 {
  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 === */
.stale_0962 {
  margin-bottom: 2.5rem;
}

.secondary-9046 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.west_8bb4 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.cold_71f4 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fresh_1ee1 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.hero_adbc {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.card_silver_4f9d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.summary_full_51d7 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.feature_new_110e {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hover-808f {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hover-808f svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.glass_abdb {
  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);
}

.icon_paper_e15a {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.input_43c6 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.surface_53c5 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.white_34a8 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.tertiary-9bc7 {
  display: grid;
  gap: 1rem;
}

.gold_3dad {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.focus-812e {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.grid-motion-ddf7 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.popup_out_f39b {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.grid_8244 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.frame_45ac {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.frame_45ac p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.tabs_gold_efc9 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.image-67b3 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.detail-b943 {
  display: grid;
  gap: 2rem;
}

.progress-center-fa39 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.fresh_1ee1 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.cold_71f4 {
  flex: 1;
}

.card_silver_4f9d {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.card_silver_4f9d a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.outer_368f {
  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;
}

.summary_full_51d7 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.gradient_692f {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.gradient_692f span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.smooth_376c {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.smooth_376c a {
  font-size: 0.875rem;
  font-weight: 500;
}

.filter_upper_4b4c {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.filter_upper_4b4c strong {
  display: block;
  margin-bottom: 0.75rem;
}

.filter_upper_4b4c ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter_upper_4b4c li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.icon_d027 {
  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 === */
.texture-15b1 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.gradient-tall-64ab {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.filter_top_1573 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.picture-tiny-51d9 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.picture-tiny-51d9 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.picture-tiny-51d9 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.picture-tiny-51d9 ol li a {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.picture-tiny-51d9 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.picture-tiny-51d9 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.in-d673 {
  padding: 3rem 0 5rem;
}

.menu_8f91 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.menu_8f91.image-steel-25a6 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.filter_smooth_4e9a {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.focused-3663 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.heading_dynamic_73e3 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.heading_dynamic_73e3 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.outline-6eae {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.slow-e182 {
  text-align: center;
}

.progress_hard_1b81 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.article_65a0 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.container-center-a7ac {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.focused-98d2 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.prev-d727 {
  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;
}

.prev-d727 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.prev-d727:hover {
  box-shadow: var(--shadow-lg);
}

.prev-d727.hidden-6cf1 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.prev-d727 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.prev-d727 ul {
  margin: 1rem 0;
}

.prev-d727 li {
  margin-bottom: 0.75rem;
}

.frame_1e4b {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.west-e9fc {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.west-e9fc a {
  font-weight: 600;
}

/* === Data Tables === */
.down-cfc9 {
  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;
}

.down-cfc9 table {
  width: 100%;
  min-width: 600px;
}

.down-cfc9 thead {
  background-color: var(--primary-color);
  color: white;
}

.down-cfc9 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.down-cfc9 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.down-cfc9 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.down-cfc9 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.shadow-down-9d15 {
  list-style: none;
  margin: 1.5rem 0;
}

.shadow-down-9d15 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.shadow-down-9d15 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.static-251c::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-b0bb::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 === */
.gallery_993a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.hero-steel-e4e9 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-steel-e4e9 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.hero-steel-e4e9 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.hero-steel-e4e9 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.gallery_993a blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.text_cf22 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.text_cf22::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.secondary_pro_b608 {
  position: relative;
  margin-bottom: 3rem;
}

.prev-e444 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.prev-e444 .fixed_040a {
  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;
}

.table-old-8b9b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.table-old-8b9b h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.table-old-8b9b ul {
  margin: 1rem 0;
}

.table-old-8b9b li {
  margin-bottom: 0.75rem;
}

.modal-basic-2f82 {
  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 === */
.list-silver-a179 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.list-silver-a179 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.feature_rough_5431 {
  list-style: none;
  margin: 1.5rem 0;
}

.feature_rough_5431 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.feature_rough_5431 a {
  font-weight: 600;
}

.tertiary_052b {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.motion_77be {
  margin: 2.5rem 0;
}

.new_04e9 {
  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;
}

.new_04e9:hover {
  box-shadow: var(--shadow-lg);
}

.new_04e9.alert_2486 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.content_b46d {
  flex-shrink: 0;
}

.content_b46d 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);
}

.search_9c91 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.article-small-f004,
.photo-9242,
.module_6a1e {
  width: 100%;
  margin: 1.5rem 0;
}

.solid-bf20 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.solid-bf20 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.light_08d3 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.light_08d3 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.green-6683 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.green-6683 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.caption_dark_f1c1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.hidden-hovered-a9a1 {
  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;
}

.hidden-hovered-a9a1:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.hidden-hovered-a9a1.active-83c9 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.hidden-hovered-a9a1 .pro-5cc6 {
  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;
}

.hidden-hovered-a9a1 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.logo_hard_cf07 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.copper-ddc5 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.copper-ddc5 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.aside-hard-bf6a {
  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 === */
.cold_8429 {
  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;
}

.surface_warm_9482 {
  background-color: var(--primary-color);
  color: white;
}

.surface_warm_9482:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.sort-a739 {
  background-color: var(--text-secondary);
  color: white;
}

.sort-a739:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.huge_5031 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.huge_5031:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.disabled_a7d8 {
  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;
}

.disabled_a7d8:hover {
  background-color: var(--primary-dark);
}

.dim-1421 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.bronze_e328 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.mini-f501 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.shade_97e5 {
  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 === */
.accent-0609 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.border_e045 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.border_e045 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.disabled-067b {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.down-e6b9 {
  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;
}

.chip-abd7 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.content-c482 {
  list-style: none;
  counter-reset: rank-counter;
}

.content-c482 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.content-c482 li::before {
  content: counter(rank-counter);
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
}

.image_757d {
  list-style: none;
}

.image_757d li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.nav_2b91 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.link_narrow_25c5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.link_narrow_25c5 .menu_b5d9 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.link_narrow_25c5 .gallery-iron-2990 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.middle_ef6e {
  margin-top: 3rem;
}

.logo-liquid-04c4 {
  width: 100%;
}

.card_slow_2011 {
  background-color: #fef3c7;
}

.primary-2ee4 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.rough_50e4 {
  margin: 3rem 0;
}

.heading_tall_e45d {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.section_5444 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.section_5444:hover {
  box-shadow: var(--shadow-lg);
}

.section_5444.current-8df2 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.current_3a9d {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.fixed_bab4 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.fixed_bab4 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pink-4e42 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.section_5444 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.white-f892 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.primary-6efe {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.active_large_897d {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.upper-9742 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.tertiary-b42c {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.huge-e697 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.menu_right_5134 {
  max-width: 900px;
  margin: 0 auto;
}

.bronze_7aa1 {
  margin: 2rem 0;
}

.paragraph_00ff {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.paragraph_00ff summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.paragraph_00ff summary::-webkit-details-marker {
  display: none;
}

.paragraph_00ff summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.main-dfa5 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.paragraph_00ff[open] .main-dfa5 {
  transform: rotate(45deg);
}

.widget_016f {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.widget_016f p:last-child {
  margin-bottom: 0;
}

.paragraph-a30b {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.popup-17f0 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.hover_stale_369b {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.hover_stale_369b p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.hover_stale_369b .cold_8429 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.stone_954f {
  max-width: 900px;
  margin: 0 auto;
}

.thumbnail_929f {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.secondary-paper-1ed5 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.secondary-paper-1ed5.fn-success-b0bb {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.over-a42b {
  font-size: 3rem;
  line-height: 1;
}

.filter-fixed-76a7 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.sidebar_first_928a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.caption-00f5,
.summary_stone_c9ec {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.caption-00f5 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.summary_stone_c9ec h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.short_fdd3,
.chip_pressed_5127 {
  margin: 1.5rem 0;
}

.short_fdd3 li,
.chip_pressed_5127 li {
  margin-bottom: 1rem;
}

.message_over_c83e {
  margin: 3rem 0;
}

.message-static-0177 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.message-static-0177 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.message-static-0177 ol {
  margin: 1rem 0;
}

.message-static-0177 li {
  margin-bottom: 0.75rem;
}

.icon_dd5e {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.black_acc2 {
  margin: 2rem 0;
}

.wrapper_yellow_292b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.icon-soft-e8e9 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.description_8631 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.over-1788 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.box_light_c0d9 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.advanced-fdf6 {
  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;
}

.advanced-fdf6 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.hero_adbc {
  flex: 1;
}

.hero_adbc h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.info_slow_dad8 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.wide-af02 p {
  margin-bottom: 1rem;
}

.outer-f104 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.shade-liquid-3722 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.photo-bottom-465e {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.photo-bottom-465e a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.column-3547 h3 {
  margin-bottom: 1.5rem;
}

.easy_3930 {
  display: grid;
  gap: 2rem;
}

.status_daee {
  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;
}

.status_daee img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.status_daee h4 {
  margin: 0 0 0.25rem;
}

.status_daee p {
  margin: 0;
  font-size: 0.9375rem;
}

.accent-8c56 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.message-prev-2807 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.message-prev-2807 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.message-prev-2807 ul {
  margin: 1.5rem 0;
}

.message-prev-2807 li {
  margin-bottom: 0.75rem;
}

.surface-bronze-b0e4 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.notification-outer-4a08 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.thumbnail_266e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.banner_5576 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.banner_5576 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.footer_complex_c476 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.footer_complex_c476 a {
  color: rgba(255, 255, 255, 0.8);
}

.container_bbf6 {
  list-style: none;
}

.container_bbf6 li {
  margin-bottom: 0.75rem;
}

.container_bbf6 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.container_bbf6 a:hover {
  color: white;
}

.alert_blue_3976 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.red-a722 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.widget_2568 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.description_narrow_c757 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.alert-b7ce {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .aside-9820 {
    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;
  }

  .accordion-c4a9 {
    font-size: 1.5rem !important;
  }

  .secondary-9046 {
    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 */
  .prev-d727,
  .old-ef89,
  .table-old-8b9b,
  .search_9c91,
  .current_3a9d,
  .section_5444,
  .widget_016f,
  .photo-center-84fe,
  .tabs_gold_efc9,
  .filter_smooth_4e9a {
    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 */
  .west_8bb4 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cold_71f4 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .fresh_1ee1 {
    flex-shrink: 0;
  }

  .hero_adbc {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .card_silver_4f9d,
  .summary_full_51d7 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .summary_full_51d7 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .simple_33a5 {
    display: none;
  }

  /* Show mobile actions */
  .primary-46fa {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .gold-3fed {
    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;
  }

  .gold-3fed svg {
    flex-shrink: 0;
  }

  .gold-3fed .focus-active-b9c0 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .gold-3fed .slider-selected-79c6 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .dropdown_e547 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .form_left_78ce {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .gold-3fed:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .button-b64c {
    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;
  }

  .button-b64c.fn-active-b0bb {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .button-b64c li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .button-b64c li:last-child {
    border-bottom: none;
  }

  .button-b64c a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .accordion-next-66e9 {
    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;
  }

  .accordion-next-66e9 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .accordion-next-66e9 li:last-child {
    border-bottom: none;
  }

  .accordion-next-66e9 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .row-966d {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .outer-03cc {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .red_0315,
  .tertiary-ef16 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .red_0315 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .tertiary-ef16 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .accordion-next-66e9.fn-active-b0bb {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .carousel_left_115c {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .badge-bronze-8c31 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .description_1d05 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .pagination-hard-3b43 {
    margin-top: 0;
  }

  /* Hero section */
  .pagination-hard-3b43 {
    padding: 2rem 0 1.5rem;
  }

  .secondary-9046 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .tabs_gold_efc9 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .content-dfc6 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .status-b243 {
    max-width: 100%;
    border-radius: 8px;
  }

  .heading-gas-2bde {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .slider-42d4 {
    padding: 1rem;
  }

  .article_last_6560 {
    font-size: 1.5rem;
  }

  .image_hot_a745 {
    font-size: 0.75rem;
  }

  .photo-center-84fe {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .gradient_active_4ca8 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .gradient_active_4ca8 .cold_8429 {
    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 */
  .filter_top_1573 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .new_04e9 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .content_b46d {
    margin-bottom: 1rem;
  }

  /* Author */
  .progress-center-fa39 {
    flex-direction: column;
  }

  .advanced-fdf6 {
    flex-direction: column;
  }

  /* Quotes */
  .current_3a9d {
    flex-direction: column;
  }

  /* Pros/Cons */
  .sidebar_first_928a {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .over-1788 {
    flex-direction: column;
  }

  .over-1788 .cold_8429 {
    width: 100%;
  }

  /* Version comparison */
  .caption_dark_f1c1 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .accent-0609 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .thumbnail_266e {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .widget_2568 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .down-cfc9,
  .photo-9242,
  .wrapper_active_f1f3,
  .logo-liquid-04c4,
  .article-small-f004,
  .module_6a1e {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .down-cfc9 table,
  .photo-9242 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .aside-hard-bf6a {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .aside-9820 {
    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;
  }

  .accordion-c4a9 {
    font-size: 1.25rem !important;
  }

  .secondary-9046 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .badge-bronze-8c31 {
    position: fixed;
  }

  .description_1d05 {
    padding: 0.625rem 0;
  }

  .outline_light_a877 img {
    height: 26px;
  }

  .accordion-next-66e9 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .button-b64c {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .gold-3fed {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .gold-3fed svg {
    width: 18px;
    height: 18px;
  }

  .gold-3fed .focus-active-b9c0 {
    font-size: 0.7rem;
  }

  .gold-3fed .slider-selected-79c6 {
    font-size: 0.65rem;
  }

  .red_0315,
  .tertiary-ef16 {
    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, .aside-9820, .backdrop-silver-affd, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .content-dfc6 {
    padding: 1rem;
  }

  .heading-gas-2bde {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .slider-42d4 {
    padding: 0.875rem;
  }

  .article_last_6560 {
    font-size: 1.25rem;
  }

  .gradient_active_4ca8 .cold_8429 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .secondary-9046 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .cold_8429 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .dim-1421 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .new_04e9 {
    padding: 1rem;
  }

  .content_b46d span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .prev-d727,
  .avatar-b548,
  .list-2680,
  .wide_1e04 {
    padding: 1rem;
  }
}

@media print {
  .badge-bronze-8c31,
  .texture-15b1,
  .carousel_left_115c,
  .cold_8429,
  .notification-outer-4a08 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .aside-9820 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.blue_584b {
  margin-bottom: 3rem;
  text-align: center;
}

.accordion-c4a9 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.progress-c08d {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.filter-2bdf,
.thumbnail_prev_9def {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.tooltip-wide-194e {
  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;
}

.tooltip-wide-194e:hover {
  transform: translateY(-5px);
}

.tooltip-wide-194e strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.tooltip-wide-194e span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.inner-98d1 {
  margin: 3rem 0;
}

.large_4f33 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.focused-59aa {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.focused-59aa:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.aside-f9aa {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pattern_rough_55e1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.fast_a6f9 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.block_ff9a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.border_5b44 {
  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;
}

.border_5b44:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.border_5b44.menu_lower_b74b {
  border-left: 4px solid var(--primary-color);
}

.form_pro_8be4 {
  flex-shrink: 0;
}

.form_pro_8be4 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.feature_fixed_68af {
  flex: 1;
}

.feature_fixed_68af h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.primary-e7d6 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.box_purple_e7b2,
.banner_74db,
.alert_complex_287d {
  margin-bottom: 1.5rem;
}

.box_purple_e7b2 h4,
.banner_74db h4,
.alert_complex_287d h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.box_purple_e7b2 ul,
.banner_74db ul,
.alert_complex_287d ul {
  list-style: none;
  padding: 0;
}

.box_purple_e7b2 li,
.banner_74db li,
.alert_complex_287d li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.box_purple_e7b2 li:before,
.banner_74db li:before,
.alert_complex_287d li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.border-6be5 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.border-6be5 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;
}

.border-6be5 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.sidebar_591e { margin: 2rem 0; }
.selected-bab3 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.selected-bab3 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.media-5f3c p { margin-bottom: 1rem; line-height: 1.7; }
.media-5f3c strong { color: var(--text-primary); }
.media-5f3c ul { list-style: none; padding-left: 0; }
.media-5f3c ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.media-5f3c ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.hero_e7d3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.mini_eefe { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.mini_eefe:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.slow-f523 { font-size: 3rem; margin-bottom: 1rem; }
.mini_eefe h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.mini_eefe p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.outer-a54c { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.outer-a54c span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.border-gold-2a28 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.banner_13c8 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.title_688e { text-align: center; }
.input-8679 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.search_81b5 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.grid-5549 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.slow_1ca6 { margin: 2rem 0; }
.action-948f { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.action-948f h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.action-948f p, .action-948f ul { line-height: 1.7; }
.action-948f ul { list-style: none; padding-left: 0; }
.action-948f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.action-948f ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.hovered-fb00 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.hidden-a256 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.backdrop-warm-5698 { text-align: center; }
.narrow_8a7f { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.hard-118a { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.clean_9945 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.iron-edb9 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.rough_9f49 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.rough_9f49:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.rough_9f49 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.rough_9f49 p, .rough_9f49 ul { line-height: 1.7; }
.rough_9f49 ul { list-style: none; padding-left: 0; }
.rough_9f49 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.rough_9f49 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: be49 */
.phantom-card-o2 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.3;
}
