/* ============================================
   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 */
.article_b23f p,
.slider-left-b6be,
.north_193b,
.header_iron_1286,
.easy_b55b,
.highlight_plasma_32ea,
.outline_motion_423f,
.modal-center-7fbe {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.notice_177d {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.notice_177d > *,
.stone_4144,
.article_b23f,
.component-advanced-4a40 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .notice_177d {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .notice_177d {
    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 === */
.tabs_fede {
  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 */
.tabs_fede.short_3be0 {
  box-shadow: var(--shadow-md);
}

.left_b656 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo-yellow-c1d2 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.list-action-c645 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.block_thick_ac89 {
  display: none;
}

/* Hide mobile actions on desktop */
.plasma_d87e {
  display: none;
}

.content-faf0 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.content-faf0 a:hover,
.content-faf0 a.fn-active-69f0 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.progress-yellow-37d3 {
  margin-left: 1rem;
}

.input_02c2 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.background-7678,
.action-3369 {
  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;
}

.background-7678 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.background-7678: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;
}

.action-3369 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.action-3369: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;
}

.background-7678 svg,
.action-3369 svg {
  flex-shrink: 0;
}

.detail_57f7 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.shadow_easy_3a24 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.shadow_easy_3a24::before,
.shadow_easy_3a24::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.shadow_easy_3a24::before {
  top: -7px;
}

.shadow_easy_3a24::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.carousel-319f {
  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 === */
.narrow_8e64 {
  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);
}

.chip_0982 {
  margin: 0 0 2rem;
  text-align: center;
}

.wrapper-1a24 {
  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;
}

.wrapper-1a24:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.panel-6658 {
  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);
}

.panel-6658 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.badge_609f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.texture-0adf {
  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;
}

.texture-0adf:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.row-steel-5e53 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.south_566a {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.notice_1e5d {
  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);
}

.notice_1e5d .inner-b3a1 {
  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;
}

.notice_1e5d .inner-b3a1 svg {
  flex-shrink: 0;
}

.notice_1e5d .gold_20c2 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.notice_1e5d .gold_20c2: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);
}

.notice_1e5d .shadow_motion_a9c0 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.notice_1e5d .shadow_motion_a9c0: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) {
  .narrow_8e64 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .wrapper-1a24 {
    max-width: 100%;
  }

  .badge_609f {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .texture-0adf {
    padding: 1rem;
  }

  .row-steel-5e53 {
    font-size: 1.5rem;
  }

  .south_566a {
    font-size: 0.75rem;
  }

  .panel-6658 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .notice_1e5d {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .notice_1e5d .inner-b3a1 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .badge_609f {
    grid-template-columns: 1fr;
  }
}

.menu_3749 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.fresh-d7ad {
  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 === */
.top-0ffc {
  margin-bottom: 2.5rem;
}

.light_702c {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.menu_3749 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.paper_8145 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.title_fast_f5d6 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.tooltip_plasma_a073 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.table_liquid_5b24 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.carousel_cf89 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.label-7902 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.red-3ddd {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.red-3ddd svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.sort-yellow-294e {
  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);
}

.slider_ddcc {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.grid-3d9f {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.background_777f {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.text_brown_a458 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.badge_wood_fdf1 {
  display: grid;
  gap: 1rem;
}

.media-dynamic-81c5 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.hovered-747c {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.advanced_f638 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.aside-plasma-a739 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.layout-current-5abb {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.old-ab03 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.old-ab03 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.slider-left-b6be {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.background-c34e {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.mask-85df {
  display: grid;
  gap: 2rem;
}

.east_eaaa {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.title_fast_f5d6 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.paper_8145 {
  flex: 1;
}

.table_liquid_5b24 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.table_liquid_5b24 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.text-bottom-4044 {
  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;
}

.carousel_cf89 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.west-0a53 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.west-0a53 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.small-5b6e {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.small-5b6e a {
  font-size: 0.875rem;
  font-weight: 500;
}

.focus-hard-396a {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.focus-hard-396a strong {
  display: block;
  margin-bottom: 0.75rem;
}

.focus-hard-396a ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.focus-hard-396a li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.next_9189 {
  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 === */
.content_first_8eb3 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.north_8590 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.caption_b899 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.liquid_9b3b h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.liquid_9b3b ol {
  list-style: none;
  counter-reset: toc-counter;
}

.liquid_9b3b ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.liquid_9b3b 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;
}

.liquid_9b3b ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.liquid_9b3b ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.article_b23f {
  padding: 3rem 0 5rem;
}

.component-advanced-4a40 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.component-advanced-4a40.slow_8ac5 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.north_193b {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.right-4e1f {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.dropdown-da05 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.dropdown-da05 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.selected_9b2b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.notice-top-a7ae {
  text-align: center;
}

.hard-654a {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.motion-8ad7 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.overlay-ca7b {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.highlight_plasma_32ea {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.header_iron_1286 {
  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;
}

.header_iron_1286 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.header_iron_1286:hover {
  box-shadow: var(--shadow-lg);
}

.header_iron_1286.thumbnail-liquid-d6be {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.header_iron_1286 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.header_iron_1286 ul {
  margin: 1rem 0;
}

.header_iron_1286 li {
  margin-bottom: 0.75rem;
}

.pattern_wide_519f {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.liquid-fd8c {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.liquid-fd8c a {
  font-weight: 600;
}

/* === Data Tables === */
.dim_180c {
  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;
}

.dim_180c table {
  width: 100%;
  min-width: 600px;
}

.dim_180c thead {
  background-color: var(--primary-color);
  color: white;
}

.dim_180c th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.dim_180c td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.dim_180c tbody tr:hover {
  background-color: var(--bg-secondary);
}

.dim_180c tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.outer_682c {
  list-style: none;
  margin: 1.5rem 0;
}

.outer_682c li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.outer_682c li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.info-4ac7::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-69f0::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 === */
.basic_ed11 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.soft_0bd0 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.soft_0bd0 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.soft_0bd0 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.soft_0bd0 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.basic_ed11 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.outline_motion_423f {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.outline_motion_423f::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.accent-f00f {
  position: relative;
  margin-bottom: 3rem;
}

.shadow-hovered-5572 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.shadow-hovered-5572 .aside_c6b0 {
  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;
}

.notification_easy_848d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.notification_easy_848d h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.notification_easy_848d ul {
  margin: 1rem 0;
}

.notification_easy_848d li {
  margin-bottom: 0.75rem;
}

.purple_25c7 {
  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 === */
.form_smooth_ca9d {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.form_smooth_ca9d h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.button_warm_fa92 {
  list-style: none;
  margin: 1.5rem 0;
}

.button_warm_fa92 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.button_warm_fa92 a {
  font-weight: 600;
}

.notification_inner_ad6f {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.modal-center-7fbe {
  margin: 2.5rem 0;
}

.grid_3d13 {
  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;
}

.grid_3d13:hover {
  box-shadow: var(--shadow-lg);
}

.grid_3d13.caption_focused_9d8e {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.wide-1f89 {
  flex-shrink: 0;
}

.wide-1f89 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);
}

.section-8119 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.active-focused-c63a,
.mini-7f4e,
.widget_upper_1d05 {
  width: 100%;
  margin: 1.5rem 0;
}

.outline-fluid-977c {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.outline-fluid-977c strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.aside_bright_de86 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.aside_bright_de86 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.complex_720b {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.complex_720b strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.description-c14a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.info-31ed {
  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;
}

.info-31ed:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.info-31ed.accent_gas_6890 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.info-31ed .shade_center_7536 {
  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;
}

.info-31ed h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.inner_0d10 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.iron_bed0 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.iron_bed0 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.shade-af96 {
  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 === */
.inner-b3a1 {
  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;
}

.gold_20c2 {
  background-color: var(--primary-color);
  color: white;
}

.gold_20c2:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.shadow_motion_a9c0 {
  background-color: var(--text-secondary);
  color: white;
}

.shadow_motion_a9c0:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.outline_light_939b {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.outline_light_939b:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.media-41e3 {
  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;
}

.media-41e3:hover {
  background-color: var(--primary-dark);
}

.info_dark_0ac9 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.block-fresh-cf5b {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.tiny_e8be {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.liquid-8e4f {
  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 === */
.photo_6a5b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.info-1dce {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.info-1dce h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.inner-819e {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.new_c782 {
  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;
}

.article-de8c {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.primary_advanced_b2cc {
  list-style: none;
  counter-reset: rank-counter;
}

.primary_advanced_b2cc li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.primary_advanced_b2cc 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;
}

.prev-99d2 {
  list-style: none;
}

.prev-99d2 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.item_f006 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.sidebar-east-4ed3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-east-4ed3 .center-6d3e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.sidebar-east-4ed3 .sort_south_e67e {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.picture_cool_7411 {
  margin-top: 3rem;
}

.lite-b7e2 {
  width: 100%;
}

.column_bottom_e039 {
  background-color: #fef3c7;
}

.module_purple_3c2c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.aside-b044 {
  margin: 3rem 0;
}

.cold-19bd {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.box_steel_6bc2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.box_steel_6bc2:hover {
  box-shadow: var(--shadow-lg);
}

.box_steel_6bc2.info-lite-e0b9 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.hover-basic-81f6 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.last-ee11 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.last-ee11 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.bottom_0c3c {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.box_steel_6bc2 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.active_1ede {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.red-2e77 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.link_complex_9c9a {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.accordion_ff2d {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.thick-ccf6 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.sidebar-8fac {
  margin-top: 1rem;
}

/* === FAQ Section === */
.paragraph-c9bc {
  max-width: 900px;
  margin: 0 auto;
}

.chip_0be3 {
  margin: 2rem 0;
}

.content-67c2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.content-67c2 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.content-67c2 summary::-webkit-details-marker {
  display: none;
}

.content-67c2 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.image-focused-5619 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.content-67c2[open] .image-focused-5619 {
  transform: rotate(45deg);
}

.orange_37d7 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.orange_37d7 p:last-child {
  margin-bottom: 0;
}

.link-in-f996 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.steel_c340 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.item_81d9 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.item_81d9 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.item_81d9 .inner-b3a1 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.widget-3096 {
  max-width: 900px;
  margin: 0 auto;
}

.narrow-c241 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.backdrop_2f99 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.backdrop_2f99.fn-success-69f0 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.tertiary-264b {
  font-size: 3rem;
  line-height: 1;
}

.tooltip-first-07ca h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.pink-4197 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.block_20f0,
.filter_e038 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.block_20f0 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.filter_e038 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.shadow_8ef8,
.right-c17e {
  margin: 1.5rem 0;
}

.shadow_8ef8 li,
.right-c17e li {
  margin-bottom: 1rem;
}

.module_motion_2ff8 {
  margin: 3rem 0;
}

.backdrop_slow_1c4c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.backdrop_slow_1c4c h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.backdrop_slow_1c4c ol {
  margin: 1rem 0;
}

.backdrop_slow_1c4c li {
  margin-bottom: 0.75rem;
}

.accordion-west-3dcc {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.tiny-ba37 {
  margin: 2rem 0;
}

.gallery-7b46 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.dirty_4ee7 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.banner_gold_058d {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.icon_green_cfdc {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.detail_cold_58cd {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.narrow_366a {
  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;
}

.narrow_366a img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.tooltip_plasma_a073 {
  flex: 1;
}

.tooltip_plasma_a073 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.out_0e35 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.clean_f702 p {
  margin-bottom: 1rem;
}

.banner-full-f19d {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.heading-6210 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.huge-6c9a {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.huge-6c9a a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.hover_332f h3 {
  margin-bottom: 1.5rem;
}

.liquid-e39e {
  display: grid;
  gap: 2rem;
}

.tall_8b7a {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.tall_8b7a img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.tall_8b7a h4 {
  margin: 0 0 0.25rem;
}

.tall_8b7a p {
  margin: 0;
  font-size: 0.9375rem;
}

.filter_da85 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.silver_fc28 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.silver_fc28 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.silver_fc28 ul {
  margin: 1.5rem 0;
}

.silver_fc28 li {
  margin-bottom: 0.75rem;
}

.orange_8f28 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.pro-27e8 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.next-ea0c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.focused_2069 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.focused_2069 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.brown-064b {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.brown-064b a {
  color: rgba(255, 255, 255, 0.8);
}

.banner_liquid_fc21 {
  list-style: none;
}

.banner_liquid_fc21 li {
  margin-bottom: 0.75rem;
}

.banner_liquid_fc21 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.banner_liquid_fc21 a:hover {
  color: white;
}

.gold_db0f {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.dark-19b5 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.dark-dfdc {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.primary-b136 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.gallery-4c08 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .notice_177d {
    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;
  }

  .logo-south-22f6 {
    font-size: 1.5rem !important;
  }

  .light_702c {
    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 */
  .header_iron_1286,
  .easy_b55b,
  .notification_easy_848d,
  .section-8119,
  .hover-basic-81f6,
  .box_steel_6bc2,
  .orange_37d7,
  .panel-6658,
  .slider-left-b6be,
  .north_193b {
    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 */
  .menu_3749 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .paper_8145 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .title_fast_f5d6 {
    flex-shrink: 0;
  }

  .tooltip_plasma_a073 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .table_liquid_5b24,
  .carousel_cf89 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .carousel_cf89 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .list-action-c645 {
    display: none;
  }

  /* Show mobile actions */
  .plasma_d87e {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .hard_d3d8 {
    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;
  }

  .hard_d3d8 svg {
    flex-shrink: 0;
  }

  .hard_d3d8 .focus_brown_29d1 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .hard_d3d8 .accordion-9da1 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .center_3177 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .message-focused-5931 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .hard_d3d8:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .block_thick_ac89 {
    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;
  }

  .block_thick_ac89.fn-active-69f0 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .block_thick_ac89 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .block_thick_ac89 li:last-child {
    border-bottom: none;
  }

  .block_thick_ac89 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .content-faf0 {
    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;
  }

  .content-faf0 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .content-faf0 li:last-child {
    border-bottom: none;
  }

  .content-faf0 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .progress-yellow-37d3 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .input_02c2 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .background-7678,
  .action-3369 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .background-7678 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .action-3369 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .content-faf0.fn-active-69f0 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .detail_57f7 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .tabs_fede {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .left_b656 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .carousel-319f {
    margin-top: 0;
  }

  /* Hero section */
  .carousel-319f {
    padding: 2rem 0 1.5rem;
  }

  .light_702c {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .slider-left-b6be {
    font-size: 1rem;
  }

  /* Hero brand image */
  .narrow_8e64 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .wrapper-1a24 {
    max-width: 100%;
    border-radius: 8px;
  }

  .badge_609f {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .texture-0adf {
    padding: 1rem;
  }

  .row-steel-5e53 {
    font-size: 1.5rem;
  }

  .south_566a {
    font-size: 0.75rem;
  }

  .panel-6658 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .notice_1e5d {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .notice_1e5d .inner-b3a1 {
    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 */
  .caption_b899 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .grid_3d13 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .wide-1f89 {
    margin-bottom: 1rem;
  }

  /* Author */
  .east_eaaa {
    flex-direction: column;
  }

  .narrow_366a {
    flex-direction: column;
  }

  /* Quotes */
  .hover-basic-81f6 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .pink-4197 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .icon_green_cfdc {
    flex-direction: column;
  }

  .icon_green_cfdc .inner-b3a1 {
    width: 100%;
  }

  /* Version comparison */
  .description-c14a {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .photo_6a5b {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .next-ea0c {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .dark-dfdc {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .dim_180c,
  .mini-7f4e,
  .pattern_8e4e,
  .lite-b7e2,
  .active-focused-c63a,
  .widget_upper_1d05 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .dim_180c table,
  .mini-7f4e table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .shade-af96 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .notice_177d {
    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;
  }

  .logo-south-22f6 {
    font-size: 1.25rem !important;
  }

  .light_702c {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .tabs_fede {
    position: fixed;
  }

  .left_b656 {
    padding: 0.625rem 0;
  }

  .logo-yellow-c1d2 img {
    height: 26px;
  }

  .content-faf0 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .block_thick_ac89 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .hard_d3d8 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .hard_d3d8 svg {
    width: 18px;
    height: 18px;
  }

  .hard_d3d8 .focus_brown_29d1 {
    font-size: 0.7rem;
  }

  .hard_d3d8 .accordion-9da1 {
    font-size: 0.65rem;
  }

  .background-7678,
  .action-3369 {
    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, .notice_177d, .stone_4144, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .narrow_8e64 {
    padding: 1rem;
  }

  .badge_609f {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .texture-0adf {
    padding: 0.875rem;
  }

  .row-steel-5e53 {
    font-size: 1.25rem;
  }

  .notice_1e5d .inner-b3a1 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .light_702c {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .inner-b3a1 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .info_dark_0ac9 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .grid_3d13 {
    padding: 1rem;
  }

  .wide-1f89 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .header_iron_1286,
  .glass-da22,
  .popup-fixed-33b3,
  .grid_f321 {
    padding: 1rem;
  }
}

@media print {
  .tabs_fede,
  .content_first_8eb3,
  .detail_57f7,
  .inner-b3a1,
  .pro-27e8 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .notice_177d {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.avatar-a16c {
  margin-bottom: 3rem;
  text-align: center;
}

.logo-south-22f6 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.outer_8c0a {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.motion_da7a,
.grid-697f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.progress_easy_19b9 {
  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;
}

.progress_easy_19b9:hover {
  transform: translateY(-5px);
}

.progress_easy_19b9 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.progress_easy_19b9 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.north_916a {
  margin: 3rem 0;
}

.carousel_1be5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.motion_0e32 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.motion_0e32:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.accent_b87f {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.wrapper_paper_6654 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.accordion_926e {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.chip-3c67 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.content_active_f7c3 {
  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;
}

.content_active_f7c3:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.content_active_f7c3.dropdown_601a {
  border-left: 4px solid var(--primary-color);
}

.lower-9e7f {
  flex-shrink: 0;
}

.lower-9e7f svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.accent_6b34 {
  flex: 1;
}

.accent_6b34 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.block-48da {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.active_large_0fb9,
.status-5900,
.banner_802e {
  margin-bottom: 1.5rem;
}

.active_large_0fb9 h4,
.status-5900 h4,
.banner_802e h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.active_large_0fb9 ul,
.status-5900 ul,
.banner_802e ul {
  list-style: none;
  padding: 0;
}

.active_large_0fb9 li,
.status-5900 li,
.banner_802e li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.active_large_0fb9 li:before,
.status-5900 li:before,
.banner_802e li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.full-dd68 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.full-dd68 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;
}

.full-dd68 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.basic_b7e5 { margin: 2rem 0; }
.accordion_out_e24c { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.accordion_out_e24c h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.background_3e64 p { margin-bottom: 1rem; line-height: 1.7; }
.background_3e64 strong { color: var(--text-primary); }
.background_3e64 ul { list-style: none; padding-left: 0; }
.background_3e64 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.background_3e64 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.highlight-simple-2a59 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.banner_selected_37c7 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.banner_selected_37c7:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.tag_ce48 { font-size: 3rem; margin-bottom: 1rem; }
.banner_selected_37c7 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.banner_selected_37c7 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.breadcrumb-47a5 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.breadcrumb-47a5 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.gas_7ac7 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.wrapper-white-1821 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.next-db87 { text-align: center; }
.feature-a20c { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.dirty-d58a { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.form_blue_add2 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.new-ee71 { margin: 2rem 0; }
.short_aeca { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.short_aeca h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.short_aeca p, .short_aeca ul { line-height: 1.7; }
.short_aeca ul { list-style: none; padding-left: 0; }
.short_aeca ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.short_aeca ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.sort_small_d94f { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.disabled_72da { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.photo-e385 { text-align: center; }
.label-liquid-1120 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.white_4a4c { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.in_3783 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.heading_dd43 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.dirty_2b5b { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.dirty_2b5b:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.dirty_2b5b h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.dirty_2b5b p, .dirty_2b5b ul { line-height: 1.7; }
.dirty_2b5b ul { list-style: none; padding-left: 0; }
.dirty_2b5b ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.dirty_2b5b ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 6d79 */
.shadow-element-o6 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.1;
}
