/* ============================================
   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 */
.message-south-8acf p,
.medium_ff69,
.photo-fresh-227a,
.preview_48e1,
.content_b35c,
.widget-cold-4f2e,
.box_0939,
.gas-106b {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.wrapper-0548 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.wrapper-0548 > *,
.dynamic_0ed0,
.message-south-8acf,
.container-glass-6c3f {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .wrapper-0548 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .wrapper-0548 {
    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 === */
.label-medium-2505 {
  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 */
.label-medium-2505.small_d0c9 {
  box-shadow: var(--shadow-md);
}

.mask_last_103e {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.feature-480c img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.message-c975 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.header_slow_6cb0 {
  display: none;
}

/* Hide mobile actions on desktop */
.active-2d4d {
  display: none;
}

.middle_23dd a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.middle_23dd a:hover,
.middle_23dd a.fn-active-5409 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.soft_16d8 {
  margin-left: 1rem;
}

.wrapper_a04a {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.shadow_ea4a,
.feature_top_961e {
  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;
}

.shadow_ea4a {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.shadow_ea4a: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;
}

.feature_top_961e {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.feature_top_961e: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;
}

.shadow_ea4a svg,
.feature_top_961e svg {
  flex-shrink: 0;
}

.hover_red_e3ce {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.form-right-d59a {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.form-right-d59a::before,
.form-right-d59a::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.form-right-d59a::before {
  top: -7px;
}

.form-right-d59a::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.picture-inner-9e1f {
  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 === */
.white_b5b3 {
  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);
}

.notification-c8c8 {
  margin: 0 0 2rem;
  text-align: center;
}

.picture-6a90 {
  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;
}

.picture-6a90:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.layout-hard-6329 {
  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);
}

.layout-hard-6329 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.header_84f9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.search-ec3c {
  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;
}

.search-ec3c:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stale_241d {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.widget_up_23c2 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.solid_1afc {
  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);
}

.solid_1afc .label-full-f2a1 {
  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;
}

.solid_1afc .label-full-f2a1 svg {
  flex-shrink: 0;
}

.solid_1afc .copper_bd4c {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.solid_1afc .copper_bd4c: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);
}

.solid_1afc .picture-huge-d8b6 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.solid_1afc .picture-huge-d8b6: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) {
  .white_b5b3 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .picture-6a90 {
    max-width: 100%;
  }

  .header_84f9 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .search-ec3c {
    padding: 1rem;
  }

  .stale_241d {
    font-size: 1.5rem;
  }

  .widget_up_23c2 {
    font-size: 0.75rem;
  }

  .layout-hard-6329 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .solid_1afc {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .solid_1afc .label-full-f2a1 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .header_84f9 {
    grid-template-columns: 1fr;
  }
}

.hard_fe07 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.form_e2d5 {
  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 === */
.dirty-6f4d {
  margin-bottom: 2.5rem;
}

.narrow-0a1f {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.hard_fe07 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.paragraph_lower_330c {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mask_f407 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.south_6057 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tabs-699b {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.overlay_large_b402 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.search_dd9e {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.sort-f76e {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.sort-f76e svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.accent-huge-f0fb {
  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);
}

.footer_under_dbd2 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.background-iron-35e4 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pattern_355c {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.status_huge_6760 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.sidebar_center_b79a {
  display: grid;
  gap: 1rem;
}

.wide_b6e8 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.north-80d1 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.tag_f673 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.east_bc21 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.logo_1e27 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.article-a776 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.article-a776 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.medium_ff69 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.medium-7131 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.pagination_middle_d912 {
  display: grid;
  gap: 2rem;
}

.container_fast_7e70 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.mask_f407 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.paragraph_lower_330c {
  flex: 1;
}

.tabs-699b {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.tabs-699b a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.modal_018d {
  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;
}

.overlay_large_b402 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.basic-dad1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.basic-dad1 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.green_e204 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.green_e204 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.inner_6444 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.inner_6444 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.inner_6444 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.inner_6444 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.primary-62c2 {
  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 === */
.texture_focused_b481 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.shadow_1285 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.disabled_0662 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.copper-6371 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.copper-6371 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.copper-6371 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.copper-6371 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;
}

.copper-6371 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.copper-6371 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.message-south-8acf {
  padding: 3rem 0 5rem;
}

.container-glass-6c3f {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.container-glass-6c3f.filter_warm_637a {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.photo-fresh-227a {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.static-2573 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.chip_east_2891 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.chip_east_2891 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.accent_63a3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.active-100d {
  text-align: center;
}

.image_032d {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.left_4f22 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.hero_6ad7 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.widget-cold-4f2e {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.preview_48e1 {
  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;
}

.preview_48e1 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.preview_48e1:hover {
  box-shadow: var(--shadow-lg);
}

.preview_48e1.east_6080 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.preview_48e1 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.preview_48e1 ul {
  margin: 1rem 0;
}

.preview_48e1 li {
  margin-bottom: 0.75rem;
}

.small_1cba {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.row-4726 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.row-4726 a {
  font-weight: 600;
}

/* === Data Tables === */
.box-up-bdc5 {
  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;
}

.box-up-bdc5 table {
  width: 100%;
  min-width: 600px;
}

.box-up-bdc5 thead {
  background-color: var(--primary-color);
  color: white;
}

.box-up-bdc5 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.box-up-bdc5 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.box-up-bdc5 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.box-up-bdc5 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.full-263c {
  list-style: none;
  margin: 1.5rem 0;
}

.full-263c li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.full-263c li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.shadow-8006::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-5409::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 === */
.active-be38 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.tabs-7406 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.tabs-7406 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.tabs-7406 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.tabs-7406 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.active-be38 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.box_0939 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.box_0939::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.icon_b776 {
  position: relative;
  margin-bottom: 3rem;
}

.south-c197 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.south-c197 .static-16e2 {
  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;
}

.item_707a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.item_707a h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.item_707a ul {
  margin: 1rem 0;
}

.item_707a li {
  margin-bottom: 0.75rem;
}

.hard-425d {
  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 === */
.large-96e7 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.large-96e7 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.warm-afc1 {
  list-style: none;
  margin: 1.5rem 0;
}

.warm-afc1 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.warm-afc1 a {
  font-weight: 600;
}

.easy-4cb2 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.gas-106b {
  margin: 2.5rem 0;
}

.texture_fresh_2534 {
  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;
}

.texture_fresh_2534:hover {
  box-shadow: var(--shadow-lg);
}

.texture_fresh_2534.footer_in_9469 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.table-inner-22a0 {
  flex-shrink: 0;
}

.table-inner-22a0 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);
}

.texture-hard-55fd h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.purple-92f7,
.title-b9c7,
.component-white-9cbc {
  width: 100%;
  margin: 1.5rem 0;
}

.shade_df48 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.shade_df48 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.menu_fresh_e351 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.menu_fresh_e351 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.pressed-c70e {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.pressed-c70e strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.list-7146 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.dark-217a {
  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;
}

.dark-217a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.dark-217a.shade-f507 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.dark-217a .menu_active_4031 {
  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;
}

.dark-217a h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.hard-df1c {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.chip-f255 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.chip-f255 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.carousel-focused-5cdc {
  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 === */
.label-full-f2a1 {
  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;
}

.copper_bd4c {
  background-color: var(--primary-color);
  color: white;
}

.copper_bd4c:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.picture-huge-d8b6 {
  background-color: var(--text-secondary);
  color: white;
}

.picture-huge-d8b6:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.mask-4770 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.mask-4770:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.bright_69d1 {
  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;
}

.bright_69d1:hover {
  background-color: var(--primary-dark);
}

.module_7261 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.hero-85e8 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.card-down-5534 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.preview-c641 {
  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 === */
.secondary_brown_9e77 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.fluid-8439 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.fluid-8439 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.button_thick_bcc3 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.summary_last_20b8 {
  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;
}

.action-735e {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.background-6bd4 {
  list-style: none;
  counter-reset: rank-counter;
}

.background-6bd4 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.background-6bd4 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;
}

.accent_a40b {
  list-style: none;
}

.accent_a40b li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.gold-8382 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.preview-d571 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.preview-d571 .nav_hard_14d6 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.preview-d571 .texture_silver_f27d {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.outer_dc50 {
  margin-top: 3rem;
}

.background_4ad9 {
  width: 100%;
}

.notice-right-02ed {
  background-color: #fef3c7;
}

.east_83f1 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.tooltip_in_0a47 {
  margin: 3rem 0;
}

.image-0338 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.short-929c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.short-929c:hover {
  box-shadow: var(--shadow-lg);
}

.short-929c.logo_5f87 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.under_5b71 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.dark_f298 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.dark_f298 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.heading-31cc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.short-929c blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.fresh-7e14 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.title_dark_1692 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.content_under_231e {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.chip-blue-a8c9 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.link_e4c2 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.card-focused-183c {
  margin-top: 1rem;
}

/* === FAQ Section === */
.wood_ca20 {
  max-width: 900px;
  margin: 0 auto;
}

.backdrop_5b7b {
  margin: 2rem 0;
}

.orange_2f2b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.orange_2f2b summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.orange_2f2b summary::-webkit-details-marker {
  display: none;
}

.orange_2f2b summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.fresh-adb3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.orange_2f2b[open] .fresh-adb3 {
  transform: rotate(45deg);
}

.tabs-orange-e469 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.tabs-orange-e469 p:last-child {
  margin-bottom: 0;
}

.modal_selected_8259 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.content-8967 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.media_e203 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.media_e203 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.media_e203 .label-full-f2a1 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.tall_bd01 {
  max-width: 900px;
  margin: 0 auto;
}

.tag_4b8e {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.upper-6910 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.upper-6910.fn-success-5409 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.notification_8e76 {
  font-size: 3rem;
  line-height: 1;
}

.in-62c1 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.notice-red-bd5d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.soft_ac77,
.bottom_ffc1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.soft_ac77 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.bottom_ffc1 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.menu-536d,
.slider-bdbc {
  margin: 1.5rem 0;
}

.menu-536d li,
.slider-bdbc li {
  margin-bottom: 1rem;
}

.overlay-bfb4 {
  margin: 3rem 0;
}

.hover-1ae3 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.hover-1ae3 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.hover-1ae3 ol {
  margin: 1rem 0;
}

.hover-1ae3 li {
  margin-bottom: 0.75rem;
}

.east_003e {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.dirty-21b7 {
  margin: 2rem 0;
}

.video_adaa {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.media_0e1b {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.nav-simple-e1a3 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.dropdown_096e {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.caption_lite_9cb0 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.prev-4ca0 {
  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;
}

.prev-4ca0 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.south_6057 {
  flex: 1;
}

.south_6057 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.media_small_c33a {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.out-e0dc p {
  margin-bottom: 1rem;
}

.preview-paper-a4d0 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.simple-503e {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.full_2e32 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.full_2e32 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.narrow_8837 h3 {
  margin-bottom: 1.5rem;
}

.label-ffce {
  display: grid;
  gap: 2rem;
}

.tall-124c {
  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;
}

.tall-124c img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.tall-124c h4 {
  margin: 0 0 0.25rem;
}

.tall-124c p {
  margin: 0;
  font-size: 0.9375rem;
}

.main-dynamic-adaa {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.description-current-1c5b {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.description-current-1c5b h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.description-current-1c5b ul {
  margin: 1.5rem 0;
}

.description-current-1c5b li {
  margin-bottom: 0.75rem;
}

.disabled_c88b {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.widget-orange-3f87 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.tall-aab8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.layout_83f2 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.layout_83f2 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.basic-da8b {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.basic-da8b a {
  color: rgba(255, 255, 255, 0.8);
}

.frame_feaf {
  list-style: none;
}

.frame_feaf li {
  margin-bottom: 0.75rem;
}

.frame_feaf a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.frame_feaf a:hover {
  color: white;
}

.panel_22b2 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.preview_350b {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.fluid-48a8 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.hard_9569 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.easy_7b93 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .wrapper-0548 {
    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;
  }

  .dropdown-e5df {
    font-size: 1.5rem !important;
  }

  .narrow-0a1f {
    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 */
  .preview_48e1,
  .content_b35c,
  .item_707a,
  .texture-hard-55fd,
  .under_5b71,
  .short-929c,
  .tabs-orange-e469,
  .layout-hard-6329,
  .medium_ff69,
  .photo-fresh-227a {
    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 */
  .hard_fe07 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .paragraph_lower_330c {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .mask_f407 {
    flex-shrink: 0;
  }

  .south_6057 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .tabs-699b,
  .overlay_large_b402 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .overlay_large_b402 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .message-c975 {
    display: none;
  }

  /* Show mobile actions */
  .active-2d4d {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .warm_d132 {
    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;
  }

  .warm_d132 svg {
    flex-shrink: 0;
  }

  .warm_d132 .table_fixed_af8e {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .warm_d132 .accent-pressed-a12b {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .active-d325 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .notice_90c6 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .warm_d132:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .header_slow_6cb0 {
    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;
  }

  .header_slow_6cb0.fn-active-5409 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header_slow_6cb0 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .header_slow_6cb0 li:last-child {
    border-bottom: none;
  }

  .header_slow_6cb0 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .middle_23dd {
    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;
  }

  .middle_23dd li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .middle_23dd li:last-child {
    border-bottom: none;
  }

  .middle_23dd a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .soft_16d8 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .wrapper_a04a {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .shadow_ea4a,
  .feature_top_961e {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .shadow_ea4a {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .feature_top_961e {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .middle_23dd.fn-active-5409 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hover_red_e3ce {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .label-medium-2505 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .mask_last_103e {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .picture-inner-9e1f {
    margin-top: 0;
  }

  /* Hero section */
  .picture-inner-9e1f {
    padding: 2rem 0 1.5rem;
  }

  .narrow-0a1f {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .medium_ff69 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .white_b5b3 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .picture-6a90 {
    max-width: 100%;
    border-radius: 8px;
  }

  .header_84f9 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .search-ec3c {
    padding: 1rem;
  }

  .stale_241d {
    font-size: 1.5rem;
  }

  .widget_up_23c2 {
    font-size: 0.75rem;
  }

  .layout-hard-6329 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .solid_1afc {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .solid_1afc .label-full-f2a1 {
    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 */
  .disabled_0662 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .texture_fresh_2534 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .table-inner-22a0 {
    margin-bottom: 1rem;
  }

  /* Author */
  .container_fast_7e70 {
    flex-direction: column;
  }

  .prev-4ca0 {
    flex-direction: column;
  }

  /* Quotes */
  .under_5b71 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .notice-red-bd5d {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .dropdown_096e {
    flex-direction: column;
  }

  .dropdown_096e .label-full-f2a1 {
    width: 100%;
  }

  /* Version comparison */
  .list-7146 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .secondary_brown_9e77 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .tall-aab8 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .fluid-48a8 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .box-up-bdc5,
  .title-b9c7,
  .gas-2016,
  .background_4ad9,
  .purple-92f7,
  .component-white-9cbc {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .box-up-bdc5 table,
  .title-b9c7 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .carousel-focused-5cdc {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .wrapper-0548 {
    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;
  }

  .dropdown-e5df {
    font-size: 1.25rem !important;
  }

  .narrow-0a1f {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .label-medium-2505 {
    position: fixed;
  }

  .mask_last_103e {
    padding: 0.625rem 0;
  }

  .feature-480c img {
    height: 26px;
  }

  .middle_23dd {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .header_slow_6cb0 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .warm_d132 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .warm_d132 svg {
    width: 18px;
    height: 18px;
  }

  .warm_d132 .table_fixed_af8e {
    font-size: 0.7rem;
  }

  .warm_d132 .accent-pressed-a12b {
    font-size: 0.65rem;
  }

  .shadow_ea4a,
  .feature_top_961e {
    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, .wrapper-0548, .dynamic_0ed0, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .white_b5b3 {
    padding: 1rem;
  }

  .header_84f9 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .search-ec3c {
    padding: 0.875rem;
  }

  .stale_241d {
    font-size: 1.25rem;
  }

  .solid_1afc .label-full-f2a1 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .narrow-0a1f {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .label-full-f2a1 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .module_7261 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .texture_fresh_2534 {
    padding: 1rem;
  }

  .table-inner-22a0 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .preview_48e1,
  .pattern-92f7,
  .cool-8f0f,
  .liquid-4d36 {
    padding: 1rem;
  }
}

@media print {
  .label-medium-2505,
  .texture_focused_b481,
  .hover_red_e3ce,
  .label-full-f2a1,
  .widget-orange-3f87 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .wrapper-0548 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.caption-e627 {
  margin-bottom: 3rem;
  text-align: center;
}

.dropdown-e5df {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.right-442e {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.photo_1afa,
.secondary_fluid_d64f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.hidden-cold-06fc {
  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;
}

.hidden-cold-06fc:hover {
  transform: translateY(-5px);
}

.hidden-cold-06fc strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.hidden-cold-06fc span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.notice-iron-0f86 {
  margin: 3rem 0;
}

.alert-ad2c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.tabs-fluid-3477 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.tabs-fluid-3477:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.stone_6b45 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.label-25fa {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.module-5fe9 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.description_large_a127 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.steel-b007 {
  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;
}

.steel-b007:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.steel-b007.main-5ba2 {
  border-left: 4px solid var(--primary-color);
}

.caption_slow_dcb5 {
  flex-shrink: 0;
}

.caption_slow_dcb5 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.paper-6791 {
  flex: 1;
}

.paper-6791 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.hero_plasma_1b1d {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.icon_white_8673,
.container_256f,
.list_f2f6 {
  margin-bottom: 1.5rem;
}

.icon_white_8673 h4,
.container_256f h4,
.list_f2f6 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon_white_8673 ul,
.container_256f ul,
.list_f2f6 ul {
  list-style: none;
  padding: 0;
}

.icon_white_8673 li,
.container_256f li,
.list_f2f6 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.icon_white_8673 li:before,
.container_256f li:before,
.list_f2f6 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.info-c72b {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.info-c72b 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;
}

.info-c72b a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.photo-82f9 { margin: 2rem 0; }
.top_58f6 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.top_58f6 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.tag_purple_737d p { margin-bottom: 1rem; line-height: 1.7; }
.tag_purple_737d strong { color: var(--text-primary); }
.tag_purple_737d ul { list-style: none; padding-left: 0; }
.tag_purple_737d ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.tag_purple_737d ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.notice_98a0 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.panel_d712 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.panel_d712:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.lower_fd0a { font-size: 3rem; margin-bottom: 1rem; }
.panel_d712 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.panel_d712 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.banner_cold_247a { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.banner_cold_247a span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.logo-7302 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.short-9268 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.avatar_da6b { text-align: center; }
.orange_c0b2 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.description-hovered-1d67 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.dropdown-e574 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.static_4be8 { margin: 2rem 0; }
.orange-da1a { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.orange-da1a h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.orange-da1a p, .orange-da1a ul { line-height: 1.7; }
.orange-da1a ul { list-style: none; padding-left: 0; }
.orange-da1a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.orange-da1a ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.tooltip_da8c { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.caption-c2ac { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.large-e0e4 { text-align: center; }
.blue_c5ab { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.description-lower-0a23 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.narrow-254d { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.gold-ad51 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.tag_0088 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.tag_0088:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.tag_0088 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.tag_0088 p, .tag_0088 ul { line-height: 1.7; }
.tag_0088 ul { list-style: none; padding-left: 0; }
.tag_0088 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.tag_0088 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: cdd6 */
.phantom-card-u3 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.0;
}
