/* ============================================
   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 */
.feature-07ee p,
.active-c0fe,
.focus-over-21bb,
.stone-2712,
.tabs-5b04,
.disabled_7fed,
.link-2b9d,
.in-31df {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.outline-2168 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.outline-2168 > *,
.box_outer_ebc6,
.feature-07ee,
.layout_blue_e5a4 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .outline-2168 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .outline-2168 {
    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 === */
.menu-dark-660b {
  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 */
.menu-dark-660b.tiny_d6c9 {
  box-shadow: var(--shadow-md);
}

.form_dirty_93b7 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.heading_5f39 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.box_new_b01e {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.highlight-cool-63d4 {
  display: none;
}

/* Hide mobile actions on desktop */
.layout_dirty_a156 {
  display: none;
}

.secondary-5ac2 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.secondary-5ac2 a:hover,
.secondary-5ac2 a.fn-active-569f {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.card-58b6 {
  margin-left: 1rem;
}

.dropdown-motion-9c8d {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.pink-7362,
.nav-05fd {
  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;
}

.pink-7362 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.pink-7362: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;
}

.nav-05fd {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.nav-05fd: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;
}

.pink-7362 svg,
.nav-05fd svg {
  flex-shrink: 0;
}

.aside-dirty-8bd6 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.medium-5d4f {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.medium-5d4f::before,
.medium-5d4f::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.medium-5d4f::before {
  top: -7px;
}

.medium-5d4f::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.nav-first-06a3 {
  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 === */
.notification-a3fe {
  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);
}

.accent_d525 {
  margin: 0 0 2rem;
  text-align: center;
}

.silver_00e3 {
  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;
}

.silver_00e3:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.sort-f850 {
  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);
}

.sort-f850 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.description_055a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.container_de05 {
  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;
}

.container_de05:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.focused_4869 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.shadow_d294 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.outline-1654 {
  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);
}

.outline-1654 .active-7bc8 {
  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;
}

.outline-1654 .active-7bc8 svg {
  flex-shrink: 0;
}

.outline-1654 .top_95e5 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.outline-1654 .top_95e5: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);
}

.outline-1654 .label-cool-bedc {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.outline-1654 .label-cool-bedc: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) {
  .notification-a3fe {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .silver_00e3 {
    max-width: 100%;
  }

  .description_055a {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .container_de05 {
    padding: 1rem;
  }

  .focused_4869 {
    font-size: 1.5rem;
  }

  .shadow_d294 {
    font-size: 0.75rem;
  }

  .sort-f850 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .outline-1654 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .outline-1654 .active-7bc8 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .description_055a {
    grid-template-columns: 1fr;
  }
}

.primary-282f {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.small-a14a {
  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 === */
.green-d3de {
  margin-bottom: 2.5rem;
}

.hero_020e {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.primary-282f {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.new_20e3 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.center-199e {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.pattern-cf87 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fluid_fedf {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.hover_basic_6e96 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.text_1bbd {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.bottom_0d50 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.bottom_0d50 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.nav-c82c {
  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);
}

.picture-glass-15f6 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.bright-bf48 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.white-ab52 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.right_9847 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.widget_5488 {
  display: grid;
  gap: 1rem;
}

.form_788d {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.old-e4fd {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.form_8363 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.background_4041 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.right-ea9b {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.article_rough_86b8 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.article_rough_86b8 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.active-c0fe {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.detail_3dd8 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.center_d2b3 {
  display: grid;
  gap: 2rem;
}

.thick_d206 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.center-199e {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.new_20e3 {
  flex: 1;
}

.fluid_fedf {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.fluid_fedf a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.iron-f6b4 {
  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;
}

.hover_basic_6e96 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.list-iron-1e0c {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.list-iron-1e0c span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.liquid_cb29 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.liquid_cb29 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.mini_2cee {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.mini_2cee strong {
  display: block;
  margin-bottom: 0.75rem;
}

.mini_2cee ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mini_2cee li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.form_basic_87f5 {
  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 === */
.accordion-470c {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.container-advanced-25ab {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.preview_ad21 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.carousel-48b9 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.carousel-48b9 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.carousel-48b9 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.carousel-48b9 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;
}

.carousel-48b9 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.carousel-48b9 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.feature-07ee {
  padding: 3rem 0 5rem;
}

.layout_blue_e5a4 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.layout_blue_e5a4.media-2705 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.focus-over-21bb {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.banner-a0fc {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.video-4d82 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.video-4d82 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.top-6e48 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.avatar_a87b {
  text-align: center;
}

.row-gold-a1f5 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.carousel_down_3afc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.table_9234 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.disabled_7fed {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.stone-2712 {
  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;
}

.stone-2712 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.stone-2712:hover {
  box-shadow: var(--shadow-lg);
}

.stone-2712.simple_862d {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.stone-2712 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.stone-2712 ul {
  margin: 1rem 0;
}

.stone-2712 li {
  margin-bottom: 0.75rem;
}

.image_inner_f228 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.red_9984 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.red_9984 a {
  font-weight: 600;
}

/* === Data Tables === */
.alert-51be {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background-color: var(--bg-primary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.alert-51be table {
  width: 100%;
  min-width: 600px;
}

.alert-51be thead {
  background-color: var(--primary-color);
  color: white;
}

.alert-51be th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.alert-51be td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.alert-51be tbody tr:hover {
  background-color: var(--bg-secondary);
}

.alert-51be tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.avatar-small-31ad {
  list-style: none;
  margin: 1.5rem 0;
}

.avatar-small-31ad li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.avatar-small-31ad li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.gradient_gold_94ec::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-569f::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 === */
.panel-7432 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.border-3de5 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.border-3de5 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.border-3de5 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.border-3de5 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.panel-7432 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.link-2b9d {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.link-2b9d::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.gradient_e479 {
  position: relative;
  margin-bottom: 3rem;
}

.card-02ca {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.card-02ca .text_5c29 {
  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;
}

.preview-full-f0b3 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.preview-full-f0b3 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.preview-full-f0b3 ul {
  margin: 1rem 0;
}

.preview-full-f0b3 li {
  margin-bottom: 0.75rem;
}

.advanced_8a66 {
  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 === */
.dynamic-d241 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.dynamic-d241 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.tall-4629 {
  list-style: none;
  margin: 1.5rem 0;
}

.tall-4629 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.tall-4629 a {
  font-weight: 600;
}

.carousel_old_fe2b {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.in-31df {
  margin: 2.5rem 0;
}

.action_1c60 {
  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;
}

.action_1c60:hover {
  box-shadow: var(--shadow-lg);
}

.action_1c60.cold_f80a {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.alert_9162 {
  flex-shrink: 0;
}

.alert_9162 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);
}

.media_a9b1 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.gradient_c4f0,
.sort-06ae,
.light-4d41 {
  width: 100%;
  margin: 1.5rem 0;
}

.column-new-462f {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.column-new-462f strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.panel-c631 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.panel-c631 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.medium-42a6 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.medium-42a6 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.stale_f216 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.filter-last-5d71 {
  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;
}

.filter-last-5d71:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.filter-last-5d71.frame-0c20 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.filter-last-5d71 .summary-b5df {
  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;
}

.filter-last-5d71 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.lite-83cd {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.stale_6e92 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.stale_6e92 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.notice_8660 {
  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 === */
.active-7bc8 {
  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;
}

.top_95e5 {
  background-color: var(--primary-color);
  color: white;
}

.top_95e5:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.label-cool-bedc {
  background-color: var(--text-secondary);
  color: white;
}

.label-cool-bedc:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.tall_bc7e {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.tall_bc7e:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.narrow_c8f9 {
  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;
}

.narrow_c8f9:hover {
  background-color: var(--primary-dark);
}

.footer_9a47 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.video_new_0e02 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.sidebar-97d5 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.south_14dd {
  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 === */
.static_4a4f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.short-c901 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.short-c901 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.picture_dim_88dd {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.description_last_dbb3 {
  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;
}

.pink-f726 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.feature_in_0262 {
  list-style: none;
  counter-reset: rank-counter;
}

.feature_in_0262 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.feature_in_0262 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;
}

.gallery_a211 {
  list-style: none;
}

.gallery_a211 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.dropdown_c089 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.header_efe2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.header_efe2 .picture-first-7a75 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.header_efe2 .primary_red_2691 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.nav_black_0d47 {
  margin-top: 3rem;
}

.white-9f0d {
  width: 100%;
}

.gallery-next-e966 {
  background-color: #fef3c7;
}

.hidden_huge_894c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.message_old_4d15 {
  margin: 3rem 0;
}

.column-wood-99e4 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.medium_25ab {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.medium_25ab:hover {
  box-shadow: var(--shadow-lg);
}

.medium_25ab.black_c490 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.steel_2b7e {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.center_219f strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.center_219f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.gold_b155 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.medium_25ab blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.heading_lower_8352 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.panel_upper_15e1 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.mask-a049 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.video-pink-9ca2 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.frame-debc {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.picture_bd51 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.simple_a150 {
  max-width: 900px;
  margin: 0 auto;
}

.gradient-thick-238c {
  margin: 2rem 0;
}

.secondary_small_0ab4 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.secondary_small_0ab4 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.secondary_small_0ab4 summary::-webkit-details-marker {
  display: none;
}

.secondary_small_0ab4 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.simple-fe4e {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.secondary_small_0ab4[open] .simple-fe4e {
  transform: rotate(45deg);
}

.medium_cbda {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.medium_cbda p:last-child {
  margin-bottom: 0;
}

.popup_first_7739 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.article_rough_d94e {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.right-e964 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.right-e964 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.right-e964 .active-7bc8 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.pink_b8ca {
  max-width: 900px;
  margin: 0 auto;
}

.description_pink_5d23 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.main-basic-6ed2 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.main-basic-6ed2.fn-success-569f {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.fluid-b974 {
  font-size: 3rem;
  line-height: 1;
}

.dropdown_lite_e054 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.tiny-a3fa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.photo-802d,
.pressed_e7cb {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.photo-802d h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.pressed_e7cb h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.background_action_a8ee,
.main-bde2 {
  margin: 1.5rem 0;
}

.background_action_a8ee li,
.main-bde2 li {
  margin-bottom: 1rem;
}

.down-f587 {
  margin: 3rem 0;
}

.advanced-65f3 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.advanced-65f3 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.advanced-65f3 ol {
  margin: 1rem 0;
}

.advanced-65f3 li {
  margin-bottom: 0.75rem;
}

.focus-98fe {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.aside-current-662a {
  margin: 2rem 0;
}

.advanced-5931 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.fresh-ebbb {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.search-middle-4eca {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.cold-45d9 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.full_102f {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.overlay_4522 {
  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;
}

.overlay_4522 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.pattern-cf87 {
  flex: 1;
}

.pattern-cf87 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.text-7783 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.mask-1a7e p {
  margin-bottom: 1rem;
}

.next-ed2e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.alert-307e {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.mask_old_8218 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.mask_old_8218 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.tall_95a8 h3 {
  margin-bottom: 1.5rem;
}

.solid_1892 {
  display: grid;
  gap: 2rem;
}

.under-6ff2 {
  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;
}

.under-6ff2 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.under-6ff2 h4 {
  margin: 0 0 0.25rem;
}

.under-6ff2 p {
  margin: 0;
  font-size: 0.9375rem;
}

.slow-3f75 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.hard-3d8d {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.hard-3d8d h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.hard-3d8d ul {
  margin: 1.5rem 0;
}

.hard-3d8d li {
  margin-bottom: 0.75rem;
}

.first-8134 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.red-2fac {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.component_f818 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.title-cae9 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.title-cae9 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.backdrop_568a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.backdrop_568a a {
  color: rgba(255, 255, 255, 0.8);
}

.slider-middle-9f19 {
  list-style: none;
}

.slider-middle-9f19 li {
  margin-bottom: 0.75rem;
}

.slider-middle-9f19 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.slider-middle-9f19 a:hover {
  color: white;
}

.banner-up-14a9 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.selected_4cdb {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.hard-bb61 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.container_under_6e70 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.pressed_ef1a {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .outline-2168 {
    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;
  }

  .menu-left-22d1 {
    font-size: 1.5rem !important;
  }

  .hero_020e {
    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 */
  .stone-2712,
  .tabs-5b04,
  .preview-full-f0b3,
  .media_a9b1,
  .steel_2b7e,
  .medium_25ab,
  .medium_cbda,
  .sort-f850,
  .active-c0fe,
  .focus-over-21bb {
    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 */
  .primary-282f {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .new_20e3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .center-199e {
    flex-shrink: 0;
  }

  .pattern-cf87 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .fluid_fedf,
  .hover_basic_6e96 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hover_basic_6e96 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .box_new_b01e {
    display: none;
  }

  /* Show mobile actions */
  .layout_dirty_a156 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .feature-301e {
    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;
  }

  .feature-301e svg {
    flex-shrink: 0;
  }

  .feature-301e .dropdown_left_38c1 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .feature-301e .notice_e763 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .widget-easy-2e48 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .summary-6e0c {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .feature-301e:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .highlight-cool-63d4 {
    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;
  }

  .highlight-cool-63d4.fn-active-569f {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .highlight-cool-63d4 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .highlight-cool-63d4 li:last-child {
    border-bottom: none;
  }

  .highlight-cool-63d4 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .secondary-5ac2 {
    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;
  }

  .secondary-5ac2 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .secondary-5ac2 li:last-child {
    border-bottom: none;
  }

  .secondary-5ac2 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .card-58b6 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .dropdown-motion-9c8d {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .pink-7362,
  .nav-05fd {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .pink-7362 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .nav-05fd {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .secondary-5ac2.fn-active-569f {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .aside-dirty-8bd6 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .menu-dark-660b {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .form_dirty_93b7 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .nav-first-06a3 {
    margin-top: 0;
  }

  /* Hero section */
  .nav-first-06a3 {
    padding: 2rem 0 1.5rem;
  }

  .hero_020e {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .active-c0fe {
    font-size: 1rem;
  }

  /* Hero brand image */
  .notification-a3fe {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .silver_00e3 {
    max-width: 100%;
    border-radius: 8px;
  }

  .description_055a {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .container_de05 {
    padding: 1rem;
  }

  .focused_4869 {
    font-size: 1.5rem;
  }

  .shadow_d294 {
    font-size: 0.75rem;
  }

  .sort-f850 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .outline-1654 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .outline-1654 .active-7bc8 {
    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 */
  .preview_ad21 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .action_1c60 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .alert_9162 {
    margin-bottom: 1rem;
  }

  /* Author */
  .thick_d206 {
    flex-direction: column;
  }

  .overlay_4522 {
    flex-direction: column;
  }

  /* Quotes */
  .steel_2b7e {
    flex-direction: column;
  }

  /* Pros/Cons */
  .tiny-a3fa {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cold-45d9 {
    flex-direction: column;
  }

  .cold-45d9 .active-7bc8 {
    width: 100%;
  }

  /* Version comparison */
  .stale_f216 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .static_4a4f {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .component_f818 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hard-bb61 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .alert-51be,
  .sort-06ae,
  .pagination_4128,
  .white-9f0d,
  .gradient_c4f0,
  .light-4d41 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .alert-51be table,
  .sort-06ae table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .notice_8660 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .outline-2168 {
    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;
  }

  .menu-left-22d1 {
    font-size: 1.25rem !important;
  }

  .hero_020e {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .menu-dark-660b {
    position: fixed;
  }

  .form_dirty_93b7 {
    padding: 0.625rem 0;
  }

  .heading_5f39 img {
    height: 26px;
  }

  .secondary-5ac2 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .highlight-cool-63d4 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .feature-301e {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .feature-301e svg {
    width: 18px;
    height: 18px;
  }

  .feature-301e .dropdown_left_38c1 {
    font-size: 0.7rem;
  }

  .feature-301e .notice_e763 {
    font-size: 0.65rem;
  }

  .pink-7362,
  .nav-05fd {
    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, .outline-2168, .box_outer_ebc6, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .notification-a3fe {
    padding: 1rem;
  }

  .description_055a {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .container_de05 {
    padding: 0.875rem;
  }

  .focused_4869 {
    font-size: 1.25rem;
  }

  .outline-1654 .active-7bc8 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .hero_020e {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .active-7bc8 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .footer_9a47 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .action_1c60 {
    padding: 1rem;
  }

  .alert_9162 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .stone-2712,
  .image_01c3,
  .thumbnail-fluid-b2d3,
  .hover_5b98 {
    padding: 1rem;
  }
}

@media print {
  .menu-dark-660b,
  .accordion-470c,
  .aside-dirty-8bd6,
  .active-7bc8,
  .red-2fac {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .outline-2168 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.focus_medium_9fdd {
  margin-bottom: 3rem;
  text-align: center;
}

.menu-left-22d1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.input-last-9fc8 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.input-brown-2106,
.orange_f015 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gradient-pink-3b5a {
  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;
}

.gradient-pink-3b5a:hover {
  transform: translateY(-5px);
}

.gradient-pink-3b5a strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.gradient-pink-3b5a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.top-3fa0 {
  margin: 3rem 0;
}

.surface_large_224d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.carousel_4b09 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.carousel_4b09:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.notification_dark_513f {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.lower_5433 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.badge_dim_ca10 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.cool-2988 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.texture_195d {
  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;
}

.texture_195d:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.texture_195d.photo-advanced-25e8 {
  border-left: 4px solid var(--primary-color);
}

.button_easy_dba4 {
  flex-shrink: 0;
}

.button_easy_dba4 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.icon-black-bf3f {
  flex: 1;
}

.icon-black-bf3f h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.static_f804 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.mask-3fc4,
.disabled_662c,
.block_up_c9e8 {
  margin-bottom: 1.5rem;
}

.mask-3fc4 h4,
.disabled_662c h4,
.block_up_c9e8 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mask-3fc4 ul,
.disabled_662c ul,
.block_up_c9e8 ul {
  list-style: none;
  padding: 0;
}

.mask-3fc4 li,
.disabled_662c li,
.block_up_c9e8 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.mask-3fc4 li:before,
.disabled_662c li:before,
.block_up_c9e8 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.advanced_73a5 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.advanced_73a5 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;
}

.advanced_73a5 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.pro_dd39 { margin: 2rem 0; }
.notice_full_86e0 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.notice_full_86e0 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.tertiary_complex_384e p { margin-bottom: 1rem; line-height: 1.7; }
.tertiary_complex_384e strong { color: var(--text-primary); }
.tertiary_complex_384e ul { list-style: none; padding-left: 0; }
.tertiary_complex_384e ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.tertiary_complex_384e ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.block_3813 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.current-5b79 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.current-5b79:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.label_bright_485c { font-size: 3rem; margin-bottom: 1rem; }
.current-5b79 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.current-5b79 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.picture-2394 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.picture-2394 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.gallery_brown_f9e3 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.bronze-ecf7 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.motion-0aac { text-align: center; }
.content-011d { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.status_8dce { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.pagination_hovered_7298 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.gallery_center_dc51 { margin: 2rem 0; }
.shade-orange-f72d { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.shade-orange-f72d h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.shade-orange-f72d p, .shade-orange-f72d ul { line-height: 1.7; }
.shade-orange-f72d ul { list-style: none; padding-left: 0; }
.shade-orange-f72d ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.shade-orange-f72d ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.element_hard_20cf { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.image-0641 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.block_left_dcb7 { text-align: center; }
.button_copper_76ad { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.caption_d4c0 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.outline_9854 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.full-7376 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.thumbnail-left-adb7 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.thumbnail-left-adb7:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.thumbnail-left-adb7 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.thumbnail-left-adb7 p, .thumbnail-left-adb7 ul { line-height: 1.7; }
.thumbnail-left-adb7 ul { list-style: none; padding-left: 0; }
.thumbnail-left-adb7 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.thumbnail-left-adb7 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 7b9f */
.ghost-box-d3 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.0;
}
