/* ============================================
   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 */
.focused-f050 p,
.wide_31a3,
.message_last_3fe8,
.soft-2cba,
.narrow-32a4,
.banner-easy-c7ef,
.easy_57b9,
.wood_b51c {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.progress_medium_27c2 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.progress_medium_27c2 > *,
.text-8122,
.focused-f050,
.border-simple-8bae {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .progress_medium_27c2 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .progress_medium_27c2 {
    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 === */
.media-active-58c5 {
  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 */
.media-active-58c5.table_1287 {
  box-shadow: var(--shadow-md);
}

.advanced-4391 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.box_02b5 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.button_0fda {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.banner-1d27 {
  display: none;
}

/* Hide mobile actions on desktop */
.message_focused_9d78 {
  display: none;
}

.top-2d78 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.top-2d78 a:hover,
.top-2d78 a.fn-active-4b00 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.outline-a0eb {
  margin-left: 1rem;
}

.accordion-orange-7ee2 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.content-f17c,
.gold-1ba5 {
  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;
}

.content-f17c {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.content-f17c: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;
}

.gold-1ba5 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.gold-1ba5: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;
}

.content-f17c svg,
.gold-1ba5 svg {
  flex-shrink: 0;
}

.text-c1bf {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.section-selected-df0b {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.section-selected-df0b::before,
.section-selected-df0b::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.section-selected-df0b::before {
  top: -7px;
}

.section-selected-df0b::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.bright-bd76 {
  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 === */
.progress_pressed_8dca {
  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);
}

.up_7c86 {
  margin: 0 0 2rem;
  text-align: center;
}

.advanced_2376 {
  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;
}

.advanced_2376:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.popup-7e07 {
  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);
}

.popup-7e07 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.accordion_61b7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.button-f970 {
  text-align: center;
  padding: 1.25rem;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: 12px;
  border: 1px solid var(--primary-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button-f970:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.short-022b {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.feature-13ce {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.filter_bottom_318d {
  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);
}

.filter_bottom_318d .narrow-f626 {
  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;
}

.filter_bottom_318d .narrow-f626 svg {
  flex-shrink: 0;
}

.filter_bottom_318d .banner_cold_72f9 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.filter_bottom_318d .banner_cold_72f9: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);
}

.filter_bottom_318d .outline_lite_fcb1 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.filter_bottom_318d .outline_lite_fcb1: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) {
  .progress_pressed_8dca {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .advanced_2376 {
    max-width: 100%;
  }

  .accordion_61b7 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .button-f970 {
    padding: 1rem;
  }

  .short-022b {
    font-size: 1.5rem;
  }

  .feature-13ce {
    font-size: 0.75rem;
  }

  .popup-7e07 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .filter_bottom_318d {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .filter_bottom_318d .narrow-f626 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .accordion_61b7 {
    grid-template-columns: 1fr;
  }
}

.progress-eb0a {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.info_fluid_94a7 {
  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 === */
.media-4a0f {
  margin-bottom: 2.5rem;
}

.section_east_c908 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.progress-eb0a {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.right_5b0f {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.left_420c {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.liquid-bee6 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.red_991f {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.stone_9da5 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.tall_cf1d {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tertiary_red_297e {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tertiary_red_297e svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.down-86d1 {
  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);
}

.breadcrumb_large_7e7d {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.red-82f1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.green-4c86 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.aside_east_203f {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.thumbnail_selected_edf5 {
  display: grid;
  gap: 1rem;
}

.form-fb79 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.paragraph-a790 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.north-f3a0 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.header-b517 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.tiny-1dfd {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.element_0958 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.element_0958 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.wide_31a3 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.pagination_gold_96b1 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.link-b387 {
  display: grid;
  gap: 2rem;
}

.stale-3724 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.left_420c {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.right_5b0f {
  flex: 1;
}

.red_991f {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.red_991f a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.summary-81b5 {
  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;
}

.stone_9da5 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.light-bf28 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.light-bf28 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.tiny_1f52 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.tiny_1f52 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.breadcrumb_dark_6ff2 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.breadcrumb_dark_6ff2 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.breadcrumb_dark_6ff2 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.breadcrumb_dark_6ff2 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.filter_e4e7 {
  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 === */
.hidden-up-4479 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.thumbnail-next-5f60 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.hero_black_60d9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.bottom-1c13 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.bottom-1c13 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.bottom-1c13 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.bottom-1c13 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;
}

.bottom-1c13 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.bottom-1c13 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.focused-f050 {
  padding: 3rem 0 5rem;
}

.border-simple-8bae {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.border-simple-8bae.down-95f6 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.message_last_3fe8 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.tabs-inner-ccae {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.accordion-edc5 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.accordion-edc5 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.status_full_6fbc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.input_hovered_d837 {
  text-align: center;
}

.surface_up_f0b5 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.rough-7c00 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.paragraph_42c7 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.banner-easy-c7ef {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.soft-2cba {
  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;
}

.soft-2cba * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.soft-2cba:hover {
  box-shadow: var(--shadow-lg);
}

.soft-2cba.image-fb38 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.soft-2cba h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.soft-2cba ul {
  margin: 1rem 0;
}

.soft-2cba li {
  margin-bottom: 0.75rem;
}

.progress_f264 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.nav-selected-1b4e {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.nav-selected-1b4e a {
  font-weight: 600;
}

/* === Data Tables === */
.alert-steel-099f {
  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;
}

.alert-steel-099f table {
  width: 100%;
  min-width: 600px;
}

.alert-steel-099f thead {
  background-color: var(--primary-color);
  color: white;
}

.alert-steel-099f th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.alert-steel-099f td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.alert-steel-099f tbody tr:hover {
  background-color: var(--bg-secondary);
}

.alert-steel-099f tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.accent_f9d2 {
  list-style: none;
  margin: 1.5rem 0;
}

.accent_f9d2 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.accent_f9d2 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.disabled_west_2e95::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-4b00::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 === */
.texture_c605 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.slow-aafe {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.slow-aafe img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.slow-aafe strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.slow-aafe span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.texture_c605 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.easy_57b9 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.easy_57b9::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.section_hard_41ef {
  position: relative;
  margin-bottom: 3rem;
}

.clean-77e1 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.clean-77e1 .module_02c8 {
  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;
}

.logo-1a3a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.logo-1a3a h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.logo-1a3a ul {
  margin: 1rem 0;
}

.logo-1a3a li {
  margin-bottom: 0.75rem;
}

.notification_3ab0 {
  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 === */
.gradient-b4ce {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.gradient-b4ce h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.fresh_ce9e {
  list-style: none;
  margin: 1.5rem 0;
}

.fresh_ce9e li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.fresh_ce9e a {
  font-weight: 600;
}

.blue_e6d1 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.wood_b51c {
  margin: 2.5rem 0;
}

.dark_63e7 {
  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;
}

.dark_63e7:hover {
  box-shadow: var(--shadow-lg);
}

.dark_63e7.red-a4a3 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.feature_3b97 {
  flex-shrink: 0;
}

.feature_3b97 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);
}

.mask-blue-fe5a h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.nav-purple-8bfa,
.hero-east-74bb,
.info_brown_0e82 {
  width: 100%;
  margin: 1.5rem 0;
}

.avatar_out_02fd {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.avatar_out_02fd strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.layout_old_db75 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.layout_old_db75 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.down_f64a {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.down_f64a strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.video_bronze_4d88 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.heading_aac8 {
  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;
}

.heading_aac8:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.heading_aac8.gradient-64aa {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.heading_aac8 .pressed_db7d {
  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;
}

.heading_aac8 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.pro_35d9 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.gold-44fa {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.gold-44fa label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.filter_8396 {
  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 === */
.narrow-f626 {
  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;
}

.banner_cold_72f9 {
  background-color: var(--primary-color);
  color: white;
}

.banner_cold_72f9:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.outline_lite_fcb1 {
  background-color: var(--text-secondary);
  color: white;
}

.outline_lite_fcb1:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.cool_1c32 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.cool_1c32:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.highlight-middle-6087 {
  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;
}

.highlight-middle-6087:hover {
  background-color: var(--primary-dark);
}

.photo_0c17 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.dirty_d838 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.overlay_6c4b {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.widget-glass-e839 {
  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 === */
.left_40e8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.paragraph-dark-38a3 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.paragraph-dark-38a3 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.widget_dirty_26f7 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.button-0d23 {
  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;
}

.banner-ffdd {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.sort-2c65 {
  list-style: none;
  counter-reset: rank-counter;
}

.sort-2c65 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.sort-2c65 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;
}

.pink-4aab {
  list-style: none;
}

.pink-4aab li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.summary-motion-8d6b {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.aside-1b0b {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.aside-1b0b .dropdown_pink_ab18 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.aside-1b0b .title_bronze_6cff {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.banner-e019 {
  margin-top: 3rem;
}

.tertiary_dd3e {
  width: 100%;
}

.gold_4f2b {
  background-color: #fef3c7;
}

.video-f314 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.narrow_286c {
  margin: 3rem 0;
}

.shade-0e78 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.tall-27f7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.tall-27f7:hover {
  box-shadow: var(--shadow-lg);
}

.tall-27f7.lite-db77 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.sort_middle_1f60 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.lite_f2ad strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.lite_f2ad span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.south-a268 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tall-27f7 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.primary_500b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.glass_1c04 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.popup-633b {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.tall-c548 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.form-right-0c39 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.photo_7f90 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.pagination_down_466e {
  max-width: 900px;
  margin: 0 auto;
}

.filter_pressed_b27c {
  margin: 2rem 0;
}

.paragraph_20a6 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.paragraph_20a6 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.paragraph_20a6 summary::-webkit-details-marker {
  display: none;
}

.paragraph_20a6 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.dirty_980b {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.paragraph_20a6[open] .dirty_980b {
  transform: rotate(45deg);
}

.block-solid-d749 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.block-solid-d749 p:last-child {
  margin-bottom: 0;
}

.active_805d {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.paragraph-a103 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.title-3423 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.title-3423 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.title-3423 .narrow-f626 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.badge-7414 {
  max-width: 900px;
  margin: 0 auto;
}

.sidebar_3bff {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.up-4678 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.up-4678.fn-success-4b00 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.hidden_1c05 {
  font-size: 3rem;
  line-height: 1;
}

.prev-24a1 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.thumbnail_middle_3eeb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.search-9aeb,
.backdrop_east_7ac2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.search-9aeb h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.backdrop_east_7ac2 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.yellow_2ef7,
.header-73b7 {
  margin: 1.5rem 0;
}

.yellow_2ef7 li,
.header-73b7 li {
  margin-bottom: 1rem;
}

.element_pressed_b75d {
  margin: 3rem 0;
}

.mini_c129 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.mini_c129 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.mini_c129 ol {
  margin: 1rem 0;
}

.mini_c129 li {
  margin-bottom: 0.75rem;
}

.tertiary-purple-24cd {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.iron_7779 {
  margin: 2rem 0;
}

.black_fc24 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.overlay-white-439f {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.prev-2f19 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.module-mini-74b2 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.chip_copper_add4 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.fast_f16d {
  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;
}

.fast_f16d img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.liquid-bee6 {
  flex: 1;
}

.liquid-bee6 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.panel_narrow_8f54 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer_b316 p {
  margin-bottom: 1rem;
}

.bronze-d2a2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.soft-81f3 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.hard-06e7 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.hard-06e7 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.new_3d2c h3 {
  margin-bottom: 1.5rem;
}

.cold-e9ab {
  display: grid;
  gap: 2rem;
}

.message-af61 {
  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;
}

.message-af61 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.message-af61 h4 {
  margin: 0 0 0.25rem;
}

.message-af61 p {
  margin: 0;
  font-size: 0.9375rem;
}

.link-298f {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.widget-5c46 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.widget-5c46 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.widget-5c46 ul {
  margin: 1.5rem 0;
}

.widget-5c46 li {
  margin-bottom: 0.75rem;
}

.detail_65ee {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.active_e4cd {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.purple-e65b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.carousel-motion-eb52 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.carousel-motion-eb52 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.progress_full_62b3 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.progress_full_62b3 a {
  color: rgba(255, 255, 255, 0.8);
}

.dropdown_c93e {
  list-style: none;
}

.dropdown_c93e li {
  margin-bottom: 0.75rem;
}

.dropdown_c93e a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.dropdown_c93e a:hover {
  color: white;
}

.focus_warm_7e69 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.dirty-69b2 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.plasma-e404 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.backdrop_7314 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.paragraph-68e1 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .progress_medium_27c2 {
    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;
  }

  .sort_lower_e414 {
    font-size: 1.5rem !important;
  }

  .section_east_c908 {
    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 */
  .soft-2cba,
  .narrow-32a4,
  .logo-1a3a,
  .mask-blue-fe5a,
  .sort_middle_1f60,
  .tall-27f7,
  .block-solid-d749,
  .popup-7e07,
  .wide_31a3,
  .message_last_3fe8 {
    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 */
  .progress-eb0a {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .right_5b0f {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .left_420c {
    flex-shrink: 0;
  }

  .liquid-bee6 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .red_991f,
  .stone_9da5 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .stone_9da5 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .button_0fda {
    display: none;
  }

  /* Show mobile actions */
  .message_focused_9d78 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .nav_a393 {
    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;
  }

  .nav_a393 svg {
    flex-shrink: 0;
  }

  .nav_a393 .secondary-solid-ff5b {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .nav_a393 .mask-west-4c5b {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .hero-1a94 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .active_6ef6 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .nav_a393:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .banner-1d27 {
    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;
  }

  .banner-1d27.fn-active-4b00 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .banner-1d27 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .banner-1d27 li:last-child {
    border-bottom: none;
  }

  .banner-1d27 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .top-2d78 {
    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;
  }

  .top-2d78 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .top-2d78 li:last-child {
    border-bottom: none;
  }

  .top-2d78 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .outline-a0eb {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .accordion-orange-7ee2 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .content-f17c,
  .gold-1ba5 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .content-f17c {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .gold-1ba5 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .top-2d78.fn-active-4b00 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .text-c1bf {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .media-active-58c5 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .advanced-4391 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .bright-bd76 {
    margin-top: 0;
  }

  /* Hero section */
  .bright-bd76 {
    padding: 2rem 0 1.5rem;
  }

  .section_east_c908 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .wide_31a3 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .progress_pressed_8dca {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .advanced_2376 {
    max-width: 100%;
    border-radius: 8px;
  }

  .accordion_61b7 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .button-f970 {
    padding: 1rem;
  }

  .short-022b {
    font-size: 1.5rem;
  }

  .feature-13ce {
    font-size: 0.75rem;
  }

  .popup-7e07 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .filter_bottom_318d {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .filter_bottom_318d .narrow-f626 {
    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 */
  .hero_black_60d9 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .dark_63e7 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .feature_3b97 {
    margin-bottom: 1rem;
  }

  /* Author */
  .stale-3724 {
    flex-direction: column;
  }

  .fast_f16d {
    flex-direction: column;
  }

  /* Quotes */
  .sort_middle_1f60 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .thumbnail_middle_3eeb {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .module-mini-74b2 {
    flex-direction: column;
  }

  .module-mini-74b2 .narrow-f626 {
    width: 100%;
  }

  /* Version comparison */
  .video_bronze_4d88 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .left_40e8 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .purple-e65b {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .plasma-e404 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .alert-steel-099f,
  .hero-east-74bb,
  .layout_hot_12b4,
  .tertiary_dd3e,
  .nav-purple-8bfa,
  .info_brown_0e82 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .alert-steel-099f table,
  .hero-east-74bb table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .filter_8396 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .progress_medium_27c2 {
    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;
  }

  .sort_lower_e414 {
    font-size: 1.25rem !important;
  }

  .section_east_c908 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .media-active-58c5 {
    position: fixed;
  }

  .advanced-4391 {
    padding: 0.625rem 0;
  }

  .box_02b5 img {
    height: 26px;
  }

  .top-2d78 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .banner-1d27 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .nav_a393 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .nav_a393 svg {
    width: 18px;
    height: 18px;
  }

  .nav_a393 .secondary-solid-ff5b {
    font-size: 0.7rem;
  }

  .nav_a393 .mask-west-4c5b {
    font-size: 0.65rem;
  }

  .content-f17c,
  .gold-1ba5 {
    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, .progress_medium_27c2, .text-8122, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .progress_pressed_8dca {
    padding: 1rem;
  }

  .accordion_61b7 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .button-f970 {
    padding: 0.875rem;
  }

  .short-022b {
    font-size: 1.25rem;
  }

  .filter_bottom_318d .narrow-f626 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .section_east_c908 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .narrow-f626 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .photo_0c17 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .dark_63e7 {
    padding: 1rem;
  }

  .feature_3b97 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .soft-2cba,
  .pagination-motion-752a,
  .item_0453,
  .small-e2a7 {
    padding: 1rem;
  }
}

@media print {
  .media-active-58c5,
  .hidden-up-4479,
  .text-c1bf,
  .narrow-f626,
  .active_e4cd {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .progress_medium_27c2 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.gas_1e32 {
  margin-bottom: 3rem;
  text-align: center;
}

.sort_lower_e414 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.wide_32d7 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.slow_7c51,
.info-f74c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.input-fresh-5986 {
  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;
}

.input-fresh-5986:hover {
  transform: translateY(-5px);
}

.input-fresh-5986 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.input-fresh-5986 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.module_middle_259d {
  margin: 3rem 0;
}

.disabled_d67f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.status-616b {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.status-616b:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.tabs-pro-ed50 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.right_dd20 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.hard_9943 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.hover-e30a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.search-b081 {
  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;
}

.search-b081:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.search-b081.paragraph_gas_f643 {
  border-left: 4px solid var(--primary-color);
}

.notice_tall_5a9e {
  flex-shrink: 0;
}

.notice_tall_5a9e svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.blue_7bdb {
  flex: 1;
}

.blue_7bdb h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.summary-6633 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.action_e134,
.breadcrumb_9fd5,
.thumbnail_3cd7 {
  margin-bottom: 1.5rem;
}

.action_e134 h4,
.breadcrumb_9fd5 h4,
.thumbnail_3cd7 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.action_e134 ul,
.breadcrumb_9fd5 ul,
.thumbnail_3cd7 ul {
  list-style: none;
  padding: 0;
}

.action_e134 li,
.breadcrumb_9fd5 li,
.thumbnail_3cd7 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.action_e134 li:before,
.breadcrumb_9fd5 li:before,
.thumbnail_3cd7 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.input-a11a {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.input-a11a 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;
}

.input-a11a a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.lower-1f45 { margin: 2rem 0; }
.slider_c4d2 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.slider_c4d2 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.hard_7a91 p { margin-bottom: 1rem; line-height: 1.7; }
.hard_7a91 strong { color: var(--text-primary); }
.hard_7a91 ul { list-style: none; padding-left: 0; }
.hard_7a91 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.hard_7a91 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.hard-a98e { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.video_solid_9ec4 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.video_solid_9ec4:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.outline_24ab { font-size: 3rem; margin-bottom: 1rem; }
.video_solid_9ec4 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.video_solid_9ec4 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.dropdown_3f6e { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.dropdown_3f6e span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.menu_left_93df { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.hero_9cc5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.thumbnail-first-5c5c { text-align: center; }
.complex_8775 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.breadcrumb-warm-c322 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.secondary-37fc { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.card-fb22 { margin: 2rem 0; }
.background-medium-742b { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.background-medium-742b h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.background-medium-742b p, .background-medium-742b ul { line-height: 1.7; }
.background-medium-742b ul { list-style: none; padding-left: 0; }
.background-medium-742b ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.background-medium-742b ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.complex_d93b { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.progress-hard-b414 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.dropdown_f86c { text-align: center; }
.gallery_130e { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.hot_af60 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.under_9c92 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.shade_5c92 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.pink_a039 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.pink_a039:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.pink_a039 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.pink_a039 p, .pink_a039 ul { line-height: 1.7; }
.pink_a039 ul { list-style: none; padding-left: 0; }
.pink_a039 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.pink_a039 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 81e3 */
.promo-block-v0 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.0;
}
