/* ============================================
   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 */
.pagination_bright_a393 p,
.dark_26ae,
.feature_first_aee8,
.last-a42b,
.paragraph_fresh_e1c7,
.black-2773,
.aside-6de6,
.section-f5f9 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.prev-09a1 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.prev-09a1 > *,
.tertiary_fac1,
.pagination_bright_a393,
.progress_left_523a {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .prev-09a1 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .prev-09a1 {
    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 === */
.summary_north_2b91 {
  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 */
.summary_north_2b91.brown_13ad {
  box-shadow: var(--shadow-md);
}

.blue_6e96 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.breadcrumb-740b img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.focus_stone_4735 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.complex-64e0 {
  display: none;
}

/* Hide mobile actions on desktop */
.panel-9b02 {
  display: none;
}

.tooltip-baf0 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.tooltip-baf0 a:hover,
.tooltip-baf0 a.fn-active-c30f {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.paragraph-steel-3a3b {
  margin-left: 1rem;
}

.description_steel_2f9d {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.hard_1080,
.notification_dynamic_fae9 {
  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;
}

.hard_1080 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.hard_1080: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;
}

.notification_dynamic_fae9 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.notification_dynamic_fae9: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;
}

.hard_1080 svg,
.notification_dynamic_fae9 svg {
  flex-shrink: 0;
}

.caption_9bcb {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.section_rough_444f {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.section_rough_444f::before,
.section_rough_444f::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.section_rough_444f::before {
  top: -7px;
}

.section_rough_444f::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.table_744c {
  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 === */
.hover-ea69 {
  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);
}

.icon_1ff2 {
  margin: 0 0 2rem;
  text-align: center;
}

.shadow-6856 {
  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;
}

.shadow-6856:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.hot_daff {
  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);
}

.hot_daff strong {
  color: var(--primary-color);
  font-weight: 700;
}

.top-3a69 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.hidden_40da {
  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;
}

.hidden_40da:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.right_f1a7 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.static-7ac4 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.action_c62c {
  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);
}

.action_c62c .wrapper-smooth-0ce7 {
  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;
}

.action_c62c .wrapper-smooth-0ce7 svg {
  flex-shrink: 0;
}

.action_c62c .middle-87d4 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.action_c62c .middle-87d4: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);
}

.action_c62c .carousel-f377 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.action_c62c .carousel-f377: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) {
  .hover-ea69 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .shadow-6856 {
    max-width: 100%;
  }

  .top-3a69 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hidden_40da {
    padding: 1rem;
  }

  .right_f1a7 {
    font-size: 1.5rem;
  }

  .static-7ac4 {
    font-size: 0.75rem;
  }

  .hot_daff {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .action_c62c {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .action_c62c .wrapper-smooth-0ce7 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .top-3a69 {
    grid-template-columns: 1fr;
  }
}

.paragraph-c5f8 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.brown-c10e {
  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 === */
.module_lite_3935 {
  margin-bottom: 2.5rem;
}

.message_down_3f36 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.paragraph-c5f8 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.paper-3489 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brown_150b {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.slider_a99b {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.smooth-06f7 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.background-4c03 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.footer-f686 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.last_711f {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.last_711f svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.sidebar_acef {
  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);
}

.short-7119 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.slider-narrow-3581 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.icon-50a5 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.chip_0645 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.solid-69c9 {
  display: grid;
  gap: 1rem;
}

.short-e1f3 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.form_new_05a5 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.table-ff37 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.smooth-f28e {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.dynamic_d118 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.feature_0b82 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.feature_0b82 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.dark_26ae {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.first_146f {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.table-pink-fdbe {
  display: grid;
  gap: 2rem;
}

.button-inner-e3d5 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.brown_150b {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.paper-3489 {
  flex: 1;
}

.smooth-06f7 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.smooth-06f7 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.pattern_east_2e3a {
  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;
}

.background-4c03 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.article_5d9e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.article_5d9e span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.summary_fixed_f7e4 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.summary_fixed_f7e4 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.sort_west_6f1f {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.sort_west_6f1f strong {
  display: block;
  margin-bottom: 0.75rem;
}

.sort_west_6f1f ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sort_west_6f1f li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.banner-medium-7ecf {
  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 === */
.bright-6f2f {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.stone_b730 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.banner_801d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.breadcrumb_basic_e57c h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.breadcrumb_basic_e57c ol {
  list-style: none;
  counter-reset: toc-counter;
}

.breadcrumb_basic_e57c ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.breadcrumb_basic_e57c 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;
}

.breadcrumb_basic_e57c ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.breadcrumb_basic_e57c ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.pagination_bright_a393 {
  padding: 3rem 0 5rem;
}

.progress_left_523a {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.progress_left_523a.photo_hard_4b1b {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.feature_first_aee8 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.mask-99fa {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.form_711c {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.form_711c h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.panel-84b4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.video_hard_2f58 {
  text-align: center;
}

.panel-30e8 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.label_c22d {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.preview-smooth-8a5f {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.black-2773 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.last-a42b {
  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;
}

.last-a42b * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.last-a42b:hover {
  box-shadow: var(--shadow-lg);
}

.last-a42b.tooltip_ef3b {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.last-a42b h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.last-a42b ul {
  margin: 1rem 0;
}

.last-a42b li {
  margin-bottom: 0.75rem;
}

.up-2d31 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.badge-down-971b {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.badge-down-971b a {
  font-weight: 600;
}

/* === Data Tables === */
.notice_middle_efff {
  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;
}

.notice_middle_efff table {
  width: 100%;
  min-width: 600px;
}

.notice_middle_efff thead {
  background-color: var(--primary-color);
  color: white;
}

.notice_middle_efff th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.notice_middle_efff td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.notice_middle_efff tbody tr:hover {
  background-color: var(--bg-secondary);
}

.notice_middle_efff tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.footer-9da9 {
  list-style: none;
  margin: 1.5rem 0;
}

.footer-9da9 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.footer-9da9 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.logo-focused-9e1d::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-c30f::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 === */
.pink-5faa {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.wood-1dfe {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.wood-1dfe img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.wood-1dfe strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.wood-1dfe span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pink-5faa blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.aside-6de6 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.aside-6de6::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.hard_1ae5 {
  position: relative;
  margin-bottom: 3rem;
}

.message_dirty_5643 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.message_dirty_5643 .input_inner_66cd {
  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;
}

.grid-dynamic-5882 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.grid-dynamic-5882 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.grid-dynamic-5882 ul {
  margin: 1rem 0;
}

.grid-dynamic-5882 li {
  margin-bottom: 0.75rem;
}

.text-94d9 {
  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 === */
.west-33d0 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.west-33d0 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.popup-d65f {
  list-style: none;
  margin: 1.5rem 0;
}

.popup-d65f li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.popup-d65f a {
  font-weight: 600;
}

.complex-b9d2 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.section-f5f9 {
  margin: 2.5rem 0;
}

.complex-c3da {
  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;
}

.complex-c3da:hover {
  box-shadow: var(--shadow-lg);
}

.complex-c3da.column-out-c4c9 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.photo_plasma_2f1d {
  flex-shrink: 0;
}

.photo_plasma_2f1d 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);
}

.hard-1343 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.rough-41b6,
.menu_mini_a569,
.green-1f4c {
  width: 100%;
  margin: 1.5rem 0;
}

.box_clean_6325 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.box_clean_6325 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.bronze-8436 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.bronze-8436 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.texture_2afb {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.texture_2afb strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.texture-0a42 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.header_710e {
  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;
}

.header_710e:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.header_710e.up-4898 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.header_710e .modal_b0f0 {
  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;
}

.header_710e h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.nav-ab7e {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.content_south_6c13 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.content_south_6c13 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.middle_fedc {
  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 === */
.wrapper-smooth-0ce7 {
  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;
}

.middle-87d4 {
  background-color: var(--primary-color);
  color: white;
}

.middle-87d4:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.carousel-f377 {
  background-color: var(--text-secondary);
  color: white;
}

.carousel-f377:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.menu_c877 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.menu_c877:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.gas_c9a3 {
  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;
}

.gas_c9a3:hover {
  background-color: var(--primary-dark);
}

.summary-73cd {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.motion-1b95 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.progress_bottom_9896 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.sidebar-stale-be49 {
  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 === */
.form_over_76b1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.block-fcf7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.block-fcf7 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.frame-0f60 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.over_1936 {
  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;
}

.basic_81a5 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.top-cc43 {
  list-style: none;
  counter-reset: rank-counter;
}

.top-cc43 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.top-cc43 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;
}

.stone_e5f0 {
  list-style: none;
}

.stone_e5f0 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.tiny-e7cf {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.grid-bottom-d38e {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.grid-bottom-d38e .avatar-2d5d {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.grid-bottom-d38e .gas-181f {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mask-b93c {
  margin-top: 3rem;
}

.element_0df9 {
  width: 100%;
}

.wood_799b {
  background-color: #fef3c7;
}

.logo_9f5c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.icon-first-4c96 {
  margin: 3rem 0;
}

.purple-5044 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.menu_clean_c62e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.menu_clean_c62e:hover {
  box-shadow: var(--shadow-lg);
}

.menu_clean_c62e.carousel_solid_f554 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.overlay-59dd {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.caption_upper_d454 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.caption_upper_d454 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.gold-f95c {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.menu_clean_c62e blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.box_left_b457 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.nav-d0f7 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.active-fixed-e8f1 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.gold_57ef {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.table_8a98 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.preview_c785 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.row_036d {
  max-width: 900px;
  margin: 0 auto;
}

.text-narrow-c719 {
  margin: 2rem 0;
}

.border-e9b4 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.border-e9b4 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.border-e9b4 summary::-webkit-details-marker {
  display: none;
}

.border-e9b4 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.pagination_0fa2 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.border-e9b4[open] .pagination_0fa2 {
  transform: rotate(45deg);
}

.widget_huge_e92d {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.widget_huge_e92d p:last-child {
  margin-bottom: 0;
}

.out_a25b {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.shade_stone_8a24 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.modal-a924 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.modal-a924 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.modal-a924 .wrapper-smooth-0ce7 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.photo_over_e3c0 {
  max-width: 900px;
  margin: 0 auto;
}

.hot_e2e5 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.input-c7af {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.input-c7af.fn-success-c30f {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.hover_85e9 {
  font-size: 3rem;
  line-height: 1;
}

.smooth_ca0b h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.filter_plasma_8dda {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-8771,
.tag-5e6e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.feature-8771 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.tag-5e6e h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.description-huge-b3d2,
.silver-e07b {
  margin: 1.5rem 0;
}

.description-huge-b3d2 li,
.silver-e07b li {
  margin-bottom: 1rem;
}

.focus_c95c {
  margin: 3rem 0;
}

.slider-1ea3 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.slider-1ea3 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.slider-1ea3 ol {
  margin: 1rem 0;
}

.slider-1ea3 li {
  margin-bottom: 0.75rem;
}

.highlight_1a8a {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.main_fast_2b02 {
  margin: 2rem 0;
}

.feature-b679 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.logo-fresh-7848 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.gold-a98c {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.active_5822 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.gradient_last_e915 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.next-932d {
  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;
}

.next-932d img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.slider_a99b {
  flex: 1;
}

.slider_a99b h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.gradient-south-c57a {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.dynamic_0dbf p {
  margin-bottom: 1rem;
}

.nav_6005 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.full_8270 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.fresh-983e {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.fresh-983e a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.action_d678 h3 {
  margin-bottom: 1.5rem;
}

.glass_a4d7 {
  display: grid;
  gap: 2rem;
}

.summary_7c3c {
  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;
}

.summary_7c3c img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.summary_7c3c h4 {
  margin: 0 0 0.25rem;
}

.summary_7c3c p {
  margin: 0;
  font-size: 0.9375rem;
}

.label-dirty-7870 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.complex-3020 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.complex-3020 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.complex-3020 ul {
  margin: 1.5rem 0;
}

.complex-3020 li {
  margin-bottom: 0.75rem;
}

.basic-bf41 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.component_static_fd10 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.tertiary-a8b1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.dim_260a h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.dim_260a p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.search_south_c231 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.search_south_c231 a {
  color: rgba(255, 255, 255, 0.8);
}

.black-a21c {
  list-style: none;
}

.black-a21c li {
  margin-bottom: 0.75rem;
}

.black-a21c a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.black-a21c a:hover {
  color: white;
}

.stale_0f33 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.feature_selected_325c {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.status_iron_2f43 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.tooltip-south-014a {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.item-advanced-3ad1 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .prev-09a1 {
    padding: 0 1.25rem;
  }

  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
  }

  /* Reduce heading sizes for mobile */
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.125rem;
  }

  .last-c0d1 {
    font-size: 1.5rem !important;
  }

  .message_down_3f36 {
    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 */
  .last-a42b,
  .paragraph_fresh_e1c7,
  .grid-dynamic-5882,
  .hard-1343,
  .overlay-59dd,
  .menu_clean_c62e,
  .widget_huge_e92d,
  .hot_daff,
  .dark_26ae,
  .feature_first_aee8 {
    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 */
  .paragraph-c5f8 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .paper-3489 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .brown_150b {
    flex-shrink: 0;
  }

  .slider_a99b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .smooth-06f7,
  .background-4c03 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .background-4c03 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .focus_stone_4735 {
    display: none;
  }

  /* Show mobile actions */
  .panel-9b02 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .element_1173 {
    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;
  }

  .element_1173 svg {
    flex-shrink: 0;
  }

  .element_1173 .hard_9a86 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .element_1173 .preview_active_80df {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .backdrop-narrow-1b7f {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .feature-hard-f527 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .element_1173:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .complex-64e0 {
    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;
  }

  .complex-64e0.fn-active-c30f {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .complex-64e0 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .complex-64e0 li:last-child {
    border-bottom: none;
  }

  .complex-64e0 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .tooltip-baf0 {
    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;
  }

  .tooltip-baf0 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .tooltip-baf0 li:last-child {
    border-bottom: none;
  }

  .tooltip-baf0 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .paragraph-steel-3a3b {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .description_steel_2f9d {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .hard_1080,
  .notification_dynamic_fae9 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .hard_1080 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .notification_dynamic_fae9 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .tooltip-baf0.fn-active-c30f {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .caption_9bcb {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .summary_north_2b91 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .blue_6e96 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .table_744c {
    margin-top: 0;
  }

  /* Hero section */
  .table_744c {
    padding: 2rem 0 1.5rem;
  }

  .message_down_3f36 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .dark_26ae {
    font-size: 1rem;
  }

  /* Hero brand image */
  .hover-ea69 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .shadow-6856 {
    max-width: 100%;
    border-radius: 8px;
  }

  .top-3a69 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hidden_40da {
    padding: 1rem;
  }

  .right_f1a7 {
    font-size: 1.5rem;
  }

  .static-7ac4 {
    font-size: 0.75rem;
  }

  .hot_daff {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .action_c62c {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .action_c62c .wrapper-smooth-0ce7 {
    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 */
  .banner_801d {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .complex-c3da {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .photo_plasma_2f1d {
    margin-bottom: 1rem;
  }

  /* Author */
  .button-inner-e3d5 {
    flex-direction: column;
  }

  .next-932d {
    flex-direction: column;
  }

  /* Quotes */
  .overlay-59dd {
    flex-direction: column;
  }

  /* Pros/Cons */
  .filter_plasma_8dda {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .active_5822 {
    flex-direction: column;
  }

  .active_5822 .wrapper-smooth-0ce7 {
    width: 100%;
  }

  /* Version comparison */
  .texture-0a42 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .form_over_76b1 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .tertiary-a8b1 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .status_iron_2f43 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .notice_middle_efff,
  .menu_mini_a569,
  .dim-e750,
  .element_0df9,
  .rough-41b6,
  .green-1f4c {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .notice_middle_efff table,
  .menu_mini_a569 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .middle_fedc {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .prev-09a1 {
    padding: 0 1rem;
  }

  /* Reduce heading sizes even more for very small screens */
  h1 {
    font-size: 1.25rem;
  }

  h2 {
    font-size: 1.125rem;
  }

  h3 {
    font-size: 1rem;
  }

  .last-c0d1 {
    font-size: 1.25rem !important;
  }

  .message_down_3f36 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .summary_north_2b91 {
    position: fixed;
  }

  .blue_6e96 {
    padding: 0.625rem 0;
  }

  .breadcrumb-740b img {
    height: 26px;
  }

  .tooltip-baf0 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .complex-64e0 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .element_1173 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .element_1173 svg {
    width: 18px;
    height: 18px;
  }

  .element_1173 .hard_9a86 {
    font-size: 0.7rem;
  }

  .element_1173 .preview_active_80df {
    font-size: 0.65rem;
  }

  .hard_1080,
  .notification_dynamic_fae9 {
    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, .prev-09a1, .tertiary_fac1, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .hover-ea69 {
    padding: 1rem;
  }

  .top-3a69 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hidden_40da {
    padding: 0.875rem;
  }

  .right_f1a7 {
    font-size: 1.25rem;
  }

  .action_c62c .wrapper-smooth-0ce7 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .message_down_3f36 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .wrapper-smooth-0ce7 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .summary-73cd {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .complex-c3da {
    padding: 1rem;
  }

  .photo_plasma_2f1d span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .last-a42b,
  .red_7399,
  .overlay-next-ca50,
  .border_cold_d6f2 {
    padding: 1rem;
  }
}

@media print {
  .summary_north_2b91,
  .bright-6f2f,
  .caption_9bcb,
  .wrapper-smooth-0ce7,
  .component_static_fd10 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .prev-09a1 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.easy-dcb5 {
  margin-bottom: 3rem;
  text-align: center;
}

.last-c0d1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.description_action_086b {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.image-b422,
.black-ac50 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.texture-3b8c {
  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;
}

.texture-3b8c:hover {
  transform: translateY(-5px);
}

.texture-3b8c strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.texture-3b8c span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.modal-warm-8a03 {
  margin: 3rem 0;
}

.cold_9eb6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gradient-thick-7297 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.gradient-thick-7297:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.nav_blue_39c7 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.layout_active_7bb2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.backdrop_easy_b764 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.orange_004e {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.notice-up-3c17 {
  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;
}

.notice-up-3c17:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.notice-up-3c17.menu-wide-8d5b {
  border-left: 4px solid var(--primary-color);
}

.progress-7d12 {
  flex-shrink: 0;
}

.progress-7d12 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.top_b5c7 {
  flex: 1;
}

.top_b5c7 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.image-tall-34cd {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.outer_f713,
.smooth-4c50,
.status_21c6 {
  margin-bottom: 1.5rem;
}

.outer_f713 h4,
.smooth-4c50 h4,
.status_21c6 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.outer_f713 ul,
.smooth-4c50 ul,
.status_21c6 ul {
  list-style: none;
  padding: 0;
}

.outer_f713 li,
.smooth-4c50 li,
.status_21c6 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.outer_f713 li:before,
.smooth-4c50 li:before,
.status_21c6 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.title_tall_c75b {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.title_tall_c75b 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;
}

.title_tall_c75b a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.out-3ac0 { margin: 2rem 0; }
.stale-0912 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.stale-0912 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.progress-f28f p { margin-bottom: 1rem; line-height: 1.7; }
.progress-f28f strong { color: var(--text-primary); }
.progress-f28f ul { list-style: none; padding-left: 0; }
.progress-f28f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.progress-f28f ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.brown-3314 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.progress_tiny_1b6f { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.progress_tiny_1b6f:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.fluid-356d { font-size: 3rem; margin-bottom: 1rem; }
.progress_tiny_1b6f h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.progress_tiny_1b6f p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.status-in-5a5c { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.status-in-5a5c span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.notice_12c8 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.large-9649 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.bright-4950 { text-align: center; }
.focus-8726 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.heading-warm-a86a { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.outline-27b9 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.form-4d2d { margin: 2rem 0; }
.logo_dd32 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.logo_dd32 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.logo_dd32 p, .logo_dd32 ul { line-height: 1.7; }
.logo_dd32 ul { list-style: none; padding-left: 0; }
.logo_dd32 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.logo_dd32 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.up_22af { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.feature_right_8259 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.tooltip_easy_b199 { text-align: center; }
.active-d693 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.frame_f3aa { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.tooltip_full_305a { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.gallery_c830 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.title_liquid_958f { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.title_liquid_958f:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.title_liquid_958f h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.title_liquid_958f p, .title_liquid_958f ul { line-height: 1.7; }
.title_liquid_958f ul { list-style: none; padding-left: 0; }
.title_liquid_958f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.title_liquid_958f ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 0555 */
.phantom-card-c5 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.3;
}
