/* ============================================
   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 */
.banner-stale-6283 p,
.picture-da1e,
.up-7a26,
.active_35e0,
.first-31ed,
.slider_stale_0d9e,
.module_current_512d,
.mask_2c8b {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.layout-ca30 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.layout-ca30 > *,
.button-7dae,
.banner-stale-6283,
.border-center-427e {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .layout-ca30 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .layout-ca30 {
    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 === */
.description-yellow-4b11 {
  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 */
.description-yellow-4b11.label-center-a784 {
  box-shadow: var(--shadow-md);
}

.down-2143 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.mask-first-cc5d img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.image-c2b0 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.paper_fcb2 {
  display: none;
}

/* Hide mobile actions on desktop */
.description-1a3e {
  display: none;
}

.badge-top-fedd a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.badge-top-fedd a:hover,
.badge-top-fedd a.fn-active-e828 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.feature-9e9b {
  margin-left: 1rem;
}

.column-gas-1111 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.primary-middle-0aae,
.slider-06c4 {
  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;
}

.primary-middle-0aae {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.primary-middle-0aae: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;
}

.slider-06c4 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.slider-06c4: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;
}

.primary-middle-0aae svg,
.slider-06c4 svg {
  flex-shrink: 0;
}

.tabs-8b0c {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.black-9339 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.black-9339::before,
.black-9339::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.black-9339::before {
  top: -7px;
}

.black-9339::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.up-4057 {
  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 === */
.summary_plasma_e772 {
  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);
}

.cold_5fec {
  margin: 0 0 2rem;
  text-align: center;
}

.chip-1a2a {
  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;
}

.chip-1a2a:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.panel-1558 {
  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);
}

.panel-1558 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.banner-rough-fac8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.button_copper_0b8a {
  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;
}

.button_copper_0b8a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.input_lite_a9ec {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.highlight_light_7fc9 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.title-first-ea08 {
  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);
}

.title-first-ea08 .message_huge_f586 {
  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;
}

.title-first-ea08 .message_huge_f586 svg {
  flex-shrink: 0;
}

.title-first-ea08 .table-1f4d {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.title-first-ea08 .table-1f4d: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);
}

.title-first-ea08 .feature_c0bb {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.title-first-ea08 .feature_c0bb: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) {
  .summary_plasma_e772 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .chip-1a2a {
    max-width: 100%;
  }

  .banner-rough-fac8 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .button_copper_0b8a {
    padding: 1rem;
  }

  .input_lite_a9ec {
    font-size: 1.5rem;
  }

  .highlight_light_7fc9 {
    font-size: 0.75rem;
  }

  .panel-1558 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .title-first-ea08 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .title-first-ea08 .message_huge_f586 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .banner-rough-fac8 {
    grid-template-columns: 1fr;
  }
}

.media_wide_c10b {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.progress_first_012e {
  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 === */
.panel_aaf8 {
  margin-bottom: 2.5rem;
}

.badge_71c9 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.media_wide_c10b {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.preview_pressed_343a {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.basic-23d3 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.video_plasma_0fbb {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tertiary_iron_b9a1 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.frame-484f {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.logo-silver-ed4c {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.module-51bc {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.module-51bc svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.light_a3ac {
  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);
}

.cool_83f0 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.filter-under-e14e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.inner-2d47 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.fixed_65b8 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.table_fixed_21e4 {
  display: grid;
  gap: 1rem;
}

.dirty_f40c {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.mask_5ae0 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.title-motion-1eee {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.widget_upper_12c0 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.middle-041c {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.warm_5dee {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.warm_5dee p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.picture-da1e {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.heading-iron-5f3f {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.plasma_9697 {
  display: grid;
  gap: 2rem;
}

.fixed_abb5 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.basic-23d3 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.preview_pressed_343a {
  flex: 1;
}

.tertiary_iron_b9a1 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.tertiary_iron_b9a1 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.title-bottom-e517 {
  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;
}

.frame-484f {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.mask-huge-801b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.mask-huge-801b span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.center_e076 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.center_e076 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.block_wood_c435 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.block_wood_c435 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.block_wood_c435 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.block_wood_c435 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.secondary_hard_e16a {
  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 === */
.outer_49da {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.carousel-cold-94de {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.hover-0eae {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pagination_dcaf h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.pagination_dcaf ol {
  list-style: none;
  counter-reset: toc-counter;
}

.pagination_dcaf ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.pagination_dcaf 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;
}

.pagination_dcaf ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.pagination_dcaf ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.banner-stale-6283 {
  padding: 3rem 0 5rem;
}

.border-center-427e {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.border-center-427e.pro-f277 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.up-7a26 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.widget_a837 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.short_1a7e {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.short_1a7e h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.badge_77b9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.overlay-old-410a {
  text-align: center;
}

.video-short-f984 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.iron_5090 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.thumbnail-hot-4e1e {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.slider_stale_0d9e {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.active_35e0 {
  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;
}

.active_35e0 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.active_35e0:hover {
  box-shadow: var(--shadow-lg);
}

.active_35e0.up_601e {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.active_35e0 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.active_35e0 ul {
  margin: 1rem 0;
}

.active_35e0 li {
  margin-bottom: 0.75rem;
}

.video_pro_ec01 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.layout_liquid_bd3c {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.layout_liquid_bd3c a {
  font-weight: 600;
}

/* === Data Tables === */
.table_64f0 {
  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;
}

.table_64f0 table {
  width: 100%;
  min-width: 600px;
}

.table_64f0 thead {
  background-color: var(--primary-color);
  color: white;
}

.table_64f0 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.table_64f0 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.table_64f0 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.table_64f0 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.modal_fbd7 {
  list-style: none;
  margin: 1.5rem 0;
}

.modal_fbd7 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.modal_fbd7 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.last_131d::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-e828::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 === */
.orange_e27a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.list_pro_2c94 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.list_pro_2c94 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.list_pro_2c94 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.list_pro_2c94 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.orange_e27a blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.module_current_512d {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.module_current_512d::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.pagination_22a4 {
  position: relative;
  margin-bottom: 3rem;
}

.photo_db7d {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.photo_db7d .pink-506f {
  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;
}

.overlay_0f3f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.overlay_0f3f h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.overlay_0f3f ul {
  margin: 1rem 0;
}

.overlay_0f3f li {
  margin-bottom: 0.75rem;
}

.gallery_fa83 {
  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_e014 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.box_e014 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.bright-50d6 {
  list-style: none;
  margin: 1.5rem 0;
}

.bright-50d6 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.bright-50d6 a {
  font-weight: 600;
}

.description-2a3d {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.mask_2c8b {
  margin: 2.5rem 0;
}

.sort-ddf7 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s ease;
}

.sort-ddf7:hover {
  box-shadow: var(--shadow-lg);
}

.sort-ddf7.element_bottom_6226 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.next-bed0 {
  flex-shrink: 0;
}

.next-bed0 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);
}

.disabled_7754 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.last-0658,
.gas_b1d8,
.brown-2fe5 {
  width: 100%;
  margin: 1.5rem 0;
}

.overlay_f8bf {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.overlay_f8bf strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.layout-5520 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.layout-5520 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.main_a242 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.main_a242 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.title_current_4df3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.accent_1f68 {
  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;
}

.accent_1f68:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.accent_1f68.popup_black_1182 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.accent_1f68 .banner_lower_6338 {
  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;
}

.accent_1f68 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.menu_23ca {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.tooltip_23c1 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.tooltip_23c1 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.search-iron-bad4 {
  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 === */
.message_huge_f586 {
  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;
}

.table-1f4d {
  background-color: var(--primary-color);
  color: white;
}

.table-1f4d:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.feature_c0bb {
  background-color: var(--text-secondary);
  color: white;
}

.feature_c0bb:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.slow_79e4 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.slow_79e4:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.glass-9262 {
  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;
}

.glass-9262:hover {
  background-color: var(--primary-dark);
}

.tabs_129f {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.wide_68c8 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.motion-496d {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.dropdown_center_3fac {
  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 === */
.complex-8f14 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.main-old-065d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.main-old-065d h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.border-last-f126 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.photo-dynamic-aa18 {
  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;
}

.carousel_256b {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.pro_6bb6 {
  list-style: none;
  counter-reset: rank-counter;
}

.pro_6bb6 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.pro_6bb6 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;
}

.gallery-outer-cf8d {
  list-style: none;
}

.gallery-outer-cf8d li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.title_4e75 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.heading-e272 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.heading-e272 .shade_ec7b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.heading-e272 .dim_9a93 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.wide_5f10 {
  margin-top: 3rem;
}

.status_e395 {
  width: 100%;
}

.carousel_58e8 {
  background-color: #fef3c7;
}

.notice-dc94 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.active-1f79 {
  margin: 3rem 0;
}

.icon_next_ac49 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.hover-fresh-439a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.hover-fresh-439a:hover {
  box-shadow: var(--shadow-lg);
}

.hover-fresh-439a.menu_0fc4 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.silver_3506 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.picture_slow_5a3f strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.picture_slow_5a3f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.gallery-882c {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hover-fresh-439a blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.black-2939 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.active-fe6f {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.grid_mini_6d4a {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.column_1efe {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.article-8e1a {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.hard-0d1c {
  margin-top: 1rem;
}

/* === FAQ Section === */
.pagination_soft_f42d {
  max-width: 900px;
  margin: 0 auto;
}

.info_wood_5824 {
  margin: 2rem 0;
}

.dropdown-warm-2619 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.dropdown-warm-2619 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.dropdown-warm-2619 summary::-webkit-details-marker {
  display: none;
}

.dropdown-warm-2619 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.highlight_red_91fe {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.dropdown-warm-2619[open] .highlight_red_91fe {
  transform: rotate(45deg);
}

.caption_ff58 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.caption_ff58 p:last-child {
  margin-bottom: 0;
}

.info-4c6d {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.wrapper-97dc {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.pagination_d7ce {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.pagination_d7ce p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.pagination_d7ce .message_huge_f586 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.notification_stone_3c30 {
  max-width: 900px;
  margin: 0 auto;
}

.tertiary_5029 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.widget_6adb {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.widget_6adb.fn-success-e828 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.banner_7e35 {
  font-size: 3rem;
  line-height: 1;
}

.hot-a055 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.logo-basic-e8d2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.module-63dd,
.title_current_f4ef {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.module-63dd h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.title_current_f4ef h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.paragraph-b4b6,
.component-7e87 {
  margin: 1.5rem 0;
}

.paragraph-b4b6 li,
.component-7e87 li {
  margin-bottom: 1rem;
}

.layout-d326 {
  margin: 3rem 0;
}

.liquid-7007 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.liquid-7007 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.liquid-7007 ol {
  margin: 1rem 0;
}

.liquid-7007 li {
  margin-bottom: 0.75rem;
}

.red_e4c6 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.progress-down-b7bf {
  margin: 2rem 0;
}

.notification-narrow-a340 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.dropdown_b46c {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.button-clean-ed20 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.stale-4332 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.dropdown_active_1deb {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.surface-yellow-457a {
  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;
}

.surface-yellow-457a img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.video_plasma_0fbb {
  flex: 1;
}

.video_plasma_0fbb h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.element_bronze_8ddf {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.dropdown-thick-093b p {
  margin-bottom: 1rem;
}

.modal_0f3b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.search-inner-9993 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.black_61e7 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.black_61e7 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.pro-8f44 h3 {
  margin-bottom: 1.5rem;
}

.logo-c028 {
  display: grid;
  gap: 2rem;
}

.status_030e {
  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;
}

.status_030e img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.status_030e h4 {
  margin: 0 0 0.25rem;
}

.status_030e p {
  margin: 0;
  font-size: 0.9375rem;
}

.hover-90da {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.up-ae32 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.up-ae32 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.up-ae32 ul {
  margin: 1.5rem 0;
}

.up-ae32 li {
  margin-bottom: 0.75rem;
}

.huge-3a3a {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.overlay_90b9 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.lite-d9ab {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.notice-blue-773d h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.notice-blue-773d p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.article-pro-19f2 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.article-pro-19f2 a {
  color: rgba(255, 255, 255, 0.8);
}

.down-c98e {
  list-style: none;
}

.down-c98e li {
  margin-bottom: 0.75rem;
}

.down-c98e a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.down-c98e a:hover {
  color: white;
}

.upper-abe1 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.title_6cbe {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.old-33e9 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.caption-0c6d {
  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-5ddd {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .layout-ca30 {
    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;
  }

  .sidebar-40e8 {
    font-size: 1.5rem !important;
  }

  .badge_71c9 {
    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 */
  .active_35e0,
  .first-31ed,
  .overlay_0f3f,
  .disabled_7754,
  .silver_3506,
  .hover-fresh-439a,
  .caption_ff58,
  .panel-1558,
  .picture-da1e,
  .up-7a26 {
    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 */
  .media_wide_c10b {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .preview_pressed_343a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .basic-23d3 {
    flex-shrink: 0;
  }

  .video_plasma_0fbb {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .tertiary_iron_b9a1,
  .frame-484f {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .frame-484f {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .image-c2b0 {
    display: none;
  }

  /* Show mobile actions */
  .description-1a3e {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .center_5e47 {
    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;
  }

  .center_5e47 svg {
    flex-shrink: 0;
  }

  .center_5e47 .hidden-center-cfed {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .center_5e47 .modal_26f9 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .white-bfea {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .steel_7bc3 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .center_5e47:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .paper_fcb2 {
    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;
  }

  .paper_fcb2.fn-active-e828 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .paper_fcb2 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .paper_fcb2 li:last-child {
    border-bottom: none;
  }

  .paper_fcb2 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .badge-top-fedd {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-height: calc(100vh - 65px);
    overflow-y: auto;
    gap: 0;
  }

  .badge-top-fedd li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .badge-top-fedd li:last-child {
    border-bottom: none;
  }

  .badge-top-fedd a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .feature-9e9b {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .column-gas-1111 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .primary-middle-0aae,
  .slider-06c4 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .primary-middle-0aae {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .slider-06c4 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .badge-top-fedd.fn-active-e828 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .tabs-8b0c {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .description-yellow-4b11 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .down-2143 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .up-4057 {
    margin-top: 0;
  }

  /* Hero section */
  .up-4057 {
    padding: 2rem 0 1.5rem;
  }

  .badge_71c9 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .picture-da1e {
    font-size: 1rem;
  }

  /* Hero brand image */
  .summary_plasma_e772 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .chip-1a2a {
    max-width: 100%;
    border-radius: 8px;
  }

  .banner-rough-fac8 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .button_copper_0b8a {
    padding: 1rem;
  }

  .input_lite_a9ec {
    font-size: 1.5rem;
  }

  .highlight_light_7fc9 {
    font-size: 0.75rem;
  }

  .panel-1558 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .title-first-ea08 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .title-first-ea08 .message_huge_f586 {
    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 */
  .hover-0eae {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .sort-ddf7 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .next-bed0 {
    margin-bottom: 1rem;
  }

  /* Author */
  .fixed_abb5 {
    flex-direction: column;
  }

  .surface-yellow-457a {
    flex-direction: column;
  }

  /* Quotes */
  .silver_3506 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .logo-basic-e8d2 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .stale-4332 {
    flex-direction: column;
  }

  .stale-4332 .message_huge_f586 {
    width: 100%;
  }

  /* Version comparison */
  .title_current_4df3 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .complex-8f14 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .lite-d9ab {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .old-33e9 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .table_64f0,
  .gas_b1d8,
  .column_pro_4a14,
  .status_e395,
  .last-0658,
  .brown-2fe5 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table_64f0 table,
  .gas_b1d8 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .search-iron-bad4 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .layout-ca30 {
    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;
  }

  .sidebar-40e8 {
    font-size: 1.25rem !important;
  }

  .badge_71c9 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .description-yellow-4b11 {
    position: fixed;
  }

  .down-2143 {
    padding: 0.625rem 0;
  }

  .mask-first-cc5d img {
    height: 26px;
  }

  .badge-top-fedd {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .paper_fcb2 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .center_5e47 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .center_5e47 svg {
    width: 18px;
    height: 18px;
  }

  .center_5e47 .hidden-center-cfed {
    font-size: 0.7rem;
  }

  .center_5e47 .modal_26f9 {
    font-size: 0.65rem;
  }

  .primary-middle-0aae,
  .slider-06c4 {
    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, .layout-ca30, .button-7dae, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .summary_plasma_e772 {
    padding: 1rem;
  }

  .banner-rough-fac8 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .button_copper_0b8a {
    padding: 0.875rem;
  }

  .input_lite_a9ec {
    font-size: 1.25rem;
  }

  .title-first-ea08 .message_huge_f586 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .badge_71c9 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .message_huge_f586 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .tabs_129f {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .sort-ddf7 {
    padding: 1rem;
  }

  .next-bed0 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .active_35e0,
  .surface-under-2b3e,
  .filter-46bb,
  .highlight_b51a {
    padding: 1rem;
  }
}

@media print {
  .description-yellow-4b11,
  .outer_49da,
  .tabs-8b0c,
  .message_huge_f586,
  .overlay_90b9 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .layout-ca30 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.upper_90ee {
  margin-bottom: 3rem;
  text-align: center;
}

.sidebar-40e8 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.accent_0f33 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.chip-focused-5c5d,
.title-2a83 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.status_535f {
  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;
}

.status_535f:hover {
  transform: translateY(-5px);
}

.status_535f strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.status_535f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.filter-purple-61a5 {
  margin: 3rem 0;
}

.panel_last_f010 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.active_9844 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.active_9844:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.modal-01ff {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.bronze_6f5b {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.silver-a383 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.hovered-b0c6 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.tooltip-fast-96d1 {
  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;
}

.tooltip-fast-96d1:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.tooltip-fast-96d1.footer_inner_5c18 {
  border-left: 4px solid var(--primary-color);
}

.breadcrumb-056d {
  flex-shrink: 0;
}

.breadcrumb-056d svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.banner-south-759e {
  flex: 1;
}

.banner-south-759e h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.article-292f {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.dirty_8e2b,
.search_dynamic_0a99,
.inner_fe24 {
  margin-bottom: 1.5rem;
}

.dirty_8e2b h4,
.search_dynamic_0a99 h4,
.inner_fe24 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dirty_8e2b ul,
.search_dynamic_0a99 ul,
.inner_fe24 ul {
  list-style: none;
  padding: 0;
}

.dirty_8e2b li,
.search_dynamic_0a99 li,
.inner_fe24 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.dirty_8e2b li:before,
.search_dynamic_0a99 li:before,
.inner_fe24 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.next_cfac {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.next_cfac 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;
}

.next_cfac a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.status-cec6 { margin: 2rem 0; }
.medium_a2ac { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.medium_a2ac h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.logo-paper-cd3e p { margin-bottom: 1rem; line-height: 1.7; }
.logo-paper-cd3e strong { color: var(--text-primary); }
.logo-paper-cd3e ul { list-style: none; padding-left: 0; }
.logo-paper-cd3e ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.logo-paper-cd3e ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.card_5dee { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.logo-slow-e99c { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.logo-slow-e99c:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.item-ccfb { font-size: 3rem; margin-bottom: 1rem; }
.logo-slow-e99c h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.logo-slow-e99c p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.chip-0320 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.chip-0320 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.hot-4a15 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.pattern-hovered-be85 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.module-motion-ea01 { text-align: center; }
.icon_first_5cec { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.box_db25 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.accent_purple_dbc1 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.footer_beb6 { margin: 2rem 0; }
.light-f982 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.light-f982 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.light-f982 p, .light-f982 ul { line-height: 1.7; }
.light-f982 ul { list-style: none; padding-left: 0; }
.light-f982 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.light-f982 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.top_1b1e { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.notice_hard_594e { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.glass-5813 { text-align: center; }
.frame_cool_75a4 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.message-hard-811f { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.hot-943b { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.carousel-over-df16 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.border_48d2 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.border_48d2:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.border_48d2 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.border_48d2 p, .border_48d2 ul { line-height: 1.7; }
.border_48d2 ul { list-style: none; padding-left: 0; }
.border_48d2 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.border_48d2 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 76bb */
.promo-block-b8 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.3;
}
