/* ============================================
   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 */
.light_0384 p,
.row-easy-acd9,
.wide-50c9,
.image_short_f4f8,
.carousel-purple-e3c8,
.badge-selected-e6b6,
.disabled-paper-39df,
.iron_e259 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.easy-0511 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.easy-0511 > *,
.media-67ea,
.light_0384,
.notification_red_d3ec {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .easy-0511 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .easy-0511 {
    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 === */
.fresh_43aa {
  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 */
.fresh_43aa.dropdown_fresh_cfba {
  box-shadow: var(--shadow-md);
}

.gold_0258 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.main-9afe img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.widget-purple-13bf {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.accordion_c0ee {
  display: none;
}

/* Hide mobile actions on desktop */
.hovered_3ec1 {
  display: none;
}

.small_9289 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.small_9289 a:hover,
.small_9289 a.fn-active-b40b {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.logo_3666 {
  margin-left: 1rem;
}

.preview-0334 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.pressed-c909,
.aside-warm-b015 {
  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;
}

.pressed-c909 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.pressed-c909: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;
}

.aside-warm-b015 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.aside-warm-b015: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;
}

.pressed-c909 svg,
.aside-warm-b015 svg {
  flex-shrink: 0;
}

.first_a537 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.box-17b2 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.box-17b2::before,
.box-17b2::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.box-17b2::before {
  top: -7px;
}

.box-17b2::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.outline-6c30 {
  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 === */
.right_85a6 {
  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);
}

.accent_d604 {
  margin: 0 0 2rem;
  text-align: center;
}

.green-792a {
  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;
}

.green-792a:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.out-816c {
  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);
}

.out-816c strong {
  color: var(--primary-color);
  font-weight: 700;
}

.over-5f06 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.list_bd63 {
  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;
}

.list_bd63:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.gallery_163f {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.prev-b717 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.highlight-ee9d {
  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);
}

.highlight-ee9d .paragraph_glass_48a4 {
  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;
}

.highlight-ee9d .paragraph_glass_48a4 svg {
  flex-shrink: 0;
}

.highlight-ee9d .tabs_f717 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.highlight-ee9d .tabs_f717: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);
}

.highlight-ee9d .hidden_bb4d {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.highlight-ee9d .hidden_bb4d: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) {
  .right_85a6 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .green-792a {
    max-width: 100%;
  }

  .over-5f06 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .list_bd63 {
    padding: 1rem;
  }

  .gallery_163f {
    font-size: 1.5rem;
  }

  .prev-b717 {
    font-size: 0.75rem;
  }

  .out-816c {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .highlight-ee9d {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .highlight-ee9d .paragraph_glass_48a4 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .over-5f06 {
    grid-template-columns: 1fr;
  }
}

.modal-green-d58c {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tabs-iron-ad23 {
  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 === */
.tiny_a886 {
  margin-bottom: 2.5rem;
}

.orange-06c2 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.modal-green-d58c {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.paragraph-old-f783 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lower-97ea {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.huge-54fe {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.feature-first-d685 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.badge-dirty-c91e {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.secondary-upper-6ddc {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.title_30c0 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.title_30c0 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.chip-hard-156b {
  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);
}

.box_plasma_4514 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.badge_wide_ac57 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tabs_short_40e8 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.description-cool-6a17 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.secondary-wood-6563 {
  display: grid;
  gap: 1rem;
}

.card-9e3d {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.primary_red_93ff {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.hero-c44a {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.east_2d9a {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.tiny_4e15 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.tertiary-0bab {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.tertiary-0bab p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.row-easy-acd9 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.texture-black-61be {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.lite-c56f {
  display: grid;
  gap: 2rem;
}

.label-black-cd38 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.lower-97ea {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.paragraph-old-f783 {
  flex: 1;
}

.feature-first-d685 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.feature-first-d685 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.main_gold_0d08 {
  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;
}

.badge-dirty-c91e {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.media_4bcd {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.media_4bcd span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.slider_acf3 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.slider_acf3 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.filter-gas-067e {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.filter-gas-067e strong {
  display: block;
  margin-bottom: 0.75rem;
}

.filter-gas-067e ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-gas-067e li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.layout-top-7bff {
  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 === */
.simple-af4e {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.info_fresh_be99 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.alert_ea27 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.primary_6f1b h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.primary_6f1b ol {
  list-style: none;
  counter-reset: toc-counter;
}

.primary_6f1b ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.primary_6f1b 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;
}

.primary_6f1b ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.primary_6f1b ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.light_0384 {
  padding: 3rem 0 5rem;
}

.notification_red_d3ec {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.notification_red_d3ec.over_1a67 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.wide-50c9 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.component_wood_4ec0 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.mask_1b31 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.mask_1b31 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.backdrop-small-b6e8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.dim_55e6 {
  text-align: center;
}

.message-4317 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pattern_pro_7262 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.media-efd8 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.badge-selected-e6b6 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.image_short_f4f8 {
  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;
}

.image_short_f4f8 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.image_short_f4f8:hover {
  box-shadow: var(--shadow-lg);
}

.image_short_f4f8.article_a605 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.image_short_f4f8 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.image_short_f4f8 ul {
  margin: 1rem 0;
}

.image_short_f4f8 li {
  margin-bottom: 0.75rem;
}

.button_7ed5 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.white_b08c {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.white_b08c a {
  font-weight: 600;
}

/* === Data Tables === */
.wrapper-up-f12c {
  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;
}

.wrapper-up-f12c table {
  width: 100%;
  min-width: 600px;
}

.wrapper-up-f12c thead {
  background-color: var(--primary-color);
  color: white;
}

.wrapper-up-f12c th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.wrapper-up-f12c td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.wrapper-up-f12c tbody tr:hover {
  background-color: var(--bg-secondary);
}

.wrapper-up-f12c tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.breadcrumb_active_f4fe {
  list-style: none;
  margin: 1.5rem 0;
}

.breadcrumb_active_f4fe li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.breadcrumb_active_f4fe li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.overlay-78a6::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-b40b::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 === */
.widget-thick-4265 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.soft-f9c9 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.soft-f9c9 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.soft-f9c9 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.soft-f9c9 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.widget-thick-4265 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.disabled-paper-39df {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.disabled-paper-39df::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.form_ef70 {
  position: relative;
  margin-bottom: 3rem;
}

.aside-0807 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.aside-0807 .accent_4994 {
  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;
}

.outer_c61b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.outer_c61b h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.outer_c61b ul {
  margin: 1rem 0;
}

.outer_c61b li {
  margin-bottom: 0.75rem;
}

.logo-fixed-6fe6 {
  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 === */
.box_next_5ca6 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.box_next_5ca6 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.gallery-current-df80 {
  list-style: none;
  margin: 1.5rem 0;
}

.gallery-current-df80 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.gallery-current-df80 a {
  font-weight: 600;
}

.footer_ad9c {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.iron_e259 {
  margin: 2.5rem 0;
}

.item-pressed-24b2 {
  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;
}

.item-pressed-24b2:hover {
  box-shadow: var(--shadow-lg);
}

.item-pressed-24b2.article_5a5a {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.message_bright_11a7 {
  flex-shrink: 0;
}

.message_bright_11a7 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);
}

.prev_5a5b h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.table_b9a0,
.advanced-a372,
.outline_dark_0b1f {
  width: 100%;
  margin: 1.5rem 0;
}

.logo-e7f9 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.logo-e7f9 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.logo_06b5 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.logo_06b5 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.north_73bd {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.north_73bd strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.border-223d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.avatar_soft_f6a6 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.avatar_soft_f6a6:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.avatar_soft_f6a6.module_0d81 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.avatar_soft_f6a6 .pattern-1c2f {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.avatar_soft_f6a6 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.article_1796 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.fresh_6f4a {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.fresh_6f4a label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.slider-9e1e {
  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 === */
.paragraph_glass_48a4 {
  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;
}

.tabs_f717 {
  background-color: var(--primary-color);
  color: white;
}

.tabs_f717:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.hidden_bb4d {
  background-color: var(--text-secondary);
  color: white;
}

.hidden_bb4d:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.gold-2bec {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.gold-2bec:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.mini_3fae {
  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;
}

.mini_3fae:hover {
  background-color: var(--primary-dark);
}

.form-376a {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.picture_46ce {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.fluid-95e4 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.disabled_fast_59e5 {
  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 === */
.copper_2225 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.lite_4de0 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.lite_4de0 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.over_f84a {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.aside_251e {
  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;
}

.picture-motion-7d27 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.modal-last-7d4f {
  list-style: none;
  counter-reset: rank-counter;
}

.modal-last-7d4f li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.modal-last-7d4f li::before {
  content: counter(rank-counter);
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
}

.nav-5d31 {
  list-style: none;
}

.nav-5d31 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.logo-motion-1816 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.cool_48e2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cool_48e2 .disabled-pressed-0886 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.cool_48e2 .photo_dim_e4bd {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.backdrop-9ee7 {
  margin-top: 3rem;
}

.wrapper_ea5b {
  width: 100%;
}

.rough-0388 {
  background-color: #fef3c7;
}

.notification-liquid-1d13 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.media_5c02 {
  margin: 3rem 0;
}

.label-b975 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.shadow-wood-fd1e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.shadow-wood-fd1e:hover {
  box-shadow: var(--shadow-lg);
}

.shadow-wood-fd1e.info_under_ef58 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.mini-ef3c {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.south-d8eb strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.south-d8eb span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.layout-paper-4f91 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.shadow-wood-fd1e blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.solid-c097 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.rough-ee26 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.badge-under-7b43 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.out_202b {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.wrapper_7096 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.heading_hot_f0d4 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.cold-120b {
  max-width: 900px;
  margin: 0 auto;
}

.status_2b2a {
  margin: 2rem 0;
}

.background_iron_2ad2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.background_iron_2ad2 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.background_iron_2ad2 summary::-webkit-details-marker {
  display: none;
}

.background_iron_2ad2 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.surface-dim-85f6 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.background_iron_2ad2[open] .surface-dim-85f6 {
  transform: rotate(45deg);
}

.detail-center-f0c2 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.detail-center-f0c2 p:last-child {
  margin-bottom: 0;
}

.paper-b725 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.primary_smooth_6a7f {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.tertiary-9eb0 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.tertiary-9eb0 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.tertiary-9eb0 .paragraph_glass_48a4 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.last_1c48 {
  max-width: 900px;
  margin: 0 auto;
}

.photo-e12f {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.iron_1250 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.iron_1250.fn-success-b40b {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.section_gold_2742 {
  font-size: 3rem;
  line-height: 1;
}

.tabs_solid_8f52 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.basic_915d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.caption_8e2e,
.content-easy-c07a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.caption_8e2e h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.content-easy-c07a h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.input_90fc,
.mask-bronze-fbd7 {
  margin: 1.5rem 0;
}

.input_90fc li,
.mask-bronze-fbd7 li {
  margin-bottom: 1rem;
}

.block-short-8495 {
  margin: 3rem 0;
}

.clean_f4da {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.clean_f4da h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.clean_f4da ol {
  margin: 1rem 0;
}

.clean_f4da li {
  margin-bottom: 0.75rem;
}

.background_small_081a {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.out_c17f {
  margin: 2rem 0;
}

.picture_f043 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.frame_mini_2597 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.tooltip-5f50 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.media_large_657a {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.dirty_de28 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.card-a481 {
  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;
}

.card-a481 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.huge-54fe {
  flex: 1;
}

.huge-54fe h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.status_b70d {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.backdrop-lite-061b p {
  margin-bottom: 1rem;
}

.middle_9cfe {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.wood-0288 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.row_over_1718 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.row_over_1718 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.banner_fresh_d213 h3 {
  margin-bottom: 1.5rem;
}

.image_691f {
  display: grid;
  gap: 2rem;
}

.container_bottom_b6af {
  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;
}

.container_bottom_b6af img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.container_bottom_b6af h4 {
  margin: 0 0 0.25rem;
}

.container_bottom_b6af p {
  margin: 0;
  font-size: 0.9375rem;
}

.static-dee1 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.button_clean_030f {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.button_clean_030f h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.button_clean_030f ul {
  margin: 1.5rem 0;
}

.button_clean_030f li {
  margin-bottom: 0.75rem;
}

.stale_0ddc {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.row-8704 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.paragraph-2dbb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.fixed-76bd h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.fixed-76bd p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.iron_1f75 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.iron_1f75 a {
  color: rgba(255, 255, 255, 0.8);
}

.tooltip-30cb {
  list-style: none;
}

.tooltip-30cb li {
  margin-bottom: 0.75rem;
}

.tooltip-30cb a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.tooltip-30cb a:hover {
  color: white;
}

.middle-7da1 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.highlight-5562 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.hover_action_52db {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.content_5643 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.basic-484d {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .easy-0511 {
    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;
  }

  .over_bec4 {
    font-size: 1.5rem !important;
  }

  .orange-06c2 {
    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 */
  .image_short_f4f8,
  .carousel-purple-e3c8,
  .outer_c61b,
  .prev_5a5b,
  .mini-ef3c,
  .shadow-wood-fd1e,
  .detail-center-f0c2,
  .out-816c,
  .row-easy-acd9,
  .wide-50c9 {
    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 */
  .modal-green-d58c {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .paragraph-old-f783 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .lower-97ea {
    flex-shrink: 0;
  }

  .huge-54fe {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .feature-first-d685,
  .badge-dirty-c91e {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .badge-dirty-c91e {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .widget-purple-13bf {
    display: none;
  }

  /* Show mobile actions */
  .hovered_3ec1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .thumbnail-left-5ff3 {
    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;
  }

  .thumbnail-left-5ff3 svg {
    flex-shrink: 0;
  }

  .thumbnail-left-5ff3 .solid_50a0 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .thumbnail-left-5ff3 .overlay-2a23 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .secondary-df99 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .block-prev-031d {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .thumbnail-left-5ff3:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .accordion_c0ee {
    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;
  }

  .accordion_c0ee.fn-active-b40b {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .accordion_c0ee li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .accordion_c0ee li:last-child {
    border-bottom: none;
  }

  .accordion_c0ee a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .small_9289 {
    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;
  }

  .small_9289 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .small_9289 li:last-child {
    border-bottom: none;
  }

  .small_9289 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .logo_3666 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .preview-0334 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .pressed-c909,
  .aside-warm-b015 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .pressed-c909 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .aside-warm-b015 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .small_9289.fn-active-b40b {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .first_a537 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .fresh_43aa {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .gold_0258 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .outline-6c30 {
    margin-top: 0;
  }

  /* Hero section */
  .outline-6c30 {
    padding: 2rem 0 1.5rem;
  }

  .orange-06c2 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .row-easy-acd9 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .right_85a6 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .green-792a {
    max-width: 100%;
    border-radius: 8px;
  }

  .over-5f06 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .list_bd63 {
    padding: 1rem;
  }

  .gallery_163f {
    font-size: 1.5rem;
  }

  .prev-b717 {
    font-size: 0.75rem;
  }

  .out-816c {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .highlight-ee9d {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .highlight-ee9d .paragraph_glass_48a4 {
    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 */
  .alert_ea27 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .item-pressed-24b2 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .message_bright_11a7 {
    margin-bottom: 1rem;
  }

  /* Author */
  .label-black-cd38 {
    flex-direction: column;
  }

  .card-a481 {
    flex-direction: column;
  }

  /* Quotes */
  .mini-ef3c {
    flex-direction: column;
  }

  /* Pros/Cons */
  .basic_915d {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .media_large_657a {
    flex-direction: column;
  }

  .media_large_657a .paragraph_glass_48a4 {
    width: 100%;
  }

  /* Version comparison */
  .border-223d {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .copper_2225 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .paragraph-2dbb {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hover_action_52db {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .wrapper-up-f12c,
  .advanced-a372,
  .soft-82c3,
  .wrapper_ea5b,
  .table_b9a0,
  .outline_dark_0b1f {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .wrapper-up-f12c table,
  .advanced-a372 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .slider-9e1e {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .easy-0511 {
    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;
  }

  .over_bec4 {
    font-size: 1.25rem !important;
  }

  .orange-06c2 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .fresh_43aa {
    position: fixed;
  }

  .gold_0258 {
    padding: 0.625rem 0;
  }

  .main-9afe img {
    height: 26px;
  }

  .small_9289 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .accordion_c0ee {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .thumbnail-left-5ff3 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .thumbnail-left-5ff3 svg {
    width: 18px;
    height: 18px;
  }

  .thumbnail-left-5ff3 .solid_50a0 {
    font-size: 0.7rem;
  }

  .thumbnail-left-5ff3 .overlay-2a23 {
    font-size: 0.65rem;
  }

  .pressed-c909,
  .aside-warm-b015 {
    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, .easy-0511, .media-67ea, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .right_85a6 {
    padding: 1rem;
  }

  .over-5f06 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .list_bd63 {
    padding: 0.875rem;
  }

  .gallery_163f {
    font-size: 1.25rem;
  }

  .highlight-ee9d .paragraph_glass_48a4 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .orange-06c2 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .paragraph_glass_48a4 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .form-376a {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .item-pressed-24b2 {
    padding: 1rem;
  }

  .message_bright_11a7 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .image_short_f4f8,
  .tooltip_smooth_ebdb,
  .primary_inner_6f03,
  .gas-01c9 {
    padding: 1rem;
  }
}

@media print {
  .fresh_43aa,
  .simple-af4e,
  .first_a537,
  .paragraph_glass_48a4,
  .row-8704 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .easy-0511 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.new-1f8b {
  margin-bottom: 3rem;
  text-align: center;
}

.over_bec4 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.panel_f0b9 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.gold-e75f,
.thick-9dba {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.paper_5dd9 {
  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;
}

.paper_5dd9:hover {
  transform: translateY(-5px);
}

.paper_5dd9 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.paper_5dd9 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.hero-6ecd {
  margin: 3rem 0;
}

.wide-4d3a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.message_red_b3a5 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.message_red_b3a5:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.background_c683 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.footer_up_c682 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.logo-efd8 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.media-a91b {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.tabs_hovered_72d1 {
  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;
}

.tabs_hovered_72d1:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.tabs_hovered_72d1.gold_a9f0 {
  border-left: 4px solid var(--primary-color);
}

.iron-40ac {
  flex-shrink: 0;
}

.iron-40ac svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.under_cd56 {
  flex: 1;
}

.under_cd56 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.stone-2ffe {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.panel-e8bd,
.gas-d71f,
.focused-7718 {
  margin-bottom: 1.5rem;
}

.panel-e8bd h4,
.gas-d71f h4,
.focused-7718 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.panel-e8bd ul,
.gas-d71f ul,
.focused-7718 ul {
  list-style: none;
  padding: 0;
}

.panel-e8bd li,
.gas-d71f li,
.focused-7718 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.panel-e8bd li:before,
.gas-d71f li:before,
.focused-7718 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.logo_5ad6 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.logo_5ad6 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;
}

.logo_5ad6 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.chip_74b8 { margin: 2rem 0; }
.mini-6f2a { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.mini-6f2a h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.wrapper_red_8685 p { margin-bottom: 1rem; line-height: 1.7; }
.wrapper_red_8685 strong { color: var(--text-primary); }
.wrapper_red_8685 ul { list-style: none; padding-left: 0; }
.wrapper_red_8685 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.wrapper_red_8685 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.container-advanced-34da { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.tiny-3b6e { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.tiny-3b6e:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.secondary_blue_fbd8 { font-size: 3rem; margin-bottom: 1rem; }
.tiny-3b6e h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.tiny-3b6e p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.menu_d659 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.menu_d659 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.basic_b6ed { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.badge_9650 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.green-ad2b { text-align: center; }
.right_5da9 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.modal-31a3 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.border_dirty_5493 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.media-dc85 { margin: 2rem 0; }
.caption-808a { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.caption-808a h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.caption-808a p, .caption-808a ul { line-height: 1.7; }
.caption-808a ul { list-style: none; padding-left: 0; }
.caption-808a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.caption-808a ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.block-current-77de { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.article-green-3f2e { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.selected-6df5 { text-align: center; }
.grid_47d2 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.orange_57f9 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.overlay_4e14 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.menu-tiny-83de { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.next-bf44 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.next-bf44:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.next-bf44 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.next-bf44 p, .next-bf44 ul { line-height: 1.7; }
.next-bf44 ul { list-style: none; padding-left: 0; }
.next-bf44 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.next-bf44 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: eb3a */
.phantom-card-x8 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.1;
}
