/* ============================================
   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 */
.plasma_9012 p,
.secondary-8cfd,
.status-6a9e,
.list-large-c9b3,
.hidden_2ca3,
.component-6f0d,
.dark_8eaf,
.item-wood-b90b {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.info-c105 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.info-c105 > *,
.header_south_660f,
.plasma_9012,
.liquid_47a1 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .info-c105 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .info-c105 {
    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 === */
.gas_2933 {
  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 */
.gas_2933.widget_orange_4305 {
  box-shadow: var(--shadow-md);
}

.sidebar-fd64 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.link_fast_d06f img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.logo_2223 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.tertiary-silver-17ab {
  display: none;
}

/* Hide mobile actions on desktop */
.row-9740 {
  display: none;
}

.huge_5022 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.huge_5022 a:hover,
.huge_5022 a.fn-active-628d {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.dim_d738 {
  margin-left: 1rem;
}

.column-045c {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.info_middle_4109,
.layout-fluid-7261 {
  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;
}

.info_middle_4109 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.info_middle_4109: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;
}

.layout-fluid-7261 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.layout-fluid-7261: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;
}

.info_middle_4109 svg,
.layout-fluid-7261 svg {
  flex-shrink: 0;
}

.advanced_7234 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.prev-97b8 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.prev-97b8::before,
.prev-97b8::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.prev-97b8::before {
  top: -7px;
}

.prev-97b8::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.form-liquid-5afd {
  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 === */
.column_new_15a1 {
  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);
}

.active_e339 {
  margin: 0 0 2rem;
  text-align: center;
}

.list-b60d {
  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;
}

.list-b60d:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.form-6dcd {
  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);
}

.form-6dcd strong {
  color: var(--primary-color);
  font-weight: 700;
}

.module-green-c584 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.tertiary-black-0302 {
  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;
}

.tertiary-black-0302:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.content-right-e7b3 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.main-middle-5b15 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.detail-bottom-54d8 {
  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);
}

.detail-bottom-54d8 .text_6d4c {
  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;
}

.detail-bottom-54d8 .text_6d4c svg {
  flex-shrink: 0;
}

.detail-bottom-54d8 .tag-dirty-69d0 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.detail-bottom-54d8 .tag-dirty-69d0: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);
}

.detail-bottom-54d8 .lite_cd57 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.detail-bottom-54d8 .lite_cd57: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) {
  .column_new_15a1 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .list-b60d {
    max-width: 100%;
  }

  .module-green-c584 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .tertiary-black-0302 {
    padding: 1rem;
  }

  .content-right-e7b3 {
    font-size: 1.5rem;
  }

  .main-middle-5b15 {
    font-size: 0.75rem;
  }

  .form-6dcd {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .detail-bottom-54d8 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .detail-bottom-54d8 .text_6d4c {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .module-green-c584 {
    grid-template-columns: 1fr;
  }
}

.filter_steel_b833 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.glass-4163 {
  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 === */
.complex-7927 {
  margin-bottom: 2.5rem;
}

.glass_8704 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.filter_steel_b833 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.up-f88f {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.overlay_glass_19d6 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.thumbnail_new_fa0b {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.east-83b7 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.pattern_copper_2d60 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.footer-454c {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.background_purple_b03f {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.background_purple_b03f svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.item-b9d5 {
  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);
}

.popup_prev_5283 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.media-black-2012 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.modal_rough_74ad {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.picture_f83e {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.element_69a2 {
  display: grid;
  gap: 1rem;
}

.texture_narrow_47a8 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.highlight-prev-a6ce {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.text_1889 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.filter_lower_f031 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.breadcrumb_action_1367 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.dirty-3d5d {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.dirty-3d5d p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.secondary-8cfd {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.dynamic_6ef8 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.frame-wood-67ae {
  display: grid;
  gap: 2rem;
}

.modal-91ae {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.overlay_glass_19d6 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.up-f88f {
  flex: 1;
}

.east-83b7 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.east-83b7 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.south-6fac {
  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;
}

.pattern_copper_2d60 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.grid-plasma-59c5 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.grid-plasma-59c5 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.small_53c8 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.small_53c8 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.basic_0258 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.basic_0258 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.basic_0258 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.basic_0258 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.label_middle_1e8a {
  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 === */
.description_93a8 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.up-baa8 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.gallery-east-26b9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.modal-up-55d9 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.modal-up-55d9 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.modal-up-55d9 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.modal-up-55d9 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;
}

.modal-up-55d9 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.modal-up-55d9 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.plasma_9012 {
  padding: 3rem 0 5rem;
}

.liquid_47a1 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.liquid_47a1.layout-d5d7 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.status-6a9e {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.image_up_1939 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.block-outer-5cf1 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.block-outer-5cf1 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.tag_advanced_aa9d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.middle_a4cd {
  text-align: center;
}

.modal-right-5e5c {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tall-c46e {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.summary-hard-7284 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.component-6f0d {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.list-large-c9b3 {
  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;
}

.list-large-c9b3 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.list-large-c9b3:hover {
  box-shadow: var(--shadow-lg);
}

.list-large-c9b3.status-e76c {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.list-large-c9b3 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.list-large-c9b3 ul {
  margin: 1rem 0;
}

.list-large-c9b3 li {
  margin-bottom: 0.75rem;
}

.button_pro_c54f {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.avatar_e44e {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.avatar_e44e a {
  font-weight: 600;
}

/* === Data Tables === */
.black-c388 {
  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;
}

.black-c388 table {
  width: 100%;
  min-width: 600px;
}

.black-c388 thead {
  background-color: var(--primary-color);
  color: white;
}

.black-c388 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.black-c388 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.black-c388 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.black-c388 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.purple-afe1 {
  list-style: none;
  margin: 1.5rem 0;
}

.purple-afe1 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.purple-afe1 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.under_85fd::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-628d::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 === */
.main-671d {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.cool_a440 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.cool_a440 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.cool_a440 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.cool_a440 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.main-671d blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.dark_8eaf {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.dark_8eaf::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.header_narrow_c763 {
  position: relative;
  margin-bottom: 3rem;
}

.module-001d {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.module-001d .motion-f97b {
  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;
}

.focused_9dc3 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.focused_9dc3 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.focused_9dc3 ul {
  margin: 1rem 0;
}

.focused_9dc3 li {
  margin-bottom: 0.75rem;
}

.thumbnail_2639 {
  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 === */
.outer_2004 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.outer_2004 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.stone_f4e0 {
  list-style: none;
  margin: 1.5rem 0;
}

.stone_f4e0 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.stone_f4e0 a {
  font-weight: 600;
}

.description_921b {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.item-wood-b90b {
  margin: 2.5rem 0;
}

.west_3e0d {
  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;
}

.west_3e0d:hover {
  box-shadow: var(--shadow-lg);
}

.west_3e0d.content_fast_c8e0 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.disabled-0d33 {
  flex-shrink: 0;
}

.disabled-0d33 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_7c80 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.secondary-down-2a12,
.bronze-ae33,
.list-2b6f {
  width: 100%;
  margin: 1.5rem 0;
}

.border_smooth_1104 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.border_smooth_1104 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.overlay-over-d923 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.overlay-over-d923 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.media-7899 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.media-7899 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.grid-0829 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.primary-white-1c2f {
  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;
}

.primary-white-1c2f:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.primary-white-1c2f.icon_bc8b {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.primary-white-1c2f .button-a9bf {
  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;
}

.primary-white-1c2f h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.new_6c64 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.element-86db {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.element-86db label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.preview_a123 {
  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 === */
.text_6d4c {
  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;
}

.tag-dirty-69d0 {
  background-color: var(--primary-color);
  color: white;
}

.tag-dirty-69d0:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.lite_cd57 {
  background-color: var(--text-secondary);
  color: white;
}

.lite_cd57:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.rough-8ac1 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.rough-8ac1:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.layout_smooth_7355 {
  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;
}

.layout_smooth_7355:hover {
  background-color: var(--primary-dark);
}

.block-pro-f874 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.preview_rough_9046 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.thick-0aa9 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.overlay_e3f3 {
  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 === */
.header_f98b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.dropdown_14d2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.dropdown_14d2 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.module_0912 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.up_510f {
  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;
}

.alert-6e63 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.disabled_eaee {
  list-style: none;
  counter-reset: rank-counter;
}

.disabled_eaee li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.disabled_eaee 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;
}

.pagination_in_74c8 {
  list-style: none;
}

.pagination_in_74c8 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.accent-black-fe05 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.cold_e430 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cold_e430 .primary_short_5575 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.cold_e430 .mini_8ee0 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.sidebar_wide_b4d9 {
  margin-top: 3rem;
}

.media-yellow-8751 {
  width: 100%;
}

.feature_prev_ebce {
  background-color: #fef3c7;
}

.easy-de96 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.stale-b558 {
  margin: 3rem 0;
}

.short_08be {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.row-east-b1af {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.row-east-b1af:hover {
  box-shadow: var(--shadow-lg);
}

.row-east-b1af.highlight-9941 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.backdrop-fd0c {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.gallery_light_8efa strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.gallery_light_8efa span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.message_green_8037 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.row-east-b1af blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.secondary_e28d {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.module_blue_b4b9 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.nav_b035 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.input_advanced_0f0a {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.widget-0f0c {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.input-complex-38d0 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.box-action-cde5 {
  max-width: 900px;
  margin: 0 auto;
}

.gallery-light-f0cc {
  margin: 2rem 0;
}

.popup-56ab {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.popup-56ab summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.popup-56ab summary::-webkit-details-marker {
  display: none;
}

.popup-56ab summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.text_47cb {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.popup-56ab[open] .text_47cb {
  transform: rotate(45deg);
}

.bottom-f13f {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.bottom-f13f p:last-child {
  margin-bottom: 0;
}

.main-230a {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.grid-2dd8 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.header-black-77d0 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.header-black-77d0 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.header-black-77d0 .text_6d4c {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.hover-ab0d {
  max-width: 900px;
  margin: 0 auto;
}

.advanced_2c03 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tabs_fast_fc2c {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.tabs_fast_fc2c.fn-success-628d {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.content_a975 {
  font-size: 3rem;
  line-height: 1;
}

.hero-5d98 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.footer-fast-1e7d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.light_f5da,
.active_a5da {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.light_f5da h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.active_a5da h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.old_5016,
.shadow_huge_2600 {
  margin: 1.5rem 0;
}

.old_5016 li,
.shadow_huge_2600 li {
  margin-bottom: 1rem;
}

.header-pink-70d6 {
  margin: 3rem 0;
}

.north-4952 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.north-4952 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.north-4952 ol {
  margin: 1rem 0;
}

.north-4952 li {
  margin-bottom: 0.75rem;
}

.description-prev-b8fe {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.tooltip-selected-9ddd {
  margin: 2rem 0;
}

.primary-94af {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.panel_71c7 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.list-simple-e6ff {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.box_cd00 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.column_large_5c20 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.gradient_in_be3e {
  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;
}

.gradient_in_be3e img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.thumbnail_new_fa0b {
  flex: 1;
}

.thumbnail_new_fa0b h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.message-focused-e8b5 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.smooth-d9c6 p {
  margin-bottom: 1rem;
}

.gold-26d1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.module-top-aec4 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.header-medium-f202 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.header-medium-f202 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.container_5222 h3 {
  margin-bottom: 1.5rem;
}

.widget-over-a536 {
  display: grid;
  gap: 2rem;
}

.pattern_first_a6c6 {
  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;
}

.pattern_first_a6c6 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.pattern_first_a6c6 h4 {
  margin: 0 0 0.25rem;
}

.pattern_first_a6c6 p {
  margin: 0;
  font-size: 0.9375rem;
}

.notice_aa60 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.east_b274 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.east_b274 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.east_b274 ul {
  margin: 1.5rem 0;
}

.east_b274 li {
  margin-bottom: 0.75rem;
}

.detail-advanced-b368 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.text-c7d7 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.hero-d286 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.active-hard-e670 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.active-hard-e670 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.modal_a2a7 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.modal_a2a7 a {
  color: rgba(255, 255, 255, 0.8);
}

.tiny-5db7 {
  list-style: none;
}

.tiny-5db7 li {
  margin-bottom: 0.75rem;
}

.tiny-5db7 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.tiny-5db7 a:hover {
  color: white;
}

.grid-038d {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.icon-3004 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.hidden-ee35 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.box_b229 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.gallery-slow-6655 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .info-c105 {
    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;
  }

  .south_dbd9 {
    font-size: 1.5rem !important;
  }

  .glass_8704 {
    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 */
  .list-large-c9b3,
  .hidden_2ca3,
  .focused_9dc3,
  .icon_7c80,
  .backdrop-fd0c,
  .row-east-b1af,
  .bottom-f13f,
  .form-6dcd,
  .secondary-8cfd,
  .status-6a9e {
    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 */
  .filter_steel_b833 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .up-f88f {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .overlay_glass_19d6 {
    flex-shrink: 0;
  }

  .thumbnail_new_fa0b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .east-83b7,
  .pattern_copper_2d60 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .pattern_copper_2d60 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .logo_2223 {
    display: none;
  }

  /* Show mobile actions */
  .row-9740 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .label_center_d5b2 {
    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;
  }

  .label_center_d5b2 svg {
    flex-shrink: 0;
  }

  .label_center_d5b2 .motion_6f87 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .label_center_d5b2 .hero-hovered-903f {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .input_orange_f541 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .label-7ecc {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .label_center_d5b2:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .tertiary-silver-17ab {
    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;
  }

  .tertiary-silver-17ab.fn-active-628d {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .tertiary-silver-17ab li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .tertiary-silver-17ab li:last-child {
    border-bottom: none;
  }

  .tertiary-silver-17ab a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .huge_5022 {
    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;
  }

  .huge_5022 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .huge_5022 li:last-child {
    border-bottom: none;
  }

  .huge_5022 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .dim_d738 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .column-045c {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .info_middle_4109,
  .layout-fluid-7261 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .info_middle_4109 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .layout-fluid-7261 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .huge_5022.fn-active-628d {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .advanced_7234 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .gas_2933 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .sidebar-fd64 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .form-liquid-5afd {
    margin-top: 0;
  }

  /* Hero section */
  .form-liquid-5afd {
    padding: 2rem 0 1.5rem;
  }

  .glass_8704 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .secondary-8cfd {
    font-size: 1rem;
  }

  /* Hero brand image */
  .column_new_15a1 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .list-b60d {
    max-width: 100%;
    border-radius: 8px;
  }

  .module-green-c584 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .tertiary-black-0302 {
    padding: 1rem;
  }

  .content-right-e7b3 {
    font-size: 1.5rem;
  }

  .main-middle-5b15 {
    font-size: 0.75rem;
  }

  .form-6dcd {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .detail-bottom-54d8 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .detail-bottom-54d8 .text_6d4c {
    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 */
  .gallery-east-26b9 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .west_3e0d {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .disabled-0d33 {
    margin-bottom: 1rem;
  }

  /* Author */
  .modal-91ae {
    flex-direction: column;
  }

  .gradient_in_be3e {
    flex-direction: column;
  }

  /* Quotes */
  .backdrop-fd0c {
    flex-direction: column;
  }

  /* Pros/Cons */
  .footer-fast-1e7d {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .box_cd00 {
    flex-direction: column;
  }

  .box_cd00 .text_6d4c {
    width: 100%;
  }

  /* Version comparison */
  .grid-0829 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .header_f98b {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .hero-d286 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hidden-ee35 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .black-c388,
  .bronze-ae33,
  .mini_fbaa,
  .media-yellow-8751,
  .secondary-down-2a12,
  .list-2b6f {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .black-c388 table,
  .bronze-ae33 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .preview_a123 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .info-c105 {
    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;
  }

  .south_dbd9 {
    font-size: 1.25rem !important;
  }

  .glass_8704 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .gas_2933 {
    position: fixed;
  }

  .sidebar-fd64 {
    padding: 0.625rem 0;
  }

  .link_fast_d06f img {
    height: 26px;
  }

  .huge_5022 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .tertiary-silver-17ab {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .label_center_d5b2 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .label_center_d5b2 svg {
    width: 18px;
    height: 18px;
  }

  .label_center_d5b2 .motion_6f87 {
    font-size: 0.7rem;
  }

  .label_center_d5b2 .hero-hovered-903f {
    font-size: 0.65rem;
  }

  .info_middle_4109,
  .layout-fluid-7261 {
    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, .info-c105, .header_south_660f, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .column_new_15a1 {
    padding: 1rem;
  }

  .module-green-c584 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .tertiary-black-0302 {
    padding: 0.875rem;
  }

  .content-right-e7b3 {
    font-size: 1.25rem;
  }

  .detail-bottom-54d8 .text_6d4c {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .glass_8704 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .text_6d4c {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .block-pro-f874 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .west_3e0d {
    padding: 1rem;
  }

  .disabled-0d33 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .list-large-c9b3,
  .accent-dd24,
  .hover-focused-6df6,
  .dim-926e {
    padding: 1rem;
  }
}

@media print {
  .gas_2933,
  .description_93a8,
  .advanced_7234,
  .text_6d4c,
  .text-c7d7 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .info-c105 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.input_09a3 {
  margin-bottom: 3rem;
  text-align: center;
}

.south_dbd9 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.tooltip_hot_c143 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.form_last_bd40,
.footer-full-4dc2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.photo_2e6b {
  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;
}

.photo_2e6b:hover {
  transform: translateY(-5px);
}

.photo_2e6b strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.photo_2e6b span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.cool_92c7 {
  margin: 3rem 0;
}

.header_95a6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.modal-8fc3 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.modal-8fc3:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.background-pressed-42e4 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.wide_a2eb {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.breadcrumb_5c67 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.fluid-05bf {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.smooth_3fce {
  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;
}

.smooth_3fce:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.smooth_3fce.cold_3642 {
  border-left: 4px solid var(--primary-color);
}

.gold_0a14 {
  flex-shrink: 0;
}

.gold_0a14 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.accordion_312f {
  flex: 1;
}

.accordion_312f h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.focus_74be {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.input_hard_875c,
.hard_5bb6,
.south_9871 {
  margin-bottom: 1.5rem;
}

.input_hard_875c h4,
.hard_5bb6 h4,
.south_9871 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.input_hard_875c ul,
.hard_5bb6 ul,
.south_9871 ul {
  list-style: none;
  padding: 0;
}

.input_hard_875c li,
.hard_5bb6 li,
.south_9871 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.input_hard_875c li:before,
.hard_5bb6 li:before,
.south_9871 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.photo_over_7413 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.photo_over_7413 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;
}

.photo_over_7413 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.fluid_15f8 { margin: 2rem 0; }
.footer-c0e7 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.footer-c0e7 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.cool-1b6e p { margin-bottom: 1rem; line-height: 1.7; }
.cool-1b6e strong { color: var(--text-primary); }
.cool-1b6e ul { list-style: none; padding-left: 0; }
.cool-1b6e ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.cool-1b6e ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.surface-south-c00f { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.complex_e82b { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.complex_e82b:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.nav-upper-3a65 { font-size: 3rem; margin-bottom: 1rem; }
.complex_e82b h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.complex_e82b p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.sort_next_1788 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.sort_next_1788 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.list-0b31 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.mask-cold-51de { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.table-last-3c9b { text-align: center; }
.item-571c { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.simple-9058 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.nav-e9c0 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.background_fc20 { margin: 2rem 0; }
.selected-40cc { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.selected-40cc h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.selected-40cc p, .selected-40cc ul { line-height: 1.7; }
.selected-40cc ul { list-style: none; padding-left: 0; }
.selected-40cc ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.selected-40cc ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.thumbnail_left_d043 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.module_cd28 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.backdrop_3b46 { text-align: center; }
.hero_55ba { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.wide_5c6b { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.bottom_f7c8 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.popup_e428 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.light_1fc8 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.light_1fc8:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.light_1fc8 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.light_1fc8 p, .light_1fc8 ul { line-height: 1.7; }
.light_1fc8 ul { list-style: none; padding-left: 0; }
.light_1fc8 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.light_1fc8 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 2e40 */
.shadow-element-c8 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.0;
}
