/* ============================================
   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 */
.tertiary_f3ad p,
.down-4a48,
.small-bd8c,
.texture_stale_69c3,
.soft_2033,
.notice_fluid_b95c,
.black-a77b,
.layout-a45d {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.content-a468 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.content-a468 > *,
.gallery-medium-9aed,
.tertiary_f3ad,
.description-out-ffd6 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .content-a468 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .content-a468 {
    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 === */
.notification-a823 {
  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 */
.notification-a823.header_liquid_1865 {
  box-shadow: var(--shadow-md);
}

.under_4b11 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.notice-c2b5 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.surface-1516 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.modal-8109 {
  display: none;
}

/* Hide mobile actions on desktop */
.frame_slow_25d1 {
  display: none;
}

.gallery_blue_73d2 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.gallery_blue_73d2 a:hover,
.gallery_blue_73d2 a.fn-active-371e {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.south_d533 {
  margin-left: 1rem;
}

.south_cb6a {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.content_9bb5,
.article-9284 {
  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;
}

.content_9bb5 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.content_9bb5: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;
}

.article-9284 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.article-9284: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;
}

.content_9bb5 svg,
.article-9284 svg {
  flex-shrink: 0;
}

.module_6f53 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.top-b6fc {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.top-b6fc::before,
.top-b6fc::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.top-b6fc::before {
  top: -7px;
}

.top-b6fc::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.heading_bright_9c16 {
  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_stone_cba6 {
  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);
}

.footer_7aa0 {
  margin: 0 0 2rem;
  text-align: center;
}

.avatar_0d1a {
  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;
}

.avatar_0d1a:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.caption-up-e4a1 {
  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);
}

.caption-up-e4a1 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.modal_0336 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.element_white_78a7 {
  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;
}

.element_white_78a7:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.label_silver_21d0 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.gold_9d64 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.green-f244 {
  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);
}

.green-f244 .container_a5cb {
  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;
}

.green-f244 .container_a5cb svg {
  flex-shrink: 0;
}

.green-f244 .shade-medium-8c6d {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.green-f244 .shade-medium-8c6d: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);
}

.green-f244 .dynamic-90bb {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.green-f244 .dynamic-90bb: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_stone_cba6 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .avatar_0d1a {
    max-width: 100%;
  }

  .modal_0336 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .element_white_78a7 {
    padding: 1rem;
  }

  .label_silver_21d0 {
    font-size: 1.5rem;
  }

  .gold_9d64 {
    font-size: 0.75rem;
  }

  .caption-up-e4a1 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .green-f244 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .green-f244 .container_a5cb {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .modal_0336 {
    grid-template-columns: 1fr;
  }
}

.card-purple-752d {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.card_adc7 {
  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 === */
.hero_solid_5755 {
  margin-bottom: 2.5rem;
}

.media_6ede {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.card-purple-752d {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.item_3d5f {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.full-4500 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.widget-paper-1245 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.list-dynamic-985e {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.upper-a44f {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.dropdown-last-2061 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.layout-hovered-6817 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.layout-hovered-6817 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.box_ede8 {
  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);
}

.black-7842 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.east_0390 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.outer_163d {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.avatar-over-879f {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.active_b736 {
  display: grid;
  gap: 1rem;
}

.frame-narrow-a79b {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.hard_61ac {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.item_d3d2 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.dropdown_fbdd {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.list-e5c9 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.top_4f2f {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.top_4f2f p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.down-4a48 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.block_fb09 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.alert-light-0532 {
  display: grid;
  gap: 2rem;
}

.disabled_d87d {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.full-4500 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.item_3d5f {
  flex: 1;
}

.list-dynamic-985e {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.list-dynamic-985e a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.text_middle_8727 {
  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;
}

.upper-a44f {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.row-stone-7a9f {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.row-stone-7a9f span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.gradient-fluid-48a1 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.gradient-fluid-48a1 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.aside_cc2e {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.aside_cc2e strong {
  display: block;
  margin-bottom: 0.75rem;
}

.aside_cc2e ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.aside_cc2e li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.center-c7a5 {
  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 === */
.tall-0394 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.menu-old-0761 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.popup-white-d510 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.iron_e703 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.iron_e703 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.iron_e703 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.iron_e703 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;
}

.iron_e703 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.iron_e703 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.tertiary_f3ad {
  padding: 3rem 0 5rem;
}

.description-out-ffd6 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.description-out-ffd6.tall_f8d7 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.small-bd8c {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.logo_1736 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.table_a0d4 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.table_a0d4 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.tooltip_12e5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.shadow-0eed {
  text-align: center;
}

.section-8b89 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.motion_529e {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.white_0e2d {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.notice_fluid_b95c {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.texture_stale_69c3 {
  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;
}

.texture_stale_69c3 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.texture_stale_69c3:hover {
  box-shadow: var(--shadow-lg);
}

.texture_stale_69c3.message-d47f {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.texture_stale_69c3 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.texture_stale_69c3 ul {
  margin: 1rem 0;
}

.texture_stale_69c3 li {
  margin-bottom: 0.75rem;
}

.tabs-short-49c3 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.hovered_cbbf {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.hovered_cbbf a {
  font-weight: 600;
}

/* === Data Tables === */
.popup-3fe1 {
  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;
}

.popup-3fe1 table {
  width: 100%;
  min-width: 600px;
}

.popup-3fe1 thead {
  background-color: var(--primary-color);
  color: white;
}

.popup-3fe1 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.popup-3fe1 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.popup-3fe1 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.popup-3fe1 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.large-524e {
  list-style: none;
  margin: 1.5rem 0;
}

.large-524e li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.large-524e li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.title_a57e::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-371e::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 === */
.banner-action-c018 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.highlight_e3d9 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.highlight_e3d9 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.highlight_e3d9 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.highlight_e3d9 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.banner-action-c018 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.black-a77b {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.black-a77b::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.menu-dim-7e2b {
  position: relative;
  margin-bottom: 3rem;
}

.badge_6f76 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.badge_6f76 .static_24b5 {
  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;
}

.notice-hot-9140 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.notice-hot-9140 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.notice-hot-9140 ul {
  margin: 1rem 0;
}

.notice-hot-9140 li {
  margin-bottom: 0.75rem;
}

.wide_f609 {
  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 === */
.table-dark-f9bf {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.table-dark-f9bf h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.lite-6d45 {
  list-style: none;
  margin: 1.5rem 0;
}

.lite-6d45 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.lite-6d45 a {
  font-weight: 600;
}

.background-plasma-b0e7 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.layout-a45d {
  margin: 2.5rem 0;
}

.surface_new_35c1 {
  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;
}

.surface_new_35c1:hover {
  box-shadow: var(--shadow-lg);
}

.surface_new_35c1.cool-cd08 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.west_15ec {
  flex-shrink: 0;
}

.west_15ec 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);
}

.icon_light_e4f1 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.slider_a77d,
.table_north_b3d2,
.solid-d11c {
  width: 100%;
  margin: 1.5rem 0;
}

.warm_c1fa {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.warm_c1fa strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.avatar_306e {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.avatar_306e strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.mask_d12f {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.mask_d12f strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.stone_1900 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.disabled-773f {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.disabled-773f:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.disabled-773f.pattern_59dd {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.disabled-773f .texture_a520 {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.disabled-773f h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.gallery_62ba {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.alert-276b {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.alert-276b label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.liquid-3d38 {
  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 === */
.container_a5cb {
  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;
}

.shade-medium-8c6d {
  background-color: var(--primary-color);
  color: white;
}

.shade-medium-8c6d:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.dynamic-90bb {
  background-color: var(--text-secondary);
  color: white;
}

.dynamic-90bb:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.sidebar-thick-35fe {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.sidebar-thick-35fe:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.row_black_e5dd {
  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;
}

.row_black_e5dd:hover {
  background-color: var(--primary-dark);
}

.info_9781 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.avatar-837a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.badge-a041 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.row_tiny_2d70 {
  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 === */
.form-full-dde3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.notification_4d17 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.notification_4d17 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.hover_da83 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.complex_b455 {
  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;
}

.shadow_b2b3 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.accent_9150 {
  list-style: none;
  counter-reset: rank-counter;
}

.accent_9150 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.accent_9150 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;
}

.search_green_96da {
  list-style: none;
}

.search_green_96da li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.orange-a0fa {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.notice_df05 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.notice_df05 .primary-372e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.notice_df05 .warm-ced1 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.texture_easy_fd05 {
  margin-top: 3rem;
}

.info_fb14 {
  width: 100%;
}

.modal-easy-cea5 {
  background-color: #fef3c7;
}

.search_6a82 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.block-west-4aa7 {
  margin: 3rem 0;
}

.thumbnail_5e70 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.top_8bdf {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.top_8bdf:hover {
  box-shadow: var(--shadow-lg);
}

.top_8bdf.primary_74cc {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.bronze-0449 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.warm-accd strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.warm-accd span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.bronze-007c {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.top_8bdf blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.title-98ec {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.current-23cc {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.border_a6a2 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.center_0738 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.fluid-8ff1 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.article-d629 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.overlay_d30e {
  max-width: 900px;
  margin: 0 auto;
}

.hard-f9c0 {
  margin: 2rem 0;
}

.bronze_3de6 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.bronze_3de6 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.bronze_3de6 summary::-webkit-details-marker {
  display: none;
}

.bronze_3de6 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.inner-aa72 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.bronze_3de6[open] .inner-aa72 {
  transform: rotate(45deg);
}

.silver_cb89 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.silver_cb89 p:last-child {
  margin-bottom: 0;
}

.selected-e83a {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.media_active_9dc4 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.status-ea42 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.status-ea42 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.status-ea42 .container_a5cb {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.static_32c0 {
  max-width: 900px;
  margin: 0 auto;
}

.overlay-over-f2c2 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.solid_dcd7 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.solid_dcd7.fn-success-371e {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.thick_6cf5 {
  font-size: 3rem;
  line-height: 1;
}

.info_bb05 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.shade_focused_bcfd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.label_d4ae,
.main_9831 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.label_d4ae h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.main_9831 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.layout-6910,
.description-3152 {
  margin: 1.5rem 0;
}

.layout-6910 li,
.description-3152 li {
  margin-bottom: 1rem;
}

.layout-333a {
  margin: 3rem 0;
}

.box_liquid_abe1 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.box_liquid_abe1 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.box_liquid_abe1 ol {
  margin: 1rem 0;
}

.box_liquid_abe1 li {
  margin-bottom: 0.75rem;
}

.detail_rough_6cb8 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.table_bottom_bcce {
  margin: 2rem 0;
}

.modal-left-0347 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.background-44db {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.yellow_b002 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.hero-outer-3642 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.element_fast_0976 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.media-west-02fa {
  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;
}

.media-west-02fa img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.widget-paper-1245 {
  flex: 1;
}

.widget-paper-1245 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.column-dirty-da62 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.easy_e6a5 p {
  margin-bottom: 1rem;
}

.warm_a236 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.card-4fcc {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.stale_c4a8 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.stale_c4a8 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.detail_e373 h3 {
  margin-bottom: 1.5rem;
}

.mask_clean_536c {
  display: grid;
  gap: 2rem;
}

.grid_4485 {
  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;
}

.grid_4485 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.grid_4485 h4 {
  margin: 0 0 0.25rem;
}

.grid_4485 p {
  margin: 0;
  font-size: 0.9375rem;
}

.dirty-7720 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.content-liquid-9ddb {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.content-liquid-9ddb h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.content-liquid-9ddb ul {
  margin: 1.5rem 0;
}

.content-liquid-9ddb li {
  margin-bottom: 0.75rem;
}

.sidebar-12fb {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.module_basic_2db3 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.bronze_ce18 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.status_purple_20c3 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.status_purple_20c3 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.huge_7fc5 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.huge_7fc5 a {
  color: rgba(255, 255, 255, 0.8);
}

.block-d0c6 {
  list-style: none;
}

.block-d0c6 li {
  margin-bottom: 0.75rem;
}

.block-d0c6 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.block-d0c6 a:hover {
  color: white;
}

.easy-5b4f {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer_1c5a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.picture_white_4864 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.last-1f3f {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.dynamic-706b {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .content-a468 {
    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;
  }

  .grid-hard-6502 {
    font-size: 1.5rem !important;
  }

  .media_6ede {
    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 */
  .texture_stale_69c3,
  .soft_2033,
  .notice-hot-9140,
  .icon_light_e4f1,
  .bronze-0449,
  .top_8bdf,
  .silver_cb89,
  .caption-up-e4a1,
  .down-4a48,
  .small-bd8c {
    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 */
  .card-purple-752d {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .item_3d5f {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .full-4500 {
    flex-shrink: 0;
  }

  .widget-paper-1245 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .list-dynamic-985e,
  .upper-a44f {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .upper-a44f {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .surface-1516 {
    display: none;
  }

  /* Show mobile actions */
  .frame_slow_25d1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .current-b26d {
    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;
  }

  .current-b26d svg {
    flex-shrink: 0;
  }

  .current-b26d .west_0947 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .current-b26d .in-88a7 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .red-1f4c {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .gradient_d305 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .current-b26d:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .modal-8109 {
    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;
  }

  .modal-8109.fn-active-371e {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .modal-8109 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .modal-8109 li:last-child {
    border-bottom: none;
  }

  .modal-8109 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .gallery_blue_73d2 {
    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;
  }

  .gallery_blue_73d2 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .gallery_blue_73d2 li:last-child {
    border-bottom: none;
  }

  .gallery_blue_73d2 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .south_d533 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .south_cb6a {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .content_9bb5,
  .article-9284 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .content_9bb5 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .article-9284 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .gallery_blue_73d2.fn-active-371e {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .module_6f53 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .notification-a823 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .under_4b11 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .heading_bright_9c16 {
    margin-top: 0;
  }

  /* Hero section */
  .heading_bright_9c16 {
    padding: 2rem 0 1.5rem;
  }

  .media_6ede {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .down-4a48 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .modal_stone_cba6 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .avatar_0d1a {
    max-width: 100%;
    border-radius: 8px;
  }

  .modal_0336 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .element_white_78a7 {
    padding: 1rem;
  }

  .label_silver_21d0 {
    font-size: 1.5rem;
  }

  .gold_9d64 {
    font-size: 0.75rem;
  }

  .caption-up-e4a1 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .green-f244 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .green-f244 .container_a5cb {
    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 */
  .popup-white-d510 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .surface_new_35c1 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .west_15ec {
    margin-bottom: 1rem;
  }

  /* Author */
  .disabled_d87d {
    flex-direction: column;
  }

  .media-west-02fa {
    flex-direction: column;
  }

  /* Quotes */
  .bronze-0449 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .shade_focused_bcfd {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .hero-outer-3642 {
    flex-direction: column;
  }

  .hero-outer-3642 .container_a5cb {
    width: 100%;
  }

  /* Version comparison */
  .stone_1900 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .form-full-dde3 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .bronze_ce18 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .picture_white_4864 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .popup-3fe1,
  .table_north_b3d2,
  .dim_61b7,
  .info_fb14,
  .slider_a77d,
  .solid-d11c {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .popup-3fe1 table,
  .table_north_b3d2 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .liquid-3d38 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .content-a468 {
    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;
  }

  .grid-hard-6502 {
    font-size: 1.25rem !important;
  }

  .media_6ede {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .notification-a823 {
    position: fixed;
  }

  .under_4b11 {
    padding: 0.625rem 0;
  }

  .notice-c2b5 img {
    height: 26px;
  }

  .gallery_blue_73d2 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .modal-8109 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .current-b26d {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .current-b26d svg {
    width: 18px;
    height: 18px;
  }

  .current-b26d .west_0947 {
    font-size: 0.7rem;
  }

  .current-b26d .in-88a7 {
    font-size: 0.65rem;
  }

  .content_9bb5,
  .article-9284 {
    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, .content-a468, .gallery-medium-9aed, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .modal_stone_cba6 {
    padding: 1rem;
  }

  .modal_0336 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .element_white_78a7 {
    padding: 0.875rem;
  }

  .label_silver_21d0 {
    font-size: 1.25rem;
  }

  .green-f244 .container_a5cb {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .media_6ede {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .container_a5cb {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .info_9781 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .surface_new_35c1 {
    padding: 1rem;
  }

  .west_15ec span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .texture_stale_69c3,
  .paragraph-26d8,
  .summary-left-b5ad,
  .surface_down_c76b {
    padding: 1rem;
  }
}

@media print {
  .notification-a823,
  .tall-0394,
  .module_6f53,
  .container_a5cb,
  .module_basic_2db3 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .content-a468 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.text-yellow-c9b0 {
  margin-bottom: 3rem;
  text-align: center;
}

.grid-hard-6502 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.header_0428 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.left-cdcd,
.clean-7fa6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.accent_6c54 {
  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;
}

.accent_6c54:hover {
  transform: translateY(-5px);
}

.accent_6c54 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.accent_6c54 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.pattern_a1be {
  margin: 3rem 0;
}

.current_a826 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.tiny-e265 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.tiny-e265:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.video-3cc3 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.motion_5017 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.last-54a6 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.header-0809 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.hero-prev-cc96 {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.hero-prev-cc96:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.hero-prev-cc96.modal-old-78a2 {
  border-left: 4px solid var(--primary-color);
}

.smooth-dc28 {
  flex-shrink: 0;
}

.smooth-dc28 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.progress-7a7b {
  flex: 1;
}

.progress-7a7b h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.inner-901a {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.tag-d663,
.dynamic_10c8,
.progress_7b78 {
  margin-bottom: 1.5rem;
}

.tag-d663 h4,
.dynamic_10c8 h4,
.progress_7b78 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tag-d663 ul,
.dynamic_10c8 ul,
.progress_7b78 ul {
  list-style: none;
  padding: 0;
}

.tag-d663 li,
.dynamic_10c8 li,
.progress_7b78 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.tag-d663 li:before,
.dynamic_10c8 li:before,
.progress_7b78 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.outline_d675 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.outline_d675 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;
}

.outline_d675 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.video-fresh-ab4f { margin: 2rem 0; }
.huge-0b06 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.huge-0b06 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.paper-3f28 p { margin-bottom: 1rem; line-height: 1.7; }
.paper-3f28 strong { color: var(--text-primary); }
.paper-3f28 ul { list-style: none; padding-left: 0; }
.paper-3f28 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.paper-3f28 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.upper-a575 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.focus_7929 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.focus_7929:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.shade_soft_6904 { font-size: 3rem; margin-bottom: 1rem; }
.focus_7929 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.focus_7929 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.button-east-2182 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.button-east-2182 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.section-6d6f { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.main_55ef { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.lite-79ab { text-align: center; }
.popup-7383 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.basic_4a7e { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.row-438b { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.menu-soft-ce6d { margin: 2rem 0; }
.aside_action_dc02 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.aside_action_dc02 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.aside_action_dc02 p, .aside_action_dc02 ul { line-height: 1.7; }
.aside_action_dc02 ul { list-style: none; padding-left: 0; }
.aside_action_dc02 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.aside_action_dc02 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.paragraph-copper-2431 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.aside-a9df { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.background-390c { text-align: center; }
.form-833c { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.dark-9249 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.sidebar_c7f4 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.sort_a773 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.hard-ea2c { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.hard-ea2c:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.hard-ea2c h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.hard-ea2c p, .hard-ea2c ul { line-height: 1.7; }
.hard-ea2c ul { list-style: none; padding-left: 0; }
.hard-ea2c ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.hard-ea2c ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 6805 */
.widget-item-i9 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.1;
}
