/* ============================================
   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 */
.carousel_hard_9580 p,
.tiny-d901,
.next-a732,
.copper_82d2,
.light_12b6,
.layout_c8c0,
.avatar-full-a041,
.grid-bronze-6dcb {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.header-selected-f6b5 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.header-selected-f6b5 > *,
.icon_20fd,
.carousel_hard_9580,
.badge_upper_d902 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .header-selected-f6b5 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .header-selected-f6b5 {
    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 === */
.footer-silver-11dd {
  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 */
.footer-silver-11dd.gallery_ef79 {
  box-shadow: var(--shadow-md);
}

.info-thick-8086 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.summary-fresh-a970 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.under_7f33 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.popup-yellow-4f53 {
  display: none;
}

/* Hide mobile actions on desktop */
.secondary_24d5 {
  display: none;
}

.button_ee23 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.button_ee23 a:hover,
.button_ee23 a.fn-active-1411 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.orange-a5e4 {
  margin-left: 1rem;
}

.easy-4492 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.slider-dynamic-4b63,
.hero-bc93 {
  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;
}

.slider-dynamic-4b63 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.slider-dynamic-4b63: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;
}

.hero-bc93 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.hero-bc93: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;
}

.slider-dynamic-4b63 svg,
.hero-bc93 svg {
  flex-shrink: 0;
}

.message_608e {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.list_pro_7bff {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.list_pro_7bff::before,
.list_pro_7bff::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.list_pro_7bff::before {
  top: -7px;
}

.list_pro_7bff::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.primary_new_1fb9 {
  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 === */
.widget_4d67 {
  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);
}

.lite_8a89 {
  margin: 0 0 2rem;
  text-align: center;
}

.plasma_d95d {
  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;
}

.plasma_d95d:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.focused-2320 {
  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);
}

.focused-2320 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.stone_45f3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.complex-df47 {
  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;
}

.complex-df47:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.image_thick_2ec5 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.outline_e440 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.card-a87f {
  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);
}

.card-a87f .shade_over_49bb {
  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;
}

.card-a87f .shade_over_49bb svg {
  flex-shrink: 0;
}

.card-a87f .advanced_7acb {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.card-a87f .advanced_7acb: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);
}

.card-a87f .shadow_2e0a {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.card-a87f .shadow_2e0a: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) {
  .widget_4d67 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .plasma_d95d {
    max-width: 100%;
  }

  .stone_45f3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .complex-df47 {
    padding: 1rem;
  }

  .image_thick_2ec5 {
    font-size: 1.5rem;
  }

  .outline_e440 {
    font-size: 0.75rem;
  }

  .focused-2320 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .card-a87f {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .card-a87f .shade_over_49bb {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .stone_45f3 {
    grid-template-columns: 1fr;
  }
}

.link_420f {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.description_current_69c2 {
  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 === */
.medium-2c74 {
  margin-bottom: 2.5rem;
}

.card_858a {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.link_420f {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.tabs_motion_18d1 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.notification_11d9 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.box_brown_24d1 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.outline-de9e {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.east-e349 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.tag-brown-0318 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hot-1561 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hot-1561 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.narrow_bce2 {
  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);
}

.shadow_cfda {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.widget_lite_584f {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.warm-10a4 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.basic_b9fd {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.hover_0292 {
  display: grid;
  gap: 1rem;
}

.tall-16c8 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.title_44e0 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.advanced_0ca9 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.table-huge-6129 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.notice_ecc8 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.pink_c58d {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.pink_c58d p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.tiny-d901 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.brown-6403 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.pattern-175a {
  display: grid;
  gap: 2rem;
}

.box-1b2c {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.notification_11d9 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.tabs_motion_18d1 {
  flex: 1;
}

.outline-de9e {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.outline-de9e a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.notification-pro-eba1 {
  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;
}

.east-e349 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.detail_bright_47d7 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.detail_bright_47d7 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.icon_b78f {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.icon_b78f a {
  font-size: 0.875rem;
  font-weight: 500;
}

.text_1be4 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.text_1be4 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.text_1be4 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.text_1be4 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.box-1acc {
  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 === */
.brown_d858 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.carousel-d7be {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.description-1190 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.dirty_81b7 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.dirty_81b7 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.dirty_81b7 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.dirty_81b7 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;
}

.dirty_81b7 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.dirty_81b7 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.carousel_hard_9580 {
  padding: 3rem 0 5rem;
}

.badge_upper_d902 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.badge_upper_d902.preview_b594 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.next-a732 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.accordion-7e69 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.active_fast_b5e7 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.active_fast_b5e7 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.notification_b2c0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.icon_ee27 {
  text-align: center;
}

.huge-20c8 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stale_967f {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.column-195b {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.layout_c8c0 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.copper_82d2 {
  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;
}

.copper_82d2 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.copper_82d2:hover {
  box-shadow: var(--shadow-lg);
}

.copper_82d2.red-a4fb {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.copper_82d2 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.copper_82d2 ul {
  margin: 1rem 0;
}

.copper_82d2 li {
  margin-bottom: 0.75rem;
}

.bronze_fcc1 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.main-fdf4 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.main-fdf4 a {
  font-weight: 600;
}

/* === Data Tables === */
.small_b821 {
  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;
}

.small_b821 table {
  width: 100%;
  min-width: 600px;
}

.small_b821 thead {
  background-color: var(--primary-color);
  color: white;
}

.small_b821 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.small_b821 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.small_b821 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.small_b821 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.hot_7798 {
  list-style: none;
  margin: 1.5rem 0;
}

.hot_7798 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.hot_7798 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.shade_f710::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-1411::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 === */
.solid_aa3b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.pagination_bottom_90dc {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.pagination_bottom_90dc img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.pagination_bottom_90dc strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.pagination_bottom_90dc span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.solid_aa3b blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.avatar-full-a041 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.avatar-full-a041::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.green-e525 {
  position: relative;
  margin-bottom: 3rem;
}

.widget-f0f4 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.widget-f0f4 .fresh_5ceb {
  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;
}

.mask-dark-c970 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.mask-dark-c970 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.mask-dark-c970 ul {
  margin: 1rem 0;
}

.mask-dark-c970 li {
  margin-bottom: 0.75rem;
}

.stone_3d3a {
  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 === */
.in-92e3 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.in-92e3 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.element-simple-4cb7 {
  list-style: none;
  margin: 1.5rem 0;
}

.element-simple-4cb7 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.element-simple-4cb7 a {
  font-weight: 600;
}

.slider-6d3d {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.grid-bronze-6dcb {
  margin: 2.5rem 0;
}

.sort-black-e6a8 {
  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-black-e6a8:hover {
  box-shadow: var(--shadow-lg);
}

.sort-black-e6a8.header-dec1 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.frame_6786 {
  flex-shrink: 0;
}

.frame_6786 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);
}

.nav_middle_1e9f h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.row_dark_7368,
.feature-1c2c,
.row_86b9 {
  width: 100%;
  margin: 1.5rem 0;
}

.current-24bc {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.current-24bc strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.badge_black_4b09 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.badge_black_4b09 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.avatar-blue-4335 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.avatar-blue-4335 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.element-gas-e2b8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.white_2b05 {
  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;
}

.white_2b05:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.white_2b05.black_9b34 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.white_2b05 .frame_acdd {
  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;
}

.white_2b05 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.dim-59d7 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.light-25e8 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.light-25e8 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.panel_cool_3097 {
  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 === */
.shade_over_49bb {
  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;
}

.advanced_7acb {
  background-color: var(--primary-color);
  color: white;
}

.advanced_7acb:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.shadow_2e0a {
  background-color: var(--text-secondary);
  color: white;
}

.shadow_2e0a:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.old_c3e0 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.old_c3e0:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.link-action-644e {
  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;
}

.link-action-644e:hover {
  background-color: var(--primary-dark);
}

.container-7cde {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.focused-4e15 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.out_abc8 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.link_fast_569f {
  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 === */
.caption-1adf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.form-3734 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.form-3734 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.highlight-91ce {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.wide-a6dc {
  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;
}

.focus_7c8c {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.carousel-400d {
  list-style: none;
  counter-reset: rank-counter;
}

.carousel-400d li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.carousel-400d 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;
}

.thumbnail-last-01f5 {
  list-style: none;
}

.thumbnail-last-01f5 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.short_309d {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.bottom-ec2e {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.bottom-ec2e .video-33da {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.bottom-ec2e .rough-dbad {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.link-purple-d46c {
  margin-top: 3rem;
}

.selected_b335 {
  width: 100%;
}

.video_d84b {
  background-color: #fef3c7;
}

.header_north_4737 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.paragraph-9206 {
  margin: 3rem 0;
}

.focus_05f1 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.secondary-8747 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.secondary-8747:hover {
  box-shadow: var(--shadow-lg);
}

.secondary-8747.column_thick_5076 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.description_ff03 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.texture_0591 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.texture_0591 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.simple_7aee {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.secondary-8747 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.orange_969b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.left-9ac4 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.yellow_85d9 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.dirty-e432 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.frame-e6e1 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.top_ef6b {
  margin-top: 1rem;
}

/* === FAQ Section === */
.inner_0ff8 {
  max-width: 900px;
  margin: 0 auto;
}

.section_next_14cd {
  margin: 2rem 0;
}

.slider_b27d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.slider_b27d summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.slider_b27d summary::-webkit-details-marker {
  display: none;
}

.slider_b27d summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.notification-c339 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.slider_b27d[open] .notification-c339 {
  transform: rotate(45deg);
}

.box_gas_a1d4 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.box_gas_a1d4 p:last-child {
  margin-bottom: 0;
}

.container_2fbf {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.hovered-6bba {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.avatar_88af {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.avatar_88af p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.avatar_88af .shade_over_49bb {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.header_6f81 {
  max-width: 900px;
  margin: 0 auto;
}

.caption_orange_257f {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.mask-basic-d090 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.mask-basic-d090.fn-success-1411 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.last_bdec {
  font-size: 3rem;
  line-height: 1;
}

.detail-76ca h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.media_edfb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.simple-7875,
.container_afb4 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.simple-7875 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.container_afb4 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.input-hard-a5ec,
.caption_878b {
  margin: 1.5rem 0;
}

.input-hard-a5ec li,
.caption_878b li {
  margin-bottom: 1rem;
}

.fixed-ad04 {
  margin: 3rem 0;
}

.footer_02dd {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.footer_02dd h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.footer_02dd ol {
  margin: 1rem 0;
}

.footer_02dd li {
  margin-bottom: 0.75rem;
}

.dropdown-5f15 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.filter-dynamic-a85b {
  margin: 2rem 0;
}

.texture-light-73ff {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.green_9317 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.shade_light_bddd {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.brown_9dc3 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.fluid-c852 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.banner_7733 {
  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;
}

.banner_7733 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.box_brown_24d1 {
  flex: 1;
}

.box_brown_24d1 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.selected_e99e {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.stone_57a3 p {
  margin-bottom: 1rem;
}

.middle-3cb5 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.warm_fafd {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.icon_bottom_027a {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.icon_bottom_027a a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.paragraph_simple_ef04 h3 {
  margin-bottom: 1.5rem;
}

.accordion_west_6326 {
  display: grid;
  gap: 2rem;
}

.focused-49c0 {
  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;
}

.focused-49c0 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.focused-49c0 h4 {
  margin: 0 0 0.25rem;
}

.focused-49c0 p {
  margin: 0;
  font-size: 0.9375rem;
}

.cool_c327 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.grid-black-024f {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.grid-black-024f h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.grid-black-024f ul {
  margin: 1.5rem 0;
}

.grid-black-024f li {
  margin-bottom: 0.75rem;
}

.search_orange_9605 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.pagination-green-aa03 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.form-purple-42e6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.caption-98d3 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.caption-98d3 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.center-d3d9 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.center-d3d9 a {
  color: rgba(255, 255, 255, 0.8);
}

.gallery_focused_2dad {
  list-style: none;
}

.gallery_focused_2dad li {
  margin-bottom: 0.75rem;
}

.gallery_focused_2dad a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.gallery_focused_2dad a:hover {
  color: white;
}

.picture_5109 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.slider_pro_f68c {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.message-liquid-dc28 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.detail_middle_289b {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.element-d56e {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .header-selected-f6b5 {
    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;
  }

  .tabs-cool-63ce {
    font-size: 1.5rem !important;
  }

  .card_858a {
    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 */
  .copper_82d2,
  .light_12b6,
  .mask-dark-c970,
  .nav_middle_1e9f,
  .description_ff03,
  .secondary-8747,
  .box_gas_a1d4,
  .focused-2320,
  .tiny-d901,
  .next-a732 {
    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 */
  .link_420f {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .tabs_motion_18d1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .notification_11d9 {
    flex-shrink: 0;
  }

  .box_brown_24d1 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .outline-de9e,
  .east-e349 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .east-e349 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .under_7f33 {
    display: none;
  }

  /* Show mobile actions */
  .secondary_24d5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .list_pro_b9d3 {
    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;
  }

  .list_pro_b9d3 svg {
    flex-shrink: 0;
  }

  .list_pro_b9d3 .over-5f75 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .list_pro_b9d3 .header_medium_9618 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .logo-lower-9e2d {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .small_a292 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .list_pro_b9d3:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .popup-yellow-4f53 {
    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;
  }

  .popup-yellow-4f53.fn-active-1411 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .popup-yellow-4f53 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .popup-yellow-4f53 li:last-child {
    border-bottom: none;
  }

  .popup-yellow-4f53 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .button_ee23 {
    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;
  }

  .button_ee23 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .button_ee23 li:last-child {
    border-bottom: none;
  }

  .button_ee23 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .orange-a5e4 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .easy-4492 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .slider-dynamic-4b63,
  .hero-bc93 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .slider-dynamic-4b63 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .hero-bc93 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .button_ee23.fn-active-1411 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .message_608e {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .footer-silver-11dd {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .info-thick-8086 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .primary_new_1fb9 {
    margin-top: 0;
  }

  /* Hero section */
  .primary_new_1fb9 {
    padding: 2rem 0 1.5rem;
  }

  .card_858a {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .tiny-d901 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .widget_4d67 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .plasma_d95d {
    max-width: 100%;
    border-radius: 8px;
  }

  .stone_45f3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .complex-df47 {
    padding: 1rem;
  }

  .image_thick_2ec5 {
    font-size: 1.5rem;
  }

  .outline_e440 {
    font-size: 0.75rem;
  }

  .focused-2320 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .card-a87f {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .card-a87f .shade_over_49bb {
    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 */
  .description-1190 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .sort-black-e6a8 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .frame_6786 {
    margin-bottom: 1rem;
  }

  /* Author */
  .box-1b2c {
    flex-direction: column;
  }

  .banner_7733 {
    flex-direction: column;
  }

  /* Quotes */
  .description_ff03 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .media_edfb {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .brown_9dc3 {
    flex-direction: column;
  }

  .brown_9dc3 .shade_over_49bb {
    width: 100%;
  }

  /* Version comparison */
  .element-gas-e2b8 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .caption-1adf {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .form-purple-42e6 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .message-liquid-dc28 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .small_b821,
  .feature-1c2c,
  .article-smooth-df7b,
  .selected_b335,
  .row_dark_7368,
  .row_86b9 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .small_b821 table,
  .feature-1c2c table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .panel_cool_3097 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .header-selected-f6b5 {
    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;
  }

  .tabs-cool-63ce {
    font-size: 1.25rem !important;
  }

  .card_858a {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .footer-silver-11dd {
    position: fixed;
  }

  .info-thick-8086 {
    padding: 0.625rem 0;
  }

  .summary-fresh-a970 img {
    height: 26px;
  }

  .button_ee23 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .popup-yellow-4f53 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .list_pro_b9d3 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .list_pro_b9d3 svg {
    width: 18px;
    height: 18px;
  }

  .list_pro_b9d3 .over-5f75 {
    font-size: 0.7rem;
  }

  .list_pro_b9d3 .header_medium_9618 {
    font-size: 0.65rem;
  }

  .slider-dynamic-4b63,
  .hero-bc93 {
    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, .header-selected-f6b5, .icon_20fd, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .widget_4d67 {
    padding: 1rem;
  }

  .stone_45f3 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .complex-df47 {
    padding: 0.875rem;
  }

  .image_thick_2ec5 {
    font-size: 1.25rem;
  }

  .card-a87f .shade_over_49bb {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .card_858a {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .shade_over_49bb {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .container-7cde {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .sort-black-e6a8 {
    padding: 1rem;
  }

  .frame_6786 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .copper_82d2,
  .notice-purple-e90f,
  .feature-3fb4,
  .secondary-fb4b {
    padding: 1rem;
  }
}

@media print {
  .footer-silver-11dd,
  .brown_d858,
  .message_608e,
  .shade_over_49bb,
  .pagination-green-aa03 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .header-selected-f6b5 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.short_de7e {
  margin-bottom: 3rem;
  text-align: center;
}

.tabs-cool-63ce {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.dropdown_ccb3 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.focus-focused-4812,
.highlight_lower_992b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.section-660d {
  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;
}

.section-660d:hover {
  transform: translateY(-5px);
}

.section-660d strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.section-660d span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.button-cold-a650 {
  margin: 3rem 0;
}

.surface-43aa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.info_afb4 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.info_afb4:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.chip_pressed_6020 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hot-4134 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.hard_4421 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.tooltip_b920 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.avatar_f256 {
  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;
}

.avatar_f256:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.avatar_f256.steel-ff79 {
  border-left: 4px solid var(--primary-color);
}

.dropdown_0276 {
  flex-shrink: 0;
}

.dropdown_0276 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.header-blue-1dc1 {
  flex: 1;
}

.header-blue-1dc1 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.button_down_4559 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.cool-8c41,
.copper-e23c,
.column_fresh_8be8 {
  margin-bottom: 1.5rem;
}

.cool-8c41 h4,
.copper-e23c h4,
.column_fresh_8be8 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cool-8c41 ul,
.copper-e23c ul,
.column_fresh_8be8 ul {
  list-style: none;
  padding: 0;
}

.cool-8c41 li,
.copper-e23c li,
.column_fresh_8be8 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.cool-8c41 li:before,
.copper-e23c li:before,
.column_fresh_8be8 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.simple-7cc7 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.simple-7cc7 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;
}

.simple-7cc7 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.smooth_bfdb { margin: 2rem 0; }
.border-3d18 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.border-3d18 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.mini_81a1 p { margin-bottom: 1rem; line-height: 1.7; }
.mini_81a1 strong { color: var(--text-primary); }
.mini_81a1 ul { list-style: none; padding-left: 0; }
.mini_81a1 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.mini_81a1 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.search-c9ea { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.thumbnail_f848 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.thumbnail_f848:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.overlay_stale_9333 { font-size: 3rem; margin-bottom: 1rem; }
.thumbnail_f848 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.thumbnail_f848 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.filter_tiny_7835 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.filter_tiny_7835 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.info-orange-6778 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.button_east_1a96 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.card-b907 { text-align: center; }
.hidden-right-819f { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.search_d836 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.sidebar_1704 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.preview_hovered_c7be { margin: 2rem 0; }
.east_482f { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.east_482f h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.east_482f p, .east_482f ul { line-height: 1.7; }
.east_482f ul { list-style: none; padding-left: 0; }
.east_482f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.east_482f ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.alert-fluid-2aab { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.highlight_tiny_71c5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.accordion_fresh_0078 { text-align: center; }
.brown_71a5 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.footer-tiny-c38f { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.secondary-static-1653 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.tertiary-8623 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.mini-e243 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.mini-e243:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.mini-e243 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.mini-e243 p, .mini-e243 ul { line-height: 1.7; }
.mini-e243 ul { list-style: none; padding-left: 0; }
.mini-e243 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.mini-e243 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: c947 */
.shadow-element-g0 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.2;
}
