/* ============================================
   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 */
.section-pro-f07c p,
.pro-0b9e,
.fixed-a433,
.disabled-b2f1,
.dim_9d83,
.gallery-4e6c,
.badge_bdde,
.logo-right-814f {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.hovered_ef9c {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.hovered_ef9c > *,
.heading_tiny_7db2,
.section-pro-f07c,
.liquid-441d {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .hovered_ef9c {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .hovered_ef9c {
    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 === */
.modal_glass_93a4 {
  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 */
.modal_glass_93a4.light_d69d {
  box-shadow: var(--shadow-md);
}

.bottom_1acb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.over-d1fa img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.video-fixed-506d {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.media-9118 {
  display: none;
}

/* Hide mobile actions on desktop */
.link_a09e {
  display: none;
}

.badge_inner_bb3b a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.badge_inner_bb3b a:hover,
.badge_inner_bb3b a.fn-active-afea {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.widget-bf32 {
  margin-left: 1rem;
}

.black_89c0 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.avatar_4c6b,
.notification_e296 {
  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;
}

.avatar_4c6b {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.avatar_4c6b: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;
}

.notification_e296 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.notification_e296: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;
}

.avatar_4c6b svg,
.notification_e296 svg {
  flex-shrink: 0;
}

.section_1793 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.badge-cold-96f2 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.badge-cold-96f2::before,
.badge-cold-96f2::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.badge-cold-96f2::before {
  top: -7px;
}

.badge-cold-96f2::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.outline_selected_5b77 {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border-color);
}

/* === Hero Brand Image - First Screen / Above the Fold === */
.modal-full-08f5 {
  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);
}

.disabled_active_98c4 {
  margin: 0 0 2rem;
  text-align: center;
}

.popup-0fb1 {
  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;
}

.popup-0fb1:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.background-liquid-1462 {
  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);
}

.background-liquid-1462 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.caption-short-f59b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.menu_steel_76e7 {
  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;
}

.menu_steel_76e7:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.form-down-109c {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.background_copper_b4f3 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.heading_faf7 {
  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);
}

.heading_faf7 .modal-f1a7 {
  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;
}

.heading_faf7 .modal-f1a7 svg {
  flex-shrink: 0;
}

.heading_faf7 .form-basic-b31f {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.heading_faf7 .form-basic-b31f: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);
}

.heading_faf7 .complex-c40c {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.heading_faf7 .complex-c40c:hover {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.4);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Mobile optimization for hero brand */
@media (max-width: 768px) {
  .modal-full-08f5 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .popup-0fb1 {
    max-width: 100%;
  }

  .caption-short-f59b {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .menu_steel_76e7 {
    padding: 1rem;
  }

  .form-down-109c {
    font-size: 1.5rem;
  }

  .background_copper_b4f3 {
    font-size: 0.75rem;
  }

  .background-liquid-1462 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .heading_faf7 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .heading_faf7 .modal-f1a7 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .caption-short-f59b {
    grid-template-columns: 1fr;
  }
}

.aside-west-39b4 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.stone-d94c {
  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 === */
.slow-4073 {
  margin-bottom: 2.5rem;
}

.form_1409 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.aside-west-39b4 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.active-9032 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sort-brown-a71d {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.tag_solid_34d3 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.highlight_d5dc {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.article-liquid-5e61 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.article-easy-1a68 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.chip-inner-767d {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.chip-inner-767d svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.input-a36a {
  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);
}

.hovered-57cc {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.accordion_left_8f66 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section_hovered_1771 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.description_c00e {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.sort_copper_3b69 {
  display: grid;
  gap: 1rem;
}

.banner_26f6 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.cool-4c6f {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.narrow-8795 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.dim-ad77 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.mini_d6be {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.element-37ad {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.element-37ad p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.pro-0b9e {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.out-2367 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.top-8bc7 {
  display: grid;
  gap: 2rem;
}

.sidebar-8985 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.sort-brown-a71d {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.active-9032 {
  flex: 1;
}

.highlight_d5dc {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.highlight_d5dc a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.section_c1a5 {
  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;
}

.article-liquid-5e61 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.hot_d7cf {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.hot_d7cf span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.label_6343 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.label_6343 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.preview_341f {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.preview_341f strong {
  display: block;
  margin-bottom: 0.75rem;
}

.preview_341f ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.preview_341f li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.fluid_16ad {
  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 === */
.active-170b {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.notification_6096 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.hot-780c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.secondary-12f0 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.secondary-12f0 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.secondary-12f0 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.secondary-12f0 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;
}

.secondary-12f0 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.secondary-12f0 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.section-pro-f07c {
  padding: 3rem 0 5rem;
}

.liquid-441d {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.liquid-441d.tabs-8f09 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.fixed-a433 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.tag_ec72 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.grid_d1fa {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.grid_d1fa h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.form-out-0546 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.east_5c59 {
  text-align: center;
}

.button-focused-ea35 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.media_iron_800a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.lower_0cdb {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.gallery-4e6c {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.disabled-b2f1 {
  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-b2f1 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disabled-b2f1:hover {
  box-shadow: var(--shadow-lg);
}

.disabled-b2f1.secondary-0290 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.disabled-b2f1 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.disabled-b2f1 ul {
  margin: 1rem 0;
}

.disabled-b2f1 li {
  margin-bottom: 0.75rem;
}

.layout-8802 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.mini_0b75 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.mini_0b75 a {
  font-weight: 600;
}

/* === Data Tables === */
.modal-c227 {
  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;
}

.modal-c227 table {
  width: 100%;
  min-width: 600px;
}

.modal-c227 thead {
  background-color: var(--primary-color);
  color: white;
}

.modal-c227 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.modal-c227 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.modal-c227 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.modal-c227 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.tertiary-liquid-2260 {
  list-style: none;
  margin: 1.5rem 0;
}

.tertiary-liquid-2260 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.tertiary-liquid-2260 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.upper_5a7c::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-afea::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 === */
.huge_2d5c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.under_f99f {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.under_f99f img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.under_f99f strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.under_f99f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.huge_2d5c blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.badge_bdde {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.badge_bdde::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.paper-1b55 {
  position: relative;
  margin-bottom: 3rem;
}

.hero-west-7791 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.hero-west-7791 .surface_d509 {
  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;
}

.link-1dcf {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.link-1dcf h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.link-1dcf ul {
  margin: 1rem 0;
}

.link-1dcf li {
  margin-bottom: 0.75rem;
}

.list-3c88 {
  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 === */
.brown_d935 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.brown_d935 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.column-fixed-8156 {
  list-style: none;
  margin: 1.5rem 0;
}

.column-fixed-8156 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.column-fixed-8156 a {
  font-weight: 600;
}

.focus_north_dc3d {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.logo-right-814f {
  margin: 2.5rem 0;
}

.sort_green_3d09 {
  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;
}

.sort_green_3d09:hover {
  box-shadow: var(--shadow-lg);
}

.sort_green_3d09.summary_thick_d1b9 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.shadow_action_db84 {
  flex-shrink: 0;
}

.shadow_action_db84 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);
}

.background-dc0c h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.banner_old_229e,
.disabled_b19b,
.sort_lite_fbb0 {
  width: 100%;
  margin: 1.5rem 0;
}

.east_9530 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.east_9530 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.row-full-75c3 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.row-full-75c3 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.dropdown-93b5 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.dropdown-93b5 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.description_c160 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.avatar_short_af0d {
  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;
}

.avatar_short_af0d:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.avatar_short_af0d.first-943a {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.avatar_short_af0d .right_7b39 {
  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;
}

.avatar_short_af0d h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.photo_7e4a {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.section_basic_4c53 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.section_basic_4c53 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.wood-fa88 {
  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 === */
.modal-f1a7 {
  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;
}

.form-basic-b31f {
  background-color: var(--primary-color);
  color: white;
}

.form-basic-b31f:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.complex-c40c {
  background-color: var(--text-secondary);
  color: white;
}

.complex-c40c:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.notification_4199 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.notification_4199:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.gold_a578 {
  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;
}

.gold_a578:hover {
  background-color: var(--primary-dark);
}

.disabled_9ad5 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.liquid_74ee {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.feature-c75e {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.container_fast_7ea1 {
  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 === */
.heading_a7a3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.feature_37fe {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.feature_37fe h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.tiny-e089 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.summary-purple-24c3 {
  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;
}

.banner-bronze-bab7 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.medium-3348 {
  list-style: none;
  counter-reset: rank-counter;
}

.medium-3348 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.medium-3348 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;
}

.motion_e552 {
  list-style: none;
}

.motion_e552 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.glass_16d0 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.pattern-light-e4db {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.pattern-light-e4db .down-af65 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.pattern-light-e4db .badge_down_363d {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.tiny_6890 {
  margin-top: 3rem;
}

.link-ca17 {
  width: 100%;
}

.steel-e5a3 {
  background-color: #fef3c7;
}

.carousel_3b2a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.status-down-ea7a {
  margin: 3rem 0;
}

.grid-fast-81ad {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.middle_2d3f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.middle_2d3f:hover {
  box-shadow: var(--shadow-lg);
}

.middle_2d3f.modal_2613 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.out-1dae {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.thick-7f7a strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.thick-7f7a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.picture_rough_8e10 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.middle_2d3f blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.text-d2d1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.static-956a {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.narrow-3f19 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.hero_pressed_edd5 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.badge-eca0 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.border-e7dd {
  margin-top: 1rem;
}

/* === FAQ Section === */
.grid_f606 {
  max-width: 900px;
  margin: 0 auto;
}

.surface-black-0aa1 {
  margin: 2rem 0;
}

.badge_red_0ab1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.badge_red_0ab1 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.badge_red_0ab1 summary::-webkit-details-marker {
  display: none;
}

.badge_red_0ab1 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.pressed-7885 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.badge_red_0ab1[open] .pressed-7885 {
  transform: rotate(45deg);
}

.filter_middle_209d {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.filter_middle_209d p:last-child {
  margin-bottom: 0;
}

.input-static-57f4 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.warm-d1e2 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.slider-orange-5ff4 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.slider-orange-5ff4 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.slider-orange-5ff4 .modal-f1a7 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.backdrop_8db9 {
  max-width: 900px;
  margin: 0 auto;
}

.disabled-copper-c64f {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.down_0405 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.down_0405.fn-success-afea {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.sort_purple_ff08 {
  font-size: 3rem;
  line-height: 1;
}

.short-be40 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.gold-6770 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.component-stone-f6ae,
.column-bronze-14ef {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.component-stone-f6ae h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.column-bronze-14ef h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.video_center_6f78,
.filter_north_b0bc {
  margin: 1.5rem 0;
}

.video_center_6f78 li,
.filter_north_b0bc li {
  margin-bottom: 1rem;
}

.tabs-b39f {
  margin: 3rem 0;
}

.input-under-4782 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.input-under-4782 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.input-under-4782 ol {
  margin: 1rem 0;
}

.input-under-4782 li {
  margin-bottom: 0.75rem;
}

.full_11a3 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.static-8e44 {
  margin: 2rem 0;
}

.shadow_3211 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.progress-3fda {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.pattern-3e08 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.cool-7ec8 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.easy-18bd {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.sidebar-0a84 {
  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;
}

.sidebar-0a84 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.tag_solid_34d3 {
  flex: 1;
}

.tag_solid_34d3 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.description_26cd {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.red_f727 p {
  margin-bottom: 1rem;
}

.table-first-4ca4 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.easy_ec7f {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.bronze_065b {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.bronze_065b a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.shadow_02a3 h3 {
  margin-bottom: 1.5rem;
}

.warm-a9d4 {
  display: grid;
  gap: 2rem;
}

.medium_8ea3 {
  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;
}

.medium_8ea3 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.medium_8ea3 h4 {
  margin: 0 0 0.25rem;
}

.medium_8ea3 p {
  margin: 0;
  font-size: 0.9375rem;
}

.stale-ddf5 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.nav_plasma_eea4 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.nav_plasma_eea4 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.nav_plasma_eea4 ul {
  margin: 1.5rem 0;
}

.nav_plasma_eea4 li {
  margin-bottom: 0.75rem;
}

.link-ee96 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.feature_fixed_728f {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.secondary_cool_68d7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.article-3a9a h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.article-3a9a p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.active_2f4c {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.active_2f4c a {
  color: rgba(255, 255, 255, 0.8);
}

.widget-e879 {
  list-style: none;
}

.widget-e879 li {
  margin-bottom: 0.75rem;
}

.widget-e879 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.widget-e879 a:hover {
  color: white;
}

.shade-fresh-d9c0 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.advanced-c8a6 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.frame_right_0884 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.aside_7dec {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.first-24b7 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .hovered_ef9c {
    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;
  }

  .middle-94ed {
    font-size: 1.5rem !important;
  }

  .form_1409 {
    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-b2f1,
  .dim_9d83,
  .link-1dcf,
  .background-dc0c,
  .out-1dae,
  .middle_2d3f,
  .filter_middle_209d,
  .background-liquid-1462,
  .pro-0b9e,
  .fixed-a433 {
    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 */
  .aside-west-39b4 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .active-9032 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .sort-brown-a71d {
    flex-shrink: 0;
  }

  .tag_solid_34d3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .highlight_d5dc,
  .article-liquid-5e61 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .article-liquid-5e61 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .video-fixed-506d {
    display: none;
  }

  /* Show mobile actions */
  .link_a09e {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .shadow_tiny_834f {
    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;
  }

  .shadow_tiny_834f svg {
    flex-shrink: 0;
  }

  .shadow_tiny_834f .silver_e81d {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .shadow_tiny_834f .detail-stale-7b87 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .item-6d37 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .hero_selected_0d18 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .shadow_tiny_834f:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .media-9118 {
    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;
  }

  .media-9118.fn-active-afea {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .media-9118 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .media-9118 li:last-child {
    border-bottom: none;
  }

  .media-9118 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .badge_inner_bb3b {
    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;
  }

  .badge_inner_bb3b li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .badge_inner_bb3b li:last-child {
    border-bottom: none;
  }

  .badge_inner_bb3b a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .widget-bf32 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .black_89c0 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .avatar_4c6b,
  .notification_e296 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .avatar_4c6b {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .notification_e296 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .badge_inner_bb3b.fn-active-afea {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .section_1793 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .modal_glass_93a4 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .bottom_1acb {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .outline_selected_5b77 {
    margin-top: 0;
  }

  /* Hero section */
  .outline_selected_5b77 {
    padding: 2rem 0 1.5rem;
  }

  .form_1409 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .pro-0b9e {
    font-size: 1rem;
  }

  /* Hero brand image */
  .modal-full-08f5 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .popup-0fb1 {
    max-width: 100%;
    border-radius: 8px;
  }

  .caption-short-f59b {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .menu_steel_76e7 {
    padding: 1rem;
  }

  .form-down-109c {
    font-size: 1.5rem;
  }

  .background_copper_b4f3 {
    font-size: 0.75rem;
  }

  .background-liquid-1462 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .heading_faf7 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .heading_faf7 .modal-f1a7 {
    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 */
  .hot-780c {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .sort_green_3d09 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .shadow_action_db84 {
    margin-bottom: 1rem;
  }

  /* Author */
  .sidebar-8985 {
    flex-direction: column;
  }

  .sidebar-0a84 {
    flex-direction: column;
  }

  /* Quotes */
  .out-1dae {
    flex-direction: column;
  }

  /* Pros/Cons */
  .gold-6770 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cool-7ec8 {
    flex-direction: column;
  }

  .cool-7ec8 .modal-f1a7 {
    width: 100%;
  }

  /* Version comparison */
  .description_c160 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .heading_a7a3 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .secondary_cool_68d7 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .frame_right_0884 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .modal-c227,
  .disabled_b19b,
  .purple_56fa,
  .link-ca17,
  .banner_old_229e,
  .sort_lite_fbb0 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .modal-c227 table,
  .disabled_b19b table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .wood-fa88 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hovered_ef9c {
    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;
  }

  .middle-94ed {
    font-size: 1.25rem !important;
  }

  .form_1409 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .modal_glass_93a4 {
    position: fixed;
  }

  .bottom_1acb {
    padding: 0.625rem 0;
  }

  .over-d1fa img {
    height: 26px;
  }

  .badge_inner_bb3b {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .media-9118 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .shadow_tiny_834f {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .shadow_tiny_834f svg {
    width: 18px;
    height: 18px;
  }

  .shadow_tiny_834f .silver_e81d {
    font-size: 0.7rem;
  }

  .shadow_tiny_834f .detail-stale-7b87 {
    font-size: 0.65rem;
  }

  .avatar_4c6b,
  .notification_e296 {
    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, .hovered_ef9c, .heading_tiny_7db2, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .modal-full-08f5 {
    padding: 1rem;
  }

  .caption-short-f59b {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .menu_steel_76e7 {
    padding: 0.875rem;
  }

  .form-down-109c {
    font-size: 1.25rem;
  }

  .heading_faf7 .modal-f1a7 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .form_1409 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .modal-f1a7 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .disabled_9ad5 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .sort_green_3d09 {
    padding: 1rem;
  }

  .shadow_action_db84 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .disabled-b2f1,
  .tag_822a,
  .middle_ae84,
  .header_d968 {
    padding: 1rem;
  }
}

@media print {
  .modal_glass_93a4,
  .active-170b,
  .section_1793,
  .modal-f1a7,
  .feature_fixed_728f {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .hovered_ef9c {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.over-80a0 {
  margin-bottom: 3rem;
  text-align: center;
}

.middle-94ed {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.iron-5b76 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.basic-2ec0,
.simple-1527 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.form_a61e {
  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;
}

.form_a61e:hover {
  transform: translateY(-5px);
}

.form_a61e strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.form_a61e span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.search_plasma_d543 {
  margin: 3rem 0;
}

.dynamic-81ad {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.surface-2fe7 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.surface-2fe7:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.glass-bd3e {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.surface-gold-ec8d {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.description-fluid-883d {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.message_edf0 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.pagination_full_1266 {
  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;
}

.pagination_full_1266:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.pagination_full_1266.footer_206d {
  border-left: 4px solid var(--primary-color);
}

.alert-dirty-c6fa {
  flex-shrink: 0;
}

.alert-dirty-c6fa svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.column_c5b1 {
  flex: 1;
}

.column_c5b1 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.card_c960 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.light-a027,
.badge_stone_d3cf,
.outer_fcd0 {
  margin-bottom: 1.5rem;
}

.light-a027 h4,
.badge_stone_d3cf h4,
.outer_fcd0 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.light-a027 ul,
.badge_stone_d3cf ul,
.outer_fcd0 ul {
  list-style: none;
  padding: 0;
}

.light-a027 li,
.badge_stone_d3cf li,
.outer_fcd0 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.light-a027 li:before,
.badge_stone_d3cf li:before,
.outer_fcd0 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.image-soft-7456 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.image-soft-7456 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;
}

.image-soft-7456 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.slow_6d93 { margin: 2rem 0; }
.title_medium_a47a { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.title_medium_a47a h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.wrapper_1922 p { margin-bottom: 1rem; line-height: 1.7; }
.wrapper_1922 strong { color: var(--text-primary); }
.wrapper_1922 ul { list-style: none; padding-left: 0; }
.wrapper_1922 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.wrapper_1922 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.old_e82e { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.gallery-bright-c542 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.gallery-bright-c542:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.texture-8242 { font-size: 3rem; margin-bottom: 1rem; }
.gallery-bright-c542 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.gallery-bright-c542 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.feature_red_6958 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.feature_red_6958 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.north-b8a1 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.liquid-5aa2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.sort-prev-add1 { text-align: center; }
.label-4d8e { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.dark-1177 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.hard-ac0b { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.medium-bde3 { margin: 2rem 0; }
.link-ae43 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.link-ae43 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.link-ae43 p, .link-ae43 ul { line-height: 1.7; }
.link-ae43 ul { list-style: none; padding-left: 0; }
.link-ae43 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.link-ae43 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.sort-hot-27a4 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.sort-steel-087b { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.title-09d9 { text-align: center; }
.element_ea59 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.wide_1f0b { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.tag_ef8c { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.feature-3a27 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.simple-dd5a { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.simple-dd5a:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.simple-dd5a h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.simple-dd5a p, .simple-dd5a ul { line-height: 1.7; }
.simple-dd5a ul { list-style: none; padding-left: 0; }
.simple-dd5a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.simple-dd5a ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 421f */
.phantom-card-u8 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.2;
}
