/* ============================================
   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 */
.footer-715b p,
.tabs-ebf5,
.module-b399,
.alert_c640,
.simple-f860,
.dynamic-02f3,
.short_b533,
.primary_77b7 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.status_09c9 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.status_09c9 > *,
.table-focused-6e74,
.footer-715b,
.first_4810 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .status_09c9 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .status_09c9 {
    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 === */
.under_873a {
  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 */
.under_873a.green_fb0d {
  box-shadow: var(--shadow-md);
}

.info-cbca {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.layout-7569 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.hard_6571 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.surface_e49b {
  display: none;
}

/* Hide mobile actions on desktop */
.description_753c {
  display: none;
}

.left_35b7 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.left_35b7 a:hover,
.left_35b7 a.fn-active-ed5b {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.tertiary_926c {
  margin-left: 1rem;
}

.huge_a700 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.top_1d82,
.plasma_3cfe {
  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;
}

.top_1d82 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.top_1d82: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;
}

.plasma_3cfe {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.plasma_3cfe: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;
}

.top_1d82 svg,
.plasma_3cfe svg {
  flex-shrink: 0;
}

.fast_1bc3 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.steel_f442 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.steel_f442::before,
.steel_f442::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.steel_f442::before {
  top: -7px;
}

.steel_f442::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.list-gas-dfc7 {
  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 === */
.dim-6479 {
  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);
}

.media_07f6 {
  margin: 0 0 2rem;
  text-align: center;
}

.main-2639 {
  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;
}

.main-2639:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.table-9652 {
  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);
}

.table-9652 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.pattern_west_106c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.popup-dark-0cbd {
  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;
}

.popup-dark-0cbd:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.top_10e2 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hidden-north-49b5 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.menu_center_805f {
  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);
}

.menu_center_805f .menu_clean_6257 {
  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;
}

.menu_center_805f .menu_clean_6257 svg {
  flex-shrink: 0;
}

.menu_center_805f .copper-273d {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.menu_center_805f .copper-273d: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);
}

.menu_center_805f .element-bf9e {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.menu_center_805f .element-bf9e: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) {
  .dim-6479 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .main-2639 {
    max-width: 100%;
  }

  .pattern_west_106c {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .popup-dark-0cbd {
    padding: 1rem;
  }

  .top_10e2 {
    font-size: 1.5rem;
  }

  .hidden-north-49b5 {
    font-size: 0.75rem;
  }

  .table-9652 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .menu_center_805f {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .menu_center_805f .menu_clean_6257 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .pattern_west_106c {
    grid-template-columns: 1fr;
  }
}

.banner-8213 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.container_607d {
  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 === */
.tall-ba23 {
  margin-bottom: 2.5rem;
}

.surface_glass_98d1 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.banner-8213 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.widget-cold-1c32 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.progress_red_7af0 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.tag-3e7a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.accordion-medium-511f {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.module-f394 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.complex_05a8 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.caption_hovered_8138 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.caption_hovered_8138 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.form-56cb {
  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);
}

.copper_8d09 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.notice_0003 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.focus_selected_7f60 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.fast-d954 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.bottom-f54f {
  display: grid;
  gap: 1rem;
}

.down_5a14 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.huge-2758 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.accordion-e782 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.frame-8262 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.outline_brown_eea5 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.orange-e8fb {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.orange-e8fb p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.tabs-ebf5 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.thumbnail_blue_9c4e {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.south-37b4 {
  display: grid;
  gap: 2rem;
}

.background-879f {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.progress_red_7af0 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.widget-cold-1c32 {
  flex: 1;
}

.accordion-medium-511f {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.accordion-medium-511f a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.glass-5a86 {
  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;
}

.module-f394 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.hover_basic_a3ab {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.hover_basic_a3ab span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.table_light_795d {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.table_light_795d a {
  font-size: 0.875rem;
  font-weight: 500;
}

.current_fc8a {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.current_fc8a strong {
  display: block;
  margin-bottom: 0.75rem;
}

.current_fc8a ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.current_fc8a li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.shadow-fa4a {
  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 === */
.white_6dc7 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.outline_out_1a0d {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.iron-56e2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.search-cold-619d h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.search-cold-619d ol {
  list-style: none;
  counter-reset: toc-counter;
}

.search-cold-619d ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.search-cold-619d 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;
}

.search-cold-619d ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.search-cold-619d ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.footer-715b {
  padding: 3rem 0 5rem;
}

.first_4810 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.first_4810.clean_8cac {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.module-b399 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.hidden-63f9 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.green-9d9b {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.green-9d9b h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.title-f6bd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.mask-tall-1b83 {
  text-align: center;
}

.banner-basic-63ee {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.lower-7b6b {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.light-33e0 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.dynamic-02f3 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.alert_c640 {
  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;
}

.alert_c640 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.alert_c640:hover {
  box-shadow: var(--shadow-lg);
}

.alert_c640.accent-pink-5605 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.alert_c640 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.alert_c640 ul {
  margin: 1rem 0;
}

.alert_c640 li {
  margin-bottom: 0.75rem;
}

.narrow_4ea9 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.widget_3124 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.widget_3124 a {
  font-weight: 600;
}

/* === Data Tables === */
.huge-712c {
  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;
}

.huge-712c table {
  width: 100%;
  min-width: 600px;
}

.huge-712c thead {
  background-color: var(--primary-color);
  color: white;
}

.huge-712c th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.huge-712c td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.huge-712c tbody tr:hover {
  background-color: var(--bg-secondary);
}

.huge-712c tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.widget_current_366d {
  list-style: none;
  margin: 1.5rem 0;
}

.widget_current_366d li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.widget_current_366d li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.menu_a890::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-ed5b::before {
  content: '⚠';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--warning-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

/* === Expert Insight Box === */
.main_gold_0a6a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.green_f6c8 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.green_f6c8 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.green_f6c8 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.green_f6c8 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.main_gold_0a6a blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.short_b533 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.short_b533::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.chip_up_2065 {
  position: relative;
  margin-bottom: 3rem;
}

.feature-c53d {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.feature-c53d .input-ef6c {
  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;
}

.stone-c12e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.stone-c12e h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.stone-c12e ul {
  margin: 1rem 0;
}

.stone-c12e li {
  margin-bottom: 0.75rem;
}

.pressed-a45b {
  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 === */
.red-9d92 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.red-9d92 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.pink_46a3 {
  list-style: none;
  margin: 1.5rem 0;
}

.pink_46a3 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.pink_46a3 a {
  font-weight: 600;
}

.accordion_4bec {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.primary_77b7 {
  margin: 2.5rem 0;
}

.button-east-7b37 {
  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;
}

.button-east-7b37:hover {
  box-shadow: var(--shadow-lg);
}

.button-east-7b37.photo_pink_c924 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.first_0d77 {
  flex-shrink: 0;
}

.first_0d77 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);
}

.button_e59a h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.complex_58af,
.info-d200,
.frame-focused-602c {
  width: 100%;
  margin: 1.5rem 0;
}

.huge-584e {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.huge-584e strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.gas-72b5 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.gas-72b5 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.slider_7871 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.slider_7871 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.wood-044e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.dark-f564 {
  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-f564:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.dark-f564.alert_a803 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.dark-f564 .slider-paper-8c78 {
  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-f564 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.sidebar-af07 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.nav-24e2 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.nav-24e2 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.rough_dad7 {
  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 === */
.menu_clean_6257 {
  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-273d {
  background-color: var(--primary-color);
  color: white;
}

.copper-273d:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.element-bf9e {
  background-color: var(--text-secondary);
  color: white;
}

.element-bf9e:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.background_e3f7 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.background_e3f7:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.mask-7a42 {
  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;
}

.mask-7a42:hover {
  background-color: var(--primary-dark);
}

.message_small_472a {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.main_03ab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.prev-cfc3 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.nav_d9c6 {
  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 === */
.main_yellow_3f1a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.dirty_0672 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.dirty_0672 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.chip-d33d {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.active-00c7 {
  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;
}

.steel_24ea {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.right-72c9 {
  list-style: none;
  counter-reset: rank-counter;
}

.right-72c9 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.right-72c9 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;
}

.sidebar-5c00 {
  list-style: none;
}

.sidebar-5c00 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.component_inner_e83e {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.first_9f17 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.first_9f17 .paragraph-mini-28a5 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.first_9f17 .tall-6517 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hard-c55f {
  margin-top: 3rem;
}

.form-d8ca {
  width: 100%;
}

.outline-8228 {
  background-color: #fef3c7;
}

.modal_782c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.basic-c430 {
  margin: 3rem 0;
}

.tooltip-b95e {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.border_e091 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.border_e091:hover {
  box-shadow: var(--shadow-lg);
}

.border_e091.focus_silver_9be2 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.complex_e824 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.motion_3eb9 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.motion_3eb9 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.overlay_fixed_35a5 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.border_e091 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.column-current-bf74 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.status_last_8503 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.item_6caa {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.tertiary-96f8 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.sort-2d5d {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.sort-medium-75ac {
  margin-top: 1rem;
}

/* === FAQ Section === */
.text_35b1 {
  max-width: 900px;
  margin: 0 auto;
}

.gold-d4b8 {
  margin: 2rem 0;
}

.smooth_2838 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.smooth_2838 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.smooth_2838 summary::-webkit-details-marker {
  display: none;
}

.smooth_2838 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.caption_e571 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.smooth_2838[open] .caption_e571 {
  transform: rotate(45deg);
}

.over-1946 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.over-1946 p:last-child {
  margin-bottom: 0;
}

.block-81fb {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.gradient_ef48 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.message-plasma-75a0 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.message-plasma-75a0 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.message-plasma-75a0 .menu_clean_6257 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.active-ce3e {
  max-width: 900px;
  margin: 0 auto;
}

.light_fca4 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.footer-a752 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.footer-a752.fn-success-ed5b {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.heading-wide-98ce {
  font-size: 3rem;
  line-height: 1;
}

.label-0964 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.bronze-f55b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.east_3bce,
.module-e1f8 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.east_3bce h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.module-e1f8 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.accent-blue-0d94,
.content-down-65a5 {
  margin: 1.5rem 0;
}

.accent-blue-0d94 li,
.content-down-65a5 li {
  margin-bottom: 1rem;
}

.progress_57af {
  margin: 3rem 0;
}

.widget-dirty-3f93 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.widget-dirty-3f93 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.widget-dirty-3f93 ol {
  margin: 1rem 0;
}

.widget-dirty-3f93 li {
  margin-bottom: 0.75rem;
}

.pink-c449 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.main_ecf0 {
  margin: 2rem 0;
}

.summary-a32c {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.over-19e4 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.pattern-pro-25ff {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.header-479d {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.focus-focused-e76a {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.video_e2f2 {
  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;
}

.video_e2f2 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.tag-3e7a {
  flex: 1;
}

.tag-3e7a h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.fixed-d8a0 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.top-ca31 p {
  margin-bottom: 1rem;
}

.shade-top-d2df {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.photo-static-c2d4 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.preview_89d0 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.preview_89d0 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.shadow-93bb h3 {
  margin-bottom: 1.5rem;
}

.focused_07b0 {
  display: grid;
  gap: 2rem;
}

.hard-b699 {
  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;
}

.hard-b699 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.hard-b699 h4 {
  margin: 0 0 0.25rem;
}

.hard-b699 p {
  margin: 0;
  font-size: 0.9375rem;
}

.media-focused-7f72 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.backdrop_886c {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.backdrop_886c h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.backdrop_886c ul {
  margin: 1.5rem 0;
}

.backdrop_886c li {
  margin-bottom: 0.75rem;
}

.surface-small-c36d {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.box_bottom_affa {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.border_pressed_b68f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.slider-fluid-0663 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.slider-fluid-0663 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.header_3b2e {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.header_3b2e a {
  color: rgba(255, 255, 255, 0.8);
}

.description_c68f {
  list-style: none;
}

.description_c68f li {
  margin-bottom: 0.75rem;
}

.description_c68f a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.description_c68f a:hover {
  color: white;
}

.fresh_7273 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.text_soft_e4f4 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.sidebar-f5d5 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.picture_top_e0cf {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.background_7ded {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .status_09c9 {
    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;
  }

  .lite_0216 {
    font-size: 1.5rem !important;
  }

  .surface_glass_98d1 {
    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 */
  .alert_c640,
  .simple-f860,
  .stone-c12e,
  .button_e59a,
  .complex_e824,
  .border_e091,
  .over-1946,
  .table-9652,
  .tabs-ebf5,
  .module-b399 {
    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 */
  .banner-8213 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .widget-cold-1c32 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .progress_red_7af0 {
    flex-shrink: 0;
  }

  .tag-3e7a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .accordion-medium-511f,
  .module-f394 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .module-f394 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .hard_6571 {
    display: none;
  }

  /* Show mobile actions */
  .description_753c {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .layout-529a {
    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;
  }

  .layout-529a svg {
    flex-shrink: 0;
  }

  .layout-529a .green_b003 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .layout-529a .image_paper_e181 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .hover-last-637b {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .huge_5c83 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .layout-529a:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .surface_e49b {
    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;
  }

  .surface_e49b.fn-active-ed5b {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .surface_e49b li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .surface_e49b li:last-child {
    border-bottom: none;
  }

  .surface_e49b a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .left_35b7 {
    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;
  }

  .left_35b7 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .left_35b7 li:last-child {
    border-bottom: none;
  }

  .left_35b7 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .tertiary_926c {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .huge_a700 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .top_1d82,
  .plasma_3cfe {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .top_1d82 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .plasma_3cfe {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .left_35b7.fn-active-ed5b {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .fast_1bc3 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .under_873a {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .info-cbca {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .list-gas-dfc7 {
    margin-top: 0;
  }

  /* Hero section */
  .list-gas-dfc7 {
    padding: 2rem 0 1.5rem;
  }

  .surface_glass_98d1 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .tabs-ebf5 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .dim-6479 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .main-2639 {
    max-width: 100%;
    border-radius: 8px;
  }

  .pattern_west_106c {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .popup-dark-0cbd {
    padding: 1rem;
  }

  .top_10e2 {
    font-size: 1.5rem;
  }

  .hidden-north-49b5 {
    font-size: 0.75rem;
  }

  .table-9652 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .menu_center_805f {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .menu_center_805f .menu_clean_6257 {
    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 */
  .iron-56e2 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .button-east-7b37 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .first_0d77 {
    margin-bottom: 1rem;
  }

  /* Author */
  .background-879f {
    flex-direction: column;
  }

  .video_e2f2 {
    flex-direction: column;
  }

  /* Quotes */
  .complex_e824 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .bronze-f55b {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .header-479d {
    flex-direction: column;
  }

  .header-479d .menu_clean_6257 {
    width: 100%;
  }

  /* Version comparison */
  .wood-044e {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .main_yellow_3f1a {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .border_pressed_b68f {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sidebar-f5d5 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .huge-712c,
  .info-d200,
  .footer-842b,
  .form-d8ca,
  .complex_58af,
  .frame-focused-602c {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .huge-712c table,
  .info-d200 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .rough_dad7 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .status_09c9 {
    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;
  }

  .lite_0216 {
    font-size: 1.25rem !important;
  }

  .surface_glass_98d1 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .under_873a {
    position: fixed;
  }

  .info-cbca {
    padding: 0.625rem 0;
  }

  .layout-7569 img {
    height: 26px;
  }

  .left_35b7 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .surface_e49b {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .layout-529a {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .layout-529a svg {
    width: 18px;
    height: 18px;
  }

  .layout-529a .green_b003 {
    font-size: 0.7rem;
  }

  .layout-529a .image_paper_e181 {
    font-size: 0.65rem;
  }

  .top_1d82,
  .plasma_3cfe {
    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, .status_09c9, .table-focused-6e74, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .dim-6479 {
    padding: 1rem;
  }

  .pattern_west_106c {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .popup-dark-0cbd {
    padding: 0.875rem;
  }

  .top_10e2 {
    font-size: 1.25rem;
  }

  .menu_center_805f .menu_clean_6257 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .surface_glass_98d1 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .menu_clean_6257 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .message_small_472a {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .button-east-7b37 {
    padding: 1rem;
  }

  .first_0d77 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .alert_c640,
  .detail_tall_a358,
  .texture-7feb,
  .section-8482 {
    padding: 1rem;
  }
}

@media print {
  .under_873a,
  .white_6dc7,
  .fast_1bc3,
  .menu_clean_6257,
  .box_bottom_affa {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .status_09c9 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.slider_332b {
  margin-bottom: 3rem;
  text-align: center;
}

.lite_0216 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.gas_48c4 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.texture-d849,
.stale-f090 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.label_old_9364 {
  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;
}

.label_old_9364:hover {
  transform: translateY(-5px);
}

.label_old_9364 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.label_old_9364 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.accordion-plasma-dccb {
  margin: 3rem 0;
}

.media-6528 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.silver-9b99 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.silver-9b99:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.description-49a1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.logo_5cc4 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.highlight_rough_cadb {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.bottom-bb2b {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.glass-78e1 {
  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;
}

.glass-78e1:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.glass-78e1.smooth_899c {
  border-left: 4px solid var(--primary-color);
}

.container_complex_60f7 {
  flex-shrink: 0;
}

.container_complex_60f7 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.summary-last-cc62 {
  flex: 1;
}

.summary-last-cc62 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.detail_570f {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.blue-4fae,
.avatar_e3ee,
.bronze_60b1 {
  margin-bottom: 1.5rem;
}

.blue-4fae h4,
.avatar_e3ee h4,
.bronze_60b1 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blue-4fae ul,
.avatar_e3ee ul,
.bronze_60b1 ul {
  list-style: none;
  padding: 0;
}

.blue-4fae li,
.avatar_e3ee li,
.bronze_60b1 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.blue-4fae li:before,
.avatar_e3ee li:before,
.bronze_60b1 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.tooltip-45ad {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.tooltip-45ad 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;
}

.tooltip-45ad a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.first_6b62 { margin: 2rem 0; }
.popup_hard_ea9a { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.popup_hard_ea9a h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.notification_blue_b378 p { margin-bottom: 1rem; line-height: 1.7; }
.notification_blue_b378 strong { color: var(--text-primary); }
.notification_blue_b378 ul { list-style: none; padding-left: 0; }
.notification_blue_b378 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.notification_blue_b378 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.filter_medium_d96f { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.label_tall_63c3 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.label_tall_63c3:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.white-35e3 { font-size: 3rem; margin-bottom: 1rem; }
.label_tall_63c3 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.label_tall_63c3 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.alert_lite_47eb { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.alert_lite_47eb span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.accordion-warm-7832 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.layout_wood_c754 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.carousel_wide_eecb { text-align: center; }
.wood-f3c7 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.background_5d32 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.accent-plasma-4aa0 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.backdrop-dcb5 { margin: 2rem 0; }
.bronze-e09a { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.bronze-e09a h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.bronze-e09a p, .bronze-e09a ul { line-height: 1.7; }
.bronze-e09a ul { list-style: none; padding-left: 0; }
.bronze-e09a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.bronze-e09a ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.pattern_white_f22a { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.frame-82cd { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.wood-e340 { text-align: center; }
.column_left_787e { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.focused-4f79 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.texture_fixed_c2c6 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.small_3cf2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.search_middle_c6df { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.search_middle_c6df:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.search_middle_c6df h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.search_middle_c6df p, .search_middle_c6df ul { line-height: 1.7; }
.search_middle_c6df ul { list-style: none; padding-left: 0; }
.search_middle_c6df ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.search_middle_c6df ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 79bb */
.ghost-box-q9 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.2;
}
