/* ============================================
   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 */
.chip_west_1ab6 p,
.mask-ac77,
.wrapper_next_3c54,
.medium-e810,
.hover-01c9,
.outline-dark-42ff,
.basic-1b30,
.row_huge_253c {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.grid-bottom-27f2 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.grid-bottom-27f2 > *,
.tertiary_pressed_e9d5,
.chip_west_1ab6,
.video_next_d544 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .grid-bottom-27f2 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .grid-bottom-27f2 {
    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 === */
.shadow_hard_070a {
  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 */
.shadow_hard_070a.accordion_bottom_de4d {
  box-shadow: var(--shadow-md);
}

.wrapper-15b7 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.video_hovered_9ac2 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.carousel_rough_44d3 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.grid-last-26c7 {
  display: none;
}

/* Hide mobile actions on desktop */
.backdrop-63e7 {
  display: none;
}

.out_1627 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.out_1627 a:hover,
.out_1627 a.fn-active-dfae {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.module-smooth-09dc {
  margin-left: 1rem;
}

.in_9eaf {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.description_stone_6cb5,
.input_dim_3082 {
  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;
}

.description_stone_6cb5 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.description_stone_6cb5: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;
}

.input_dim_3082 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.input_dim_3082: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;
}

.description_stone_6cb5 svg,
.input_dim_3082 svg {
  flex-shrink: 0;
}

.list_5e03 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.backdrop-7bca {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.backdrop-7bca::before,
.backdrop-7bca::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.backdrop-7bca::before {
  top: -7px;
}

.backdrop-7bca::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.button-bottom-d866 {
  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 === */
.advanced_65c4 {
  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);
}

.medium-677d {
  margin: 0 0 2rem;
  text-align: center;
}

.tag-hard-963a {
  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;
}

.tag-hard-963a:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.title_b04c {
  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);
}

.title_b04c strong {
  color: var(--primary-color);
  font-weight: 700;
}

.overlay_complex_929c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.cold-cfac {
  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;
}

.cold-cfac:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.picture-40fb {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.input-inner-2c3a {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.gas_e512 {
  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);
}

.gas_e512 .chip-solid-c39e {
  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;
}

.gas_e512 .chip-solid-c39e svg {
  flex-shrink: 0;
}

.gas_e512 .widget_dd31 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.gas_e512 .widget_dd31: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);
}

.gas_e512 .primary-bc29 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.gas_e512 .primary-bc29: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) {
  .advanced_65c4 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .tag-hard-963a {
    max-width: 100%;
  }

  .overlay_complex_929c {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .cold-cfac {
    padding: 1rem;
  }

  .picture-40fb {
    font-size: 1.5rem;
  }

  .input-inner-2c3a {
    font-size: 0.75rem;
  }

  .title_b04c {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .gas_e512 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .gas_e512 .chip-solid-c39e {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .overlay_complex_929c {
    grid-template-columns: 1fr;
  }
}

.list-c2df {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.widget-steel-8857 {
  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 === */
.shade-40c1 {
  margin-bottom: 2.5rem;
}

.static_6555 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.list-c2df {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.top-1dc4 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.shade_east_54ff {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.active-66f3 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tabs-tall-c3fd {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.green_7601 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.dirty_66f1 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.media-532c {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.media-532c svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.sort_8030 {
  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);
}

.outline-mini-a317 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.copper-7ff9 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.alert_hovered_1a69 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.highlight_2d72 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.green-0daf {
  display: grid;
  gap: 1rem;
}

.gradient-outer-f59f {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.primary-85c7 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.tag_brown_d4bd {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.north-71fb {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.primary-3f69 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.basic-61be {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.basic-61be p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.mask-ac77 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.plasma_a38b {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.notice-dark-7f20 {
  display: grid;
  gap: 2rem;
}

.modal-light-0d66 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.shade_east_54ff {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.top-1dc4 {
  flex: 1;
}

.tabs-tall-c3fd {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.tabs-tall-c3fd a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.image_selected_5b83 {
  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;
}

.green_7601 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.grid_5320 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.grid_5320 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.fast_e691 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.fast_e691 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.black_ac8c {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.black_ac8c strong {
  display: block;
  margin-bottom: 0.75rem;
}

.black_ac8c ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.black_ac8c li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.advanced-2736 {
  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 === */
.icon_silver_33a0 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.panel-cd21 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.heading_6074 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.container_dark_568b h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.container_dark_568b ol {
  list-style: none;
  counter-reset: toc-counter;
}

.container_dark_568b ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.container_dark_568b 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;
}

.container_dark_568b ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.container_dark_568b ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.chip_west_1ab6 {
  padding: 3rem 0 5rem;
}

.video_next_d544 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.video_next_d544.info-f6ac {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.wrapper_next_3c54 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.summary-407d {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.preview-orange-77fd {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.preview-orange-77fd h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.texture-5b8b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.hover_7a34 {
  text-align: center;
}

.smooth_b98e {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.summary-top-8a41 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.hover_00ae {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.outline-dark-42ff {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.medium-e810 {
  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;
}

.medium-e810 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.medium-e810:hover {
  box-shadow: var(--shadow-lg);
}

.medium-e810.solid-88ed {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.medium-e810 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.medium-e810 ul {
  margin: 1rem 0;
}

.medium-e810 li {
  margin-bottom: 0.75rem;
}

.picture-solid-8dee {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.breadcrumb-south-b8aa {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.breadcrumb-south-b8aa a {
  font-weight: 600;
}

/* === Data Tables === */
.east_bab7 {
  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;
}

.east_bab7 table {
  width: 100%;
  min-width: 600px;
}

.east_bab7 thead {
  background-color: var(--primary-color);
  color: white;
}

.east_bab7 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.east_bab7 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.east_bab7 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.east_bab7 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.notification_fast_cb3f {
  list-style: none;
  margin: 1.5rem 0;
}

.notification_fast_cb3f li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.notification_fast_cb3f li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.dirty_fb67::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-dfae::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 === */
.sort_4bba {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.button_8705 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.button_8705 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.button_8705 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.button_8705 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.sort_4bba blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.basic-1b30 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.basic-1b30::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.easy_1dee {
  position: relative;
  margin-bottom: 3rem;
}

.mini_1da9 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.mini_1da9 .soft-3016 {
  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;
}

.paragraph-cool-7152 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.paragraph-cool-7152 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.paragraph-cool-7152 ul {
  margin: 1rem 0;
}

.paragraph-cool-7152 li {
  margin-bottom: 0.75rem;
}

.logo_left_8705 {
  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 === */
.small-fb1e {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.small-fb1e h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.status_wood_18d8 {
  list-style: none;
  margin: 1.5rem 0;
}

.status_wood_18d8 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.status_wood_18d8 a {
  font-weight: 600;
}

.element-north-5523 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.row_huge_253c {
  margin: 2.5rem 0;
}

.bottom-c32b {
  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;
}

.bottom-c32b:hover {
  box-shadow: var(--shadow-lg);
}

.bottom-c32b.accordion_b12b {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.text-767d {
  flex-shrink: 0;
}

.text-767d 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);
}

.rough-cfe6 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.active-37e4,
.header_east_e31b,
.header_ff9e {
  width: 100%;
  margin: 1.5rem 0;
}

.progress-basic-c487 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.progress-basic-c487 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.border_2c07 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.border_2c07 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.preview_c491 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.preview_c491 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.nav_full_ceb4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.banner-white-b106 {
  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;
}

.banner-white-b106:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.banner-white-b106.fast-a6d2 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.banner-white-b106 .picture-9524 {
  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;
}

.banner-white-b106 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.row-8e3d {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.mask-3ff8 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.mask-3ff8 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.wrapper_brown_a431 {
  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 === */
.chip-solid-c39e {
  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;
}

.widget_dd31 {
  background-color: var(--primary-color);
  color: white;
}

.widget_dd31:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.primary-bc29 {
  background-color: var(--text-secondary);
  color: white;
}

.primary-bc29:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.wrapper_9136 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.wrapper_9136:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.popup-de3d {
  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;
}

.popup-de3d:hover {
  background-color: var(--primary-dark);
}

.secondary_pro_b233 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.hero_6bfb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.video_brown_5758 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.video-solid-eae6 {
  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 === */
.backdrop-4be8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.photo_liquid_2760 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.photo_liquid_2760 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.info-8172 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.purple_c1d3 {
  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;
}

.title_north_ca11 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.table-up-d06d {
  list-style: none;
  counter-reset: rank-counter;
}

.table-up-d06d li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.table-up-d06d 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;
}

.hard_1fd8 {
  list-style: none;
}

.hard_1fd8 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.progress-upper-4068 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.pagination_7734 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.pagination_7734 .gallery-8c30 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.pagination_7734 .wrapper-20a5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hidden_5638 {
  margin-top: 3rem;
}

.wood-219a {
  width: 100%;
}

.chip_bronze_c0f6 {
  background-color: #fef3c7;
}

.fast-80ca {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.status-wood-1648 {
  margin: 3rem 0;
}

.smooth-89ff {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.glass_58cc {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.glass_58cc:hover {
  box-shadow: var(--shadow-lg);
}

.glass_58cc.rough_c661 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.active-ae5e {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.rough_bf97 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.rough_bf97 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.banner_73a6 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.glass_58cc blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.gradient-cb26 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.accent-de64 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.column-cool-7f0b {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.iron_a06e {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.container_4f5a {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.popup-dark-555e {
  margin-top: 1rem;
}

/* === FAQ Section === */
.basic-1ba5 {
  max-width: 900px;
  margin: 0 auto;
}

.tabs_58e8 {
  margin: 2rem 0;
}

.basic_3cb1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.basic_3cb1 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.basic_3cb1 summary::-webkit-details-marker {
  display: none;
}

.basic_3cb1 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.orange-0546 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.basic_3cb1[open] .orange-0546 {
  transform: rotate(45deg);
}

.picture_narrow_3411 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.picture_narrow_3411 p:last-child {
  margin-bottom: 0;
}

.modal-8241 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.card_action_a22f {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.cold_b492 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.cold_b492 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.cold_b492 .chip-solid-c39e {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.nav_lower_f303 {
  max-width: 900px;
  margin: 0 auto;
}

.new_d4a7 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.warm_face {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.warm_face.fn-success-dfae {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.title_4de2 {
  font-size: 3rem;
  line-height: 1;
}

.layout-fc58 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.wrapper_soft_f987 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.north_4f51,
.fresh_cc94 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.north_4f51 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.fresh_cc94 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.dark-b310,
.search-cool-459b {
  margin: 1.5rem 0;
}

.dark-b310 li,
.search-cool-459b li {
  margin-bottom: 1rem;
}

.east-3e97 {
  margin: 3rem 0;
}

.status_thick_82b1 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.status_thick_82b1 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.status_thick_82b1 ol {
  margin: 1rem 0;
}

.status_thick_82b1 li {
  margin-bottom: 0.75rem;
}

.title-bottom-316f {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.tooltip_liquid_83c3 {
  margin: 2rem 0;
}

.clean_1341 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.logo_ad00 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.progress_639d {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.pagination-d8b8 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.column_stale_7920 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.pattern-plasma-85cd {
  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;
}

.pattern-plasma-85cd img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.active-66f3 {
  flex: 1;
}

.active-66f3 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.over-d888 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.medium_c19a p {
  margin-bottom: 1rem;
}

.preview-bac3 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.popup-5885 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.over-712f {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.over-712f a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.tag-f144 h3 {
  margin-bottom: 1.5rem;
}

.hover_brown_995c {
  display: grid;
  gap: 2rem;
}

.grid-old-85bf {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.grid-old-85bf img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.grid-old-85bf h4 {
  margin: 0 0 0.25rem;
}

.grid-old-85bf p {
  margin: 0;
  font-size: 0.9375rem;
}

.image_0527 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.avatar-new-ff89 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.avatar-new-ff89 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.avatar-new-ff89 ul {
  margin: 1.5rem 0;
}

.avatar-new-ff89 li {
  margin-bottom: 0.75rem;
}

.bright-b0bb {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.pattern_full_446b {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.input_complex_2bee {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.status-d568 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.status-d568 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.message-1989 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.message-1989 a {
  color: rgba(255, 255, 255, 0.8);
}

.mask-slow-a096 {
  list-style: none;
}

.mask-slow-a096 li {
  margin-bottom: 0.75rem;
}

.mask-slow-a096 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.mask-slow-a096 a:hover {
  color: white;
}

.row_upper_e860 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.label-1b8c {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.surface-983a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.tag-2869 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.bright-3032 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .grid-bottom-27f2 {
    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;
  }

  .last-404e {
    font-size: 1.5rem !important;
  }

  .static_6555 {
    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 */
  .medium-e810,
  .hover-01c9,
  .paragraph-cool-7152,
  .rough-cfe6,
  .active-ae5e,
  .glass_58cc,
  .picture_narrow_3411,
  .title_b04c,
  .mask-ac77,
  .wrapper_next_3c54 {
    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 */
  .list-c2df {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .top-1dc4 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .shade_east_54ff {
    flex-shrink: 0;
  }

  .active-66f3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .tabs-tall-c3fd,
  .green_7601 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .green_7601 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .carousel_rough_44d3 {
    display: none;
  }

  /* Show mobile actions */
  .backdrop-63e7 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .banner_44b2 {
    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;
  }

  .banner_44b2 svg {
    flex-shrink: 0;
  }

  .banner_44b2 .message_red_e057 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .banner_44b2 .title_left_a0a0 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .blue-849b {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .green-02bc {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .banner_44b2:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .grid-last-26c7 {
    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;
  }

  .grid-last-26c7.fn-active-dfae {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .grid-last-26c7 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .grid-last-26c7 li:last-child {
    border-bottom: none;
  }

  .grid-last-26c7 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .out_1627 {
    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;
  }

  .out_1627 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .out_1627 li:last-child {
    border-bottom: none;
  }

  .out_1627 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .module-smooth-09dc {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .in_9eaf {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .description_stone_6cb5,
  .input_dim_3082 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .description_stone_6cb5 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .input_dim_3082 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .out_1627.fn-active-dfae {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .list_5e03 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .shadow_hard_070a {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .wrapper-15b7 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .button-bottom-d866 {
    margin-top: 0;
  }

  /* Hero section */
  .button-bottom-d866 {
    padding: 2rem 0 1.5rem;
  }

  .static_6555 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .mask-ac77 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .advanced_65c4 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .tag-hard-963a {
    max-width: 100%;
    border-radius: 8px;
  }

  .overlay_complex_929c {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .cold-cfac {
    padding: 1rem;
  }

  .picture-40fb {
    font-size: 1.5rem;
  }

  .input-inner-2c3a {
    font-size: 0.75rem;
  }

  .title_b04c {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .gas_e512 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .gas_e512 .chip-solid-c39e {
    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 */
  .heading_6074 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .bottom-c32b {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .text-767d {
    margin-bottom: 1rem;
  }

  /* Author */
  .modal-light-0d66 {
    flex-direction: column;
  }

  .pattern-plasma-85cd {
    flex-direction: column;
  }

  /* Quotes */
  .active-ae5e {
    flex-direction: column;
  }

  /* Pros/Cons */
  .wrapper_soft_f987 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .pagination-d8b8 {
    flex-direction: column;
  }

  .pagination-d8b8 .chip-solid-c39e {
    width: 100%;
  }

  /* Version comparison */
  .nav_full_ceb4 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .backdrop-4be8 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .input_complex_2bee {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .surface-983a {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .east_bab7,
  .header_east_e31b,
  .status_d420,
  .wood-219a,
  .active-37e4,
  .header_ff9e {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .east_bab7 table,
  .header_east_e31b table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .wrapper_brown_a431 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .grid-bottom-27f2 {
    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;
  }

  .last-404e {
    font-size: 1.25rem !important;
  }

  .static_6555 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .shadow_hard_070a {
    position: fixed;
  }

  .wrapper-15b7 {
    padding: 0.625rem 0;
  }

  .video_hovered_9ac2 img {
    height: 26px;
  }

  .out_1627 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .grid-last-26c7 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .banner_44b2 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .banner_44b2 svg {
    width: 18px;
    height: 18px;
  }

  .banner_44b2 .message_red_e057 {
    font-size: 0.7rem;
  }

  .banner_44b2 .title_left_a0a0 {
    font-size: 0.65rem;
  }

  .description_stone_6cb5,
  .input_dim_3082 {
    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, .grid-bottom-27f2, .tertiary_pressed_e9d5, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .advanced_65c4 {
    padding: 1rem;
  }

  .overlay_complex_929c {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .cold-cfac {
    padding: 0.875rem;
  }

  .picture-40fb {
    font-size: 1.25rem;
  }

  .gas_e512 .chip-solid-c39e {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .static_6555 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .chip-solid-c39e {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .secondary_pro_b233 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .bottom-c32b {
    padding: 1rem;
  }

  .text-767d span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .medium-e810,
  .slow_6423,
  .background-liquid-1fd6,
  .motion-4c5f {
    padding: 1rem;
  }
}

@media print {
  .shadow_hard_070a,
  .icon_silver_33a0,
  .list_5e03,
  .chip-solid-c39e,
  .pattern_full_446b {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .grid-bottom-27f2 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.frame_f74a {
  margin-bottom: 3rem;
  text-align: center;
}

.last-404e {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.progress-fdbf {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.mask_medium_e539,
.secondary-lite-9bae {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.paper_acc7 {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.paper_acc7:hover {
  transform: translateY(-5px);
}

.paper_acc7 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.paper_acc7 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.highlight-prev-2f74 {
  margin: 3rem 0;
}

.content-db20 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.content_ebdb {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.content_ebdb:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.mini_5582 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.image-6c59 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.motion_9d9e {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.action_6194 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.notification-static-7464 {
  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;
}

.notification-static-7464:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.notification-static-7464.panel-current-ad67 {
  border-left: 4px solid var(--primary-color);
}

.hero-749e {
  flex-shrink: 0;
}

.hero-749e svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.notice_rough_ca7a {
  flex: 1;
}

.notice_rough_ca7a h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.grid-rough-e762 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.input_west_4af1,
.liquid-d012,
.right-ae85 {
  margin-bottom: 1.5rem;
}

.input_west_4af1 h4,
.liquid-d012 h4,
.right-ae85 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.input_west_4af1 ul,
.liquid-d012 ul,
.right-ae85 ul {
  list-style: none;
  padding: 0;
}

.input_west_4af1 li,
.liquid-d012 li,
.right-ae85 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.input_west_4af1 li:before,
.liquid-d012 li:before,
.right-ae85 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.filter_upper_cd0c {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.filter_upper_cd0c 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;
}

.filter_upper_cd0c a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.icon_bf7d { margin: 2rem 0; }
.grid_f058 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.grid_f058 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.footer_dirty_db61 p { margin-bottom: 1rem; line-height: 1.7; }
.footer_dirty_db61 strong { color: var(--text-primary); }
.footer_dirty_db61 ul { list-style: none; padding-left: 0; }
.footer_dirty_db61 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.footer_dirty_db61 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.card_683b { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.focused_e162 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.focused_e162:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.feature-paper-5c40 { font-size: 3rem; margin-bottom: 1rem; }
.focused_e162 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.focused_e162 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.image-mini-0506 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.image-mini-0506 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.frame-fa08 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.right_6945 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.gallery-a26b { text-align: center; }
.progress-easy-5658 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.status_hot_3aeb { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.gradient-20b6 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.current_bd41 { margin: 2rem 0; }
.action-8c5c { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.action-8c5c h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.action-8c5c p, .action-8c5c ul { line-height: 1.7; }
.action-8c5c ul { list-style: none; padding-left: 0; }
.action-8c5c ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.action-8c5c ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.column-west-c1e1 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.thumbnail-7bd5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.tertiary_first_29f2 { text-align: center; }
.border-afa2 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.last-d687 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.hover-cf25 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.wood-8c15 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.tall_1648 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.tall_1648:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.tall_1648 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.tall_1648 p, .tall_1648 ul { line-height: 1.7; }
.tall_1648 ul { list-style: none; padding-left: 0; }
.tall_1648 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.tall_1648 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 5951 */
.shadow-element-s3 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.1;
}
