/* ============================================
   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 */
.row_middle_21e8 p,
.accordion-2e2e,
.logo_outer_9704,
.inner-9cf0,
.narrow_236a,
.wrapper-4df0,
.border_glass_7d4d,
.summary-2520 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.pagination-8610 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.pagination-8610 > *,
.upper-9064,
.row_middle_21e8,
.picture-3eff {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .pagination-8610 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .pagination-8610 {
    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 === */
.yellow_3f3e {
  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 */
.yellow_3f3e.info_fdae {
  box-shadow: var(--shadow-md);
}

.hard-c748 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.prev_64a8 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.hard_542f {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.tooltip_2df6 {
  display: none;
}

/* Hide mobile actions on desktop */
.complex-7719 {
  display: none;
}

.tiny-881c a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.tiny-881c a:hover,
.tiny-881c a.fn-active-72ab {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.info-2984 {
  margin-left: 1rem;
}

.upper_9252 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.wrapper_stale_9d0b,
.glass_ef8f {
  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;
}

.wrapper_stale_9d0b {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.wrapper_stale_9d0b: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;
}

.glass_ef8f {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.glass_ef8f: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;
}

.wrapper_stale_9d0b svg,
.glass_ef8f svg {
  flex-shrink: 0;
}

.list-full-6a4d {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.tag-red-1371 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.tag-red-1371::before,
.tag-red-1371::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.tag-red-1371::before {
  top: -7px;
}

.tag-red-1371::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.pattern_bf29 {
  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 === */
.caption_b25c {
  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);
}

.over_7a76 {
  margin: 0 0 2rem;
  text-align: center;
}

.title-6f8a {
  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;
}

.title-6f8a:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.mini_8ec0 {
  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);
}

.mini_8ec0 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.header-bf49 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.widget-black-3890 {
  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;
}

.widget-black-3890:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.sidebar_bottom_b5d0 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.search-brown-425c {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.thumbnail_67c8 {
  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);
}

.thumbnail_67c8 .current-c43c {
  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;
}

.thumbnail_67c8 .current-c43c svg {
  flex-shrink: 0;
}

.thumbnail_67c8 .liquid-e9bc {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.thumbnail_67c8 .liquid-e9bc: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);
}

.thumbnail_67c8 .carousel-653f {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.thumbnail_67c8 .carousel-653f: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) {
  .caption_b25c {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .title-6f8a {
    max-width: 100%;
  }

  .header-bf49 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .widget-black-3890 {
    padding: 1rem;
  }

  .sidebar_bottom_b5d0 {
    font-size: 1.5rem;
  }

  .search-brown-425c {
    font-size: 0.75rem;
  }

  .mini_8ec0 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .thumbnail_67c8 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .thumbnail_67c8 .current-c43c {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .header-bf49 {
    grid-template-columns: 1fr;
  }
}

.center_bf99 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.dark_a7ea {
  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 === */
.bright_4554 {
  margin-bottom: 2.5rem;
}

.soft_2d0e {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.center_bf99 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.status-hovered-49af {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-ab91 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.wrapper_3206 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.bronze-ccb9 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.old_a0ca {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.hero_dark_17b4 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.modal-9f72 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.modal-9f72 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.tooltip_wide_8bfc {
  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);
}

.secondary-short-d10b {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.main_e31c {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.box-c177 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.texture-fixed-c141 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.description_aa32 {
  display: grid;
  gap: 1rem;
}

.preview-purple-a2e7 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.focus_active_d60f {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.red-a235 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.simple-9ea9 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.input_cool_8256 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.form_f9a1 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.form_f9a1 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.accordion-2e2e {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.filter_clean_200a {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.media-lite-fe0e {
  display: grid;
  gap: 2rem;
}

.gradient-last-8b93 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.header-ab91 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.status-hovered-49af {
  flex: 1;
}

.bronze-ccb9 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.bronze-ccb9 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.black_855d {
  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;
}

.old_a0ca {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.texture-a922 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.texture-a922 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.info-1c36 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.info-1c36 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.sidebar-1b2e {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.sidebar-1b2e strong {
  display: block;
  margin-bottom: 0.75rem;
}

.sidebar-1b2e ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-1b2e li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.small-a066 {
  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 === */
.shadow-simple-9a4f {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.form-north-3d24 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.tag-dfd5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.status-cd23 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.status-cd23 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.status-cd23 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.status-cd23 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;
}

.status-cd23 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.status-cd23 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.row_middle_21e8 {
  padding: 3rem 0 5rem;
}

.picture-3eff {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.picture-3eff.list-blue-6dbf {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.logo_outer_9704 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.thumbnail-a589 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.glass-8309 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.glass-8309 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.header_current_cc67 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.shadow-14d6 {
  text-align: center;
}

.gradient_wood_fb94 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.message_ff14 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.active-ae94 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.wrapper-4df0 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.inner-9cf0 {
  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;
}

.inner-9cf0 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.inner-9cf0:hover {
  box-shadow: var(--shadow-lg);
}

.inner-9cf0.breadcrumb_upper_e0d5 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.inner-9cf0 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.inner-9cf0 ul {
  margin: 1rem 0;
}

.inner-9cf0 li {
  margin-bottom: 0.75rem;
}

.footer-plasma-64cb {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.wood-38c1 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.wood-38c1 a {
  font-weight: 600;
}

/* === Data Tables === */
.footer_easy_6cde {
  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;
}

.footer_easy_6cde table {
  width: 100%;
  min-width: 600px;
}

.footer_easy_6cde thead {
  background-color: var(--primary-color);
  color: white;
}

.footer_easy_6cde th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.footer_easy_6cde td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.footer_easy_6cde tbody tr:hover {
  background-color: var(--bg-secondary);
}

.footer_easy_6cde tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.full-1420 {
  list-style: none;
  margin: 1.5rem 0;
}

.full-1420 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.full-1420 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.highlight_0be9::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-72ab::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 === */
.advanced-2987 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.caption_9eec {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.caption_9eec img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.caption_9eec strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.caption_9eec span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.advanced-2987 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.border_glass_7d4d {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.border_glass_7d4d::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.panel-4f7c {
  position: relative;
  margin-bottom: 3rem;
}

.fresh_9d4e {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.fresh_9d4e .copper_79fe {
  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;
}

.current-c7f9 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.current-c7f9 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.current-c7f9 ul {
  margin: 1rem 0;
}

.current-c7f9 li {
  margin-bottom: 0.75rem;
}

.container_lower_eaee {
  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 === */
.sidebar-selected-34e9 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.sidebar-selected-34e9 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.east_e556 {
  list-style: none;
  margin: 1.5rem 0;
}

.east_e556 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.east_e556 a {
  font-weight: 600;
}

.shade_9800 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.summary-2520 {
  margin: 2.5rem 0;
}

.grid-724d {
  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-724d:hover {
  box-shadow: var(--shadow-lg);
}

.grid-724d.container-simple-627d {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.dark_2c93 {
  flex-shrink: 0;
}

.dark_2c93 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);
}

.preview-blue-123b h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.gradient_left_9fde,
.panel_gold_ae98,
.sidebar_c60a {
  width: 100%;
  margin: 1.5rem 0;
}

.overlay_brown_9e9e {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.overlay_brown_9e9e strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.focused-de01 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.focused-de01 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.popup-cold-18f3 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.popup-cold-18f3 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.column_7750 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.image-medium-157a {
  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;
}

.image-medium-157a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.image-medium-157a.border-complex-6113 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.image-medium-157a .thumbnail-top-f721 {
  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;
}

.image-medium-157a h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.surface-405a {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.list-east-b0be {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.list-east-b0be label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.dropdown-black-074a {
  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 === */
.current-c43c {
  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;
}

.liquid-e9bc {
  background-color: var(--primary-color);
  color: white;
}

.liquid-e9bc:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.carousel-653f {
  background-color: var(--text-secondary);
  color: white;
}

.carousel-653f:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.modal_dfc9 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.modal_dfc9:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.box_99a9 {
  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;
}

.box_99a9:hover {
  background-color: var(--primary-dark);
}

.east-2146 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.block_cool_19dc {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.badge-b948 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.aside_b3cd {
  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 === */
.prev-6141 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.mask-mini-14aa {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.mask-mini-14aa h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.hard-74c0 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.text-7fdb {
  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;
}

.prev_714c {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.accent-huge-d684 {
  list-style: none;
  counter-reset: rank-counter;
}

.accent-huge-d684 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.accent-huge-d684 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;
}

.label_fresh_41d3 {
  list-style: none;
}

.label_fresh_41d3 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.outline_last_43dc {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.middle-39af {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.middle-39af .hero_warm_364b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.middle-39af .static-18ab {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.list_9227 {
  margin-top: 3rem;
}

.overlay_hovered_c8d8 {
  width: 100%;
}

.green_6361 {
  background-color: #fef3c7;
}

.detail-upper-a2c0 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.focus-inner-4b88 {
  margin: 3rem 0;
}

.short-2449 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.active-d3ef {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.active-d3ef:hover {
  box-shadow: var(--shadow-lg);
}

.active-d3ef.modal_thick_61d1 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.main-f20f {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.medium_fabd strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.medium_fabd span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.popup-south-7831 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.active-d3ef blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.wrapper-e2a9 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.content_fixed_487f {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.row_55e3 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.shadow_cool_1029 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.highlight_basic_a872 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.video_6b9e {
  margin-top: 1rem;
}

/* === FAQ Section === */
.header-purple-f55d {
  max-width: 900px;
  margin: 0 auto;
}

.detail_outer_1081 {
  margin: 2rem 0;
}

.rough-060e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.rough-060e summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.rough-060e summary::-webkit-details-marker {
  display: none;
}

.rough-060e summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.accordion_advanced_8cc9 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.rough-060e[open] .accordion_advanced_8cc9 {
  transform: rotate(45deg);
}

.thumbnail-8a76 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.thumbnail-8a76 p:last-child {
  margin-bottom: 0;
}

.image-79e6 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.dropdown_98b1 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.mask_selected_c36d {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.mask_selected_c36d p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.mask_selected_c36d .current-c43c {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.list-warm-d094 {
  max-width: 900px;
  margin: 0 auto;
}

.fast_4eb2 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.chip-4947 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.chip-4947.fn-success-72ab {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.column_2d7d {
  font-size: 3rem;
  line-height: 1;
}

.hidden-a179 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.active_medium_91d2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.bronze_7fed,
.description-1154 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.bronze_7fed h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.description-1154 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.stale_d5e6,
.north_e5f6 {
  margin: 1.5rem 0;
}

.stale_d5e6 li,
.north_e5f6 li {
  margin-bottom: 1rem;
}

.menu_1b03 {
  margin: 3rem 0;
}

.advanced-e70f {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.advanced-e70f h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.advanced-e70f ol {
  margin: 1rem 0;
}

.advanced-e70f li {
  margin-bottom: 0.75rem;
}

.form_2234 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.mini_887b {
  margin: 2rem 0;
}

.backdrop-2bf8 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.layout_c829 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.middle-4961 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.fluid-0185 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.south-2e1d {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.backdrop-black-ef04 {
  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;
}

.backdrop-black-ef04 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.wrapper_3206 {
  flex: 1;
}

.wrapper_3206 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.glass-ec29 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.form-e017 p {
  margin-bottom: 1rem;
}

.panel-north-16ff {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.component-c268 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.slider-cool-91f1 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.slider-cool-91f1 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.heading_94aa h3 {
  margin-bottom: 1.5rem;
}

.grid_purple_75bf {
  display: grid;
  gap: 2rem;
}

.static-3747 {
  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;
}

.static-3747 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.static-3747 h4 {
  margin: 0 0 0.25rem;
}

.static-3747 p {
  margin: 0;
  font-size: 0.9375rem;
}

.large_bf29 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.hidden-in-8e0c {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.hidden-in-8e0c h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.hidden-in-8e0c ul {
  margin: 1.5rem 0;
}

.hidden-in-8e0c li {
  margin-bottom: 0.75rem;
}

.motion-d134 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.outline_short_e8a2 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.sort-7487 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.logo_active_4cb0 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.logo_active_4cb0 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.light_a35c {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.light_a35c a {
  color: rgba(255, 255, 255, 0.8);
}

.outer-cd31 {
  list-style: none;
}

.outer-cd31 li {
  margin-bottom: 0.75rem;
}

.outer-cd31 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.outer-cd31 a:hover {
  color: white;
}

.full_40e7 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.paper_e6a1 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.breadcrumb_hard_2563 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.middle-fc52 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.header_8081 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .pagination-8610 {
    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;
  }

  .frame_8011 {
    font-size: 1.5rem !important;
  }

  .soft_2d0e {
    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 */
  .inner-9cf0,
  .narrow_236a,
  .current-c7f9,
  .preview-blue-123b,
  .main-f20f,
  .active-d3ef,
  .thumbnail-8a76,
  .mini_8ec0,
  .accordion-2e2e,
  .logo_outer_9704 {
    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 */
  .center_bf99 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .status-hovered-49af {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .header-ab91 {
    flex-shrink: 0;
  }

  .wrapper_3206 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .bronze-ccb9,
  .old_a0ca {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .old_a0ca {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .hard_542f {
    display: none;
  }

  /* Show mobile actions */
  .complex-7719 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .copper-ace6 {
    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;
  }

  .copper-ace6 svg {
    flex-shrink: 0;
  }

  .copper-ace6 .fast-e8e4 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .copper-ace6 .module-motion-d1a8 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .next-8a72 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .full_be8c {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .copper-ace6:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .tooltip_2df6 {
    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;
  }

  .tooltip_2df6.fn-active-72ab {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .tooltip_2df6 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .tooltip_2df6 li:last-child {
    border-bottom: none;
  }

  .tooltip_2df6 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .tiny-881c {
    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;
  }

  .tiny-881c li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .tiny-881c li:last-child {
    border-bottom: none;
  }

  .tiny-881c a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .info-2984 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .upper_9252 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .wrapper_stale_9d0b,
  .glass_ef8f {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .wrapper_stale_9d0b {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .glass_ef8f {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .tiny-881c.fn-active-72ab {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .list-full-6a4d {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .yellow_3f3e {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .hard-c748 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .pattern_bf29 {
    margin-top: 0;
  }

  /* Hero section */
  .pattern_bf29 {
    padding: 2rem 0 1.5rem;
  }

  .soft_2d0e {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .accordion-2e2e {
    font-size: 1rem;
  }

  /* Hero brand image */
  .caption_b25c {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .title-6f8a {
    max-width: 100%;
    border-radius: 8px;
  }

  .header-bf49 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .widget-black-3890 {
    padding: 1rem;
  }

  .sidebar_bottom_b5d0 {
    font-size: 1.5rem;
  }

  .search-brown-425c {
    font-size: 0.75rem;
  }

  .mini_8ec0 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .thumbnail_67c8 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .thumbnail_67c8 .current-c43c {
    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 */
  .tag-dfd5 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .grid-724d {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .dark_2c93 {
    margin-bottom: 1rem;
  }

  /* Author */
  .gradient-last-8b93 {
    flex-direction: column;
  }

  .backdrop-black-ef04 {
    flex-direction: column;
  }

  /* Quotes */
  .main-f20f {
    flex-direction: column;
  }

  /* Pros/Cons */
  .active_medium_91d2 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .fluid-0185 {
    flex-direction: column;
  }

  .fluid-0185 .current-c43c {
    width: 100%;
  }

  /* Version comparison */
  .column_7750 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .prev-6141 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .sort-7487 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .breadcrumb_hard_2563 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .footer_easy_6cde,
  .panel_gold_ae98,
  .short_9f1d,
  .overlay_hovered_c8d8,
  .gradient_left_9fde,
  .sidebar_c60a {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .footer_easy_6cde table,
  .panel_gold_ae98 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .dropdown-black-074a {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .pagination-8610 {
    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;
  }

  .frame_8011 {
    font-size: 1.25rem !important;
  }

  .soft_2d0e {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .yellow_3f3e {
    position: fixed;
  }

  .hard-c748 {
    padding: 0.625rem 0;
  }

  .prev_64a8 img {
    height: 26px;
  }

  .tiny-881c {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .tooltip_2df6 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .copper-ace6 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .copper-ace6 svg {
    width: 18px;
    height: 18px;
  }

  .copper-ace6 .fast-e8e4 {
    font-size: 0.7rem;
  }

  .copper-ace6 .module-motion-d1a8 {
    font-size: 0.65rem;
  }

  .wrapper_stale_9d0b,
  .glass_ef8f {
    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, .pagination-8610, .upper-9064, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .caption_b25c {
    padding: 1rem;
  }

  .header-bf49 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .widget-black-3890 {
    padding: 0.875rem;
  }

  .sidebar_bottom_b5d0 {
    font-size: 1.25rem;
  }

  .thumbnail_67c8 .current-c43c {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .soft_2d0e {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .current-c43c {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .east-2146 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .grid-724d {
    padding: 1rem;
  }

  .dark_2c93 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .inner-9cf0,
  .background_brown_1e1d,
  .pink-42c7,
  .narrow_0a01 {
    padding: 1rem;
  }
}

@media print {
  .yellow_3f3e,
  .shadow-simple-9a4f,
  .list-full-6a4d,
  .current-c43c,
  .outline_short_e8a2 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .pagination-8610 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.table-inner-f07d {
  margin-bottom: 3rem;
  text-align: center;
}

.frame_8011 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.old_b702 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.main-e3e0,
.description-pink-2a62 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.east-0ea5 {
  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;
}

.east-0ea5:hover {
  transform: translateY(-5px);
}

.east-0ea5 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.east-0ea5 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.backdrop-copper-92df {
  margin: 3rem 0;
}

.avatar-a61b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.avatar-narrow-d8cd {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.avatar-narrow-d8cd:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.fast_1a10 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.panel_9ab8 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.panel-last-0b23 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.popup_ad4b {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.gas-4623 {
  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;
}

.gas-4623:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.gas-4623.shadow-green-c85a {
  border-left: 4px solid var(--primary-color);
}

.article_hard_cdc9 {
  flex-shrink: 0;
}

.article_hard_cdc9 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.sort-28f1 {
  flex: 1;
}

.sort-28f1 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.table_bbc7 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.accent-clean-c362,
.silver_c059,
.active_hovered_a521 {
  margin-bottom: 1.5rem;
}

.accent-clean-c362 h4,
.silver_c059 h4,
.active_hovered_a521 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.accent-clean-c362 ul,
.silver_c059 ul,
.active_hovered_a521 ul {
  list-style: none;
  padding: 0;
}

.accent-clean-c362 li,
.silver_c059 li,
.active_hovered_a521 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.accent-clean-c362 li:before,
.silver_c059 li:before,
.active_hovered_a521 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.focus_stone_fd8a {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.focus_stone_fd8a 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;
}

.focus_stone_fd8a a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.search-under-552e { margin: 2rem 0; }
.picture_f8de { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.picture_f8de h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.active-eb35 p { margin-bottom: 1rem; line-height: 1.7; }
.active-eb35 strong { color: var(--text-primary); }
.active-eb35 ul { list-style: none; padding-left: 0; }
.active-eb35 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.active-eb35 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.input_fluid_bb15 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.orange_a101 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.orange_a101:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.hovered-2ab9 { font-size: 3rem; margin-bottom: 1rem; }
.orange_a101 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.orange_a101 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.texture_efd1 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.texture_efd1 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.caption_07c3 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.stone_6ca8 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.secondary-159c { text-align: center; }
.preview_9016 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.badge_6716 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.box-steel-ccd0 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.label_c130 { margin: 2rem 0; }
.sidebar-wide-dd18 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.sidebar-wide-dd18 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.sidebar-wide-dd18 p, .sidebar-wide-dd18 ul { line-height: 1.7; }
.sidebar-wide-dd18 ul { list-style: none; padding-left: 0; }
.sidebar-wide-dd18 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.sidebar-wide-dd18 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.texture_south_8cad { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.message-344f { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.thumbnail-4073 { text-align: center; }
.complex_26ba { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.up-ec97 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.form-20d6 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.notice-a537 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.current_2f48 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.current_2f48:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.current_2f48 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.current_2f48 p, .current_2f48 ul { line-height: 1.7; }
.current_2f48 ul { list-style: none; padding-left: 0; }
.current_2f48 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.current_2f48 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: ed61 */
.shadow-element-n3 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.3;
}
