/* ============================================
   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 */
.last_5509 p,
.section-new-25f1,
.shade_medium_c4b8,
.primary_up_455f,
.header-7484,
.silver-69f3,
.clean-92d0,
.surface_ee32 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.fresh_3354 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.fresh_3354 > *,
.stone-3701,
.last_5509,
.banner-ffa6 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .fresh_3354 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .fresh_3354 {
    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 === */
.input-silver-582a {
  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 */
.input-silver-582a.center-93e9 {
  box-shadow: var(--shadow-md);
}

.icon_8ccb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.backdrop_bcf9 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.column_full_6124 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.menu-light-eae9 {
  display: none;
}

/* Hide mobile actions on desktop */
.light-326a {
  display: none;
}

.detail-bottom-a2a4 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.detail-bottom-a2a4 a:hover,
.detail-bottom-a2a4 a.fn-active-f179 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.dynamic_f0e0 {
  margin-left: 1rem;
}

.alert-wide-d550 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.bottom_2ce3,
.gas_5a4f {
  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;
}

.bottom_2ce3 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.bottom_2ce3: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;
}

.gas_5a4f {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.gas_5a4f: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;
}

.bottom_2ce3 svg,
.gas_5a4f svg {
  flex-shrink: 0;
}

.row-smooth-7c51 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.preview-basic-3e02 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.preview-basic-3e02::before,
.preview-basic-3e02::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.preview-basic-3e02::before {
  top: -7px;
}

.preview-basic-3e02::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.accordion_down_8c47 {
  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 === */
.pattern_987a {
  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);
}

.modal-daf8 {
  margin: 0 0 2rem;
  text-align: center;
}

.dark-6b22 {
  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;
}

.dark-6b22:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.item_7480 {
  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);
}

.item_7480 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.bright-8939 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.description_8dd4 {
  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;
}

.description_8dd4:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.row-b2cd {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.label_0750 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.grid-6e8c {
  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);
}

.grid-6e8c .slider_advanced_5339 {
  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;
}

.grid-6e8c .slider_advanced_5339 svg {
  flex-shrink: 0;
}

.grid-6e8c .warm_da9e {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.grid-6e8c .warm_da9e: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);
}

.grid-6e8c .breadcrumb_dim_3ca8 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.grid-6e8c .breadcrumb_dim_3ca8: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) {
  .pattern_987a {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .dark-6b22 {
    max-width: 100%;
  }

  .bright-8939 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .description_8dd4 {
    padding: 1rem;
  }

  .row-b2cd {
    font-size: 1.5rem;
  }

  .label_0750 {
    font-size: 0.75rem;
  }

  .item_7480 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .grid-6e8c {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .grid-6e8c .slider_advanced_5339 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .bright-8939 {
    grid-template-columns: 1fr;
  }
}

.brown-389f {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.primary_wood_9867 {
  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 === */
.sidebar-glass-fe48 {
  margin-bottom: 2.5rem;
}

.green_53db {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.brown-389f {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumb_over_dd7d {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info-0f5a {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.input_last_b7f7 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hover-6273 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.accordion_cb70 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.overlay-e812 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.black-3996 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.black-3996 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.brown_5289 {
  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);
}

.motion-aaa3 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.focus-4313 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hover-dim-e681 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.active_530d {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.west-be2d {
  display: grid;
  gap: 1rem;
}

.hard-b4a2 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.notification-stale-1234 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.box_002a {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.logo-brown-31e8 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.progress-first-28c9 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.module_8a0e {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.module_8a0e p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.section-new-25f1 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.overlay_middle_e44c {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.table_focused_ea47 {
  display: grid;
  gap: 2rem;
}

.content-8510 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.info-0f5a {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.breadcrumb_over_dd7d {
  flex: 1;
}

.hover-6273 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.hover-6273 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.popup-medium-0fb7 {
  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;
}

.accordion_cb70 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.in_a4dd {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.in_a4dd span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.modal-left-aca9 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.modal-left-aca9 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.grid_279d {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.grid_279d strong {
  display: block;
  margin-bottom: 0.75rem;
}

.grid_279d ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.grid_279d li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.light_f05a {
  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 === */
.photo-f390 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.texture_44e0 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.bright_0c70 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.under_0c00 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.under_0c00 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.under_0c00 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.under_0c00 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;
}

.under_0c00 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.under_0c00 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.last_5509 {
  padding: 3rem 0 5rem;
}

.banner-ffa6 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.banner-ffa6.short-f76f {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.shade_medium_c4b8 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.background_glass_c2b4 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.focused_62a7 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.focused_62a7 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.upper_7e14 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.block_66ea {
  text-align: center;
}

.light-9d24 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.notification-down-83bf {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.hard_b21c {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.silver-69f3 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.primary_up_455f {
  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;
}

.primary_up_455f * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.primary_up_455f:hover {
  box-shadow: var(--shadow-lg);
}

.primary_up_455f.filter_action_38b4 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.primary_up_455f h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.primary_up_455f ul {
  margin: 1rem 0;
}

.primary_up_455f li {
  margin-bottom: 0.75rem;
}

.mini_92a4 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.tabs-green-7e97 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.tabs-green-7e97 a {
  font-weight: 600;
}

/* === Data Tables === */
.pink_86c2 {
  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;
}

.pink_86c2 table {
  width: 100%;
  min-width: 600px;
}

.pink_86c2 thead {
  background-color: var(--primary-color);
  color: white;
}

.pink_86c2 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.pink_86c2 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.pink_86c2 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.pink_86c2 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.main-cool-596a {
  list-style: none;
  margin: 1.5rem 0;
}

.main-cool-596a li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.main-cool-596a li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.widget_dfbd::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-f179::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 === */
.nav_left_7181 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.notice_tall_43a9 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.notice_tall_43a9 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.notice_tall_43a9 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.notice_tall_43a9 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.nav_left_7181 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.clean-92d0 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.clean-92d0::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.pro_c197 {
  position: relative;
  margin-bottom: 3rem;
}

.component_solid_48c8 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.component_solid_48c8 .avatar-f697 {
  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;
}

.link_d829 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.link_d829 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.link_d829 ul {
  margin: 1rem 0;
}

.link_d829 li {
  margin-bottom: 0.75rem;
}

.pagination_selected_de1c {
  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 === */
.upper-81d2 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.upper-81d2 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.picture_smooth_e2ac {
  list-style: none;
  margin: 1.5rem 0;
}

.picture_smooth_e2ac li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.picture_smooth_e2ac a {
  font-weight: 600;
}

.icon_full_d130 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.surface_ee32 {
  margin: 2.5rem 0;
}

.label_easy_a15b {
  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;
}

.label_easy_a15b:hover {
  box-shadow: var(--shadow-lg);
}

.label_easy_a15b.detail_bright_cd8e {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.secondary_deeb {
  flex-shrink: 0;
}

.secondary_deeb 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);
}

.search_black_b784 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.feature-1c7f,
.alert_bronze_1fef,
.container-under-bfdd {
  width: 100%;
  margin: 1.5rem 0;
}

.south-0994 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.south-0994 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.brown_f907 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.brown_f907 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.module-thick-2efa {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.module-thick-2efa strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.button-large-a2d2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.red_0a65 {
  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;
}

.red_0a65:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.red_0a65.silver_0a00 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.red_0a65 .breadcrumb-center-3826 {
  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;
}

.red_0a65 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.header-c18e {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.inner-b530 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.inner-b530 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.pattern_cee2 {
  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 === */
.slider_advanced_5339 {
  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;
}

.warm_da9e {
  background-color: var(--primary-color);
  color: white;
}

.warm_da9e:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.breadcrumb_dim_3ca8 {
  background-color: var(--text-secondary);
  color: white;
}

.breadcrumb_dim_3ca8:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.cool_7d67 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.cool_7d67:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.copper-1795 {
  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;
}

.copper-1795:hover {
  background-color: var(--primary-dark);
}

.breadcrumb_c115 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.black_dddf {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.outer_e96e {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.chip-short-6fc1 {
  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 === */
.pressed_ee5c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.panel-pro-454a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.panel-pro-454a h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.logo_warm_868e {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.badge-iron-a900 {
  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;
}

.dropdown_down_0187 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.north_b267 {
  list-style: none;
  counter-reset: rank-counter;
}

.north_b267 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.north_b267 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;
}

.primary_3d29 {
  list-style: none;
}

.primary_3d29 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.detail-0812 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.alert_ce73 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.alert_ce73 .panel-soft-3e75 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.alert_ce73 .slow-8acb {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.gradient-55e3 {
  margin-top: 3rem;
}

.upper_d803 {
  width: 100%;
}

.dropdown-a1bb {
  background-color: #fef3c7;
}

.image-b763 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.notification_white_3e3e {
  margin: 3rem 0;
}

.gradient_c6c2 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.title-df73 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.title-df73:hover {
  box-shadow: var(--shadow-lg);
}

.title-df73.last_d9e0 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.huge-3b85 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.cool-659b strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.cool-659b span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.complex_fae3 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.title-df73 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.gas_ad80 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.active-bdb0 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.text-affb {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.logo_6724 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.tag_medium_d36e {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.sort_solid_742d {
  margin-top: 1rem;
}

/* === FAQ Section === */
.heading_bronze_70dc {
  max-width: 900px;
  margin: 0 auto;
}

.left_7077 {
  margin: 2rem 0;
}

.black-5fab {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.black-5fab summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.black-5fab summary::-webkit-details-marker {
  display: none;
}

.black-5fab summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.black_c259 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.black-5fab[open] .black_c259 {
  transform: rotate(45deg);
}

.fluid_df52 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.fluid_df52 p:last-child {
  margin-bottom: 0;
}

.article_9328 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.inner-f968 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.module-smooth-4b56 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.module-smooth-4b56 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.module-smooth-4b56 .slider_advanced_5339 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.shadow-paper-622f {
  max-width: 900px;
  margin: 0 auto;
}

.fluid_70b5 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.gallery-tall-fa5d {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.gallery-tall-fa5d.fn-success-f179 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.simple_2c8f {
  font-size: 3rem;
  line-height: 1;
}

.hidden_mini_c208 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.description_e1b7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.gradient-pro-d9fb,
.short-38bf {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.gradient-pro-d9fb h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.short-38bf h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.caption-d91e,
.avatar-da49 {
  margin: 1.5rem 0;
}

.caption-d91e li,
.avatar-da49 li {
  margin-bottom: 1rem;
}

.clean-a756 {
  margin: 3rem 0;
}

.tertiary-hard-9ff6 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.tertiary-hard-9ff6 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.tertiary-hard-9ff6 ol {
  margin: 1rem 0;
}

.tertiary-hard-9ff6 li {
  margin-bottom: 0.75rem;
}

.fast-b5b5 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.hard-b2ee {
  margin: 2rem 0;
}

.paragraph_liquid_c7f3 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.chip_under_7774 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.lite_e959 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.detail-hot-84f7 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.form-upper-c1f5 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.panel_1df1 {
  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;
}

.panel_1df1 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.input_last_b7f7 {
  flex: 1;
}

.input_last_b7f7 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.fresh_6ea7 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.action_31c7 p {
  margin-bottom: 1rem;
}

.card_stone_9317 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.aside-ee28 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.progress_a363 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.progress_a363 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.content-646d h3 {
  margin-bottom: 1.5rem;
}

.list-7c18 {
  display: grid;
  gap: 2rem;
}

.article_5ba1 {
  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;
}

.article_5ba1 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.article_5ba1 h4 {
  margin: 0 0 0.25rem;
}

.article_5ba1 p {
  margin: 0;
  font-size: 0.9375rem;
}

.border_bright_9c88 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.frame-current-6c38 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.frame-current-6c38 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.frame-current-6c38 ul {
  margin: 1.5rem 0;
}

.frame-current-6c38 li {
  margin-bottom: 0.75rem;
}

.thick_c3fc {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.gradient-cool-707a {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.purple-c77a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.gold_9fcb h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.gold_9fcb p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.gallery_cbe4 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.gallery_cbe4 a {
  color: rgba(255, 255, 255, 0.8);
}

.outer_d9ce {
  list-style: none;
}

.outer_d9ce li {
  margin-bottom: 0.75rem;
}

.outer_d9ce a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.outer_d9ce a:hover {
  color: white;
}

.detail_red_19f1 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.block_tiny_89cf {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.huge-f086 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.widget-1e12 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.tooltip_bronze_0d52 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .fresh_3354 {
    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;
  }

  .hot-0dfd {
    font-size: 1.5rem !important;
  }

  .green_53db {
    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 */
  .primary_up_455f,
  .header-7484,
  .link_d829,
  .search_black_b784,
  .huge-3b85,
  .title-df73,
  .fluid_df52,
  .item_7480,
  .section-new-25f1,
  .shade_medium_c4b8 {
    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 */
  .brown-389f {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .breadcrumb_over_dd7d {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .info-0f5a {
    flex-shrink: 0;
  }

  .input_last_b7f7 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .hover-6273,
  .accordion_cb70 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .accordion_cb70 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .column_full_6124 {
    display: none;
  }

  /* Show mobile actions */
  .light-326a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .full_1375 {
    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;
  }

  .full_1375 svg {
    flex-shrink: 0;
  }

  .full_1375 .overlay_d73b {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .full_1375 .sort_31e7 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .media-purple-6750 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .sort_new_4da8 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .full_1375:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .menu-light-eae9 {
    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;
  }

  .menu-light-eae9.fn-active-f179 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .menu-light-eae9 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .menu-light-eae9 li:last-child {
    border-bottom: none;
  }

  .menu-light-eae9 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .detail-bottom-a2a4 {
    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;
  }

  .detail-bottom-a2a4 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .detail-bottom-a2a4 li:last-child {
    border-bottom: none;
  }

  .detail-bottom-a2a4 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .dynamic_f0e0 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .alert-wide-d550 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .bottom_2ce3,
  .gas_5a4f {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .bottom_2ce3 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .gas_5a4f {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .detail-bottom-a2a4.fn-active-f179 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .row-smooth-7c51 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .input-silver-582a {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .icon_8ccb {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .accordion_down_8c47 {
    margin-top: 0;
  }

  /* Hero section */
  .accordion_down_8c47 {
    padding: 2rem 0 1.5rem;
  }

  .green_53db {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .section-new-25f1 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .pattern_987a {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .dark-6b22 {
    max-width: 100%;
    border-radius: 8px;
  }

  .bright-8939 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .description_8dd4 {
    padding: 1rem;
  }

  .row-b2cd {
    font-size: 1.5rem;
  }

  .label_0750 {
    font-size: 0.75rem;
  }

  .item_7480 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .grid-6e8c {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .grid-6e8c .slider_advanced_5339 {
    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 */
  .bright_0c70 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .label_easy_a15b {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .secondary_deeb {
    margin-bottom: 1rem;
  }

  /* Author */
  .content-8510 {
    flex-direction: column;
  }

  .panel_1df1 {
    flex-direction: column;
  }

  /* Quotes */
  .huge-3b85 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .description_e1b7 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .detail-hot-84f7 {
    flex-direction: column;
  }

  .detail-hot-84f7 .slider_advanced_5339 {
    width: 100%;
  }

  /* Version comparison */
  .button-large-a2d2 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .pressed_ee5c {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .purple-c77a {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .huge-f086 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .pink_86c2,
  .alert_bronze_1fef,
  .block-gold-d03a,
  .upper_d803,
  .feature-1c7f,
  .container-under-bfdd {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pink_86c2 table,
  .alert_bronze_1fef table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .pattern_cee2 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .fresh_3354 {
    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;
  }

  .hot-0dfd {
    font-size: 1.25rem !important;
  }

  .green_53db {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .input-silver-582a {
    position: fixed;
  }

  .icon_8ccb {
    padding: 0.625rem 0;
  }

  .backdrop_bcf9 img {
    height: 26px;
  }

  .detail-bottom-a2a4 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .menu-light-eae9 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .full_1375 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .full_1375 svg {
    width: 18px;
    height: 18px;
  }

  .full_1375 .overlay_d73b {
    font-size: 0.7rem;
  }

  .full_1375 .sort_31e7 {
    font-size: 0.65rem;
  }

  .bottom_2ce3,
  .gas_5a4f {
    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, .fresh_3354, .stone-3701, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .pattern_987a {
    padding: 1rem;
  }

  .bright-8939 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .description_8dd4 {
    padding: 0.875rem;
  }

  .row-b2cd {
    font-size: 1.25rem;
  }

  .grid-6e8c .slider_advanced_5339 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .green_53db {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .slider_advanced_5339 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .breadcrumb_c115 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .label_easy_a15b {
    padding: 1rem;
  }

  .secondary_deeb span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .primary_up_455f,
  .tall-c3bc,
  .carousel-ccdc,
  .menu_green_59cb {
    padding: 1rem;
  }
}

@media print {
  .input-silver-582a,
  .photo-f390,
  .row-smooth-7c51,
  .slider_advanced_5339,
  .gradient-cool-707a {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .fresh_3354 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.heading-cf85 {
  margin-bottom: 3rem;
  text-align: center;
}

.hot-0dfd {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.stone_64a3 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.column_plasma_524a,
.panel_dark_9845 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.shadow_ec91 {
  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;
}

.shadow_ec91:hover {
  transform: translateY(-5px);
}

.shadow_ec91 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.shadow_ec91 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.panel_c8b1 {
  margin: 3rem 0;
}

.grid_action_4d13 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.frame-in-e9c0 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.frame-in-e9c0:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.frame-c7d3 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.outline-red-3412 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.focused_4186 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.plasma-2630 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.badge-active-db2a {
  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;
}

.badge-active-db2a:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.badge-active-db2a.progress_7794 {
  border-left: 4px solid var(--primary-color);
}

.row_76e5 {
  flex-shrink: 0;
}

.row_76e5 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.next-98f2 {
  flex: 1;
}

.next-98f2 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.hot_b1c6 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.media-orange-d70f,
.hard-a258,
.alert_tall_bec6 {
  margin-bottom: 1.5rem;
}

.media-orange-d70f h4,
.hard-a258 h4,
.alert_tall_bec6 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.media-orange-d70f ul,
.hard-a258 ul,
.alert_tall_bec6 ul {
  list-style: none;
  padding: 0;
}

.media-orange-d70f li,
.hard-a258 li,
.alert_tall_bec6 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.media-orange-d70f li:before,
.hard-a258 li:before,
.alert_tall_bec6 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.media-bottom-69a8 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.media-bottom-69a8 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;
}

.media-bottom-69a8 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.backdrop_center_49e3 { margin: 2rem 0; }
.wood_0b48 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.wood_0b48 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.active_2e29 p { margin-bottom: 1rem; line-height: 1.7; }
.active_2e29 strong { color: var(--text-primary); }
.active_2e29 ul { list-style: none; padding-left: 0; }
.active_2e29 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.active_2e29 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.overlay-1648 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.tag_center_b1b4 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.tag_center_b1b4:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.thumbnail_7155 { font-size: 3rem; margin-bottom: 1rem; }
.tag_center_b1b4 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.tag_center_b1b4 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.blue_d234 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.blue_d234 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.filter_old_6df7 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.cool-ed16 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.icon_0dab { text-align: center; }
.video_out_f87c { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.section_blue_6322 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.shadow-action-84f6 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.icon_gold_bdee { margin: 2rem 0; }
.mask_hard_97bf { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.mask_hard_97bf h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.mask_hard_97bf p, .mask_hard_97bf ul { line-height: 1.7; }
.mask_hard_97bf ul { list-style: none; padding-left: 0; }
.mask_hard_97bf ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.mask_hard_97bf ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.mini-b6a1 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.row_thick_954a { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.focused_48b7 { text-align: center; }
.modal_clean_5f3f { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.left-bcd8 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.accordion-783c { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.active_bf05 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.narrow_13eb { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.narrow_13eb:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.narrow_13eb h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.narrow_13eb p, .narrow_13eb ul { line-height: 1.7; }
.narrow_13eb ul { list-style: none; padding-left: 0; }
.narrow_13eb ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.narrow_13eb ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 5b8c */
.shadow-element-d0 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.1;
}
