/* ============================================
   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 */
.wrapper_top_e1f4 p,
.tabs-3aea,
.accent-d294,
.image-silver-b251,
.menu_narrow_9843,
.active-186c,
.shadow_8dc6,
.picture-1a45 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.hidden-cold-8c5d {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.hidden-cold-8c5d > *,
.alert_25f7,
.wrapper_top_e1f4,
.content-e22a {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .hidden-cold-8c5d {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .hidden-cold-8c5d {
    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 === */
.complex-02a9 {
  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 */
.complex-02a9.north_57c2 {
  box-shadow: var(--shadow-md);
}

.lower_c71e {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.pressed-15ad img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.gas_c709 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.hover-south-d9d8 {
  display: none;
}

/* Hide mobile actions on desktop */
.brown_0ffc {
  display: none;
}

.form-e9da a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.form-e9da a:hover,
.form-e9da a.fn-active-13ac {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.silver-1bf4 {
  margin-left: 1rem;
}

.primary_29a5 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.media-1529,
.shade-e427 {
  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;
}

.media-1529 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.media-1529: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;
}

.shade-e427 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.shade-e427: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;
}

.media-1529 svg,
.shade-e427 svg {
  flex-shrink: 0;
}

.message_00c3 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.sidebar-dbea {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.sidebar-dbea::before,
.sidebar-dbea::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.sidebar-dbea::before {
  top: -7px;
}

.sidebar-dbea::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.notice-light-cc54 {
  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 === */
.notice-bb58 {
  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);
}

.frame_5670 {
  margin: 0 0 2rem;
  text-align: center;
}

.dropdown-gold-1b52 {
  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;
}

.dropdown-gold-1b52:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.summary_bad5 {
  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);
}

.summary_bad5 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.huge-a9ea {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.progress_4893 {
  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;
}

.progress_4893:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.element-9045 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.lite-586b {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.nav-out-f799 {
  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);
}

.nav-out-f799 .in-66ca {
  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;
}

.nav-out-f799 .in-66ca svg {
  flex-shrink: 0;
}

.nav-out-f799 .link_full_1619 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.nav-out-f799 .link_full_1619: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);
}

.nav-out-f799 .fluid_e234 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.nav-out-f799 .fluid_e234: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) {
  .notice-bb58 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .dropdown-gold-1b52 {
    max-width: 100%;
  }

  .huge-a9ea {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .progress_4893 {
    padding: 1rem;
  }

  .element-9045 {
    font-size: 1.5rem;
  }

  .lite-586b {
    font-size: 0.75rem;
  }

  .summary_bad5 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .nav-out-f799 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .nav-out-f799 .in-66ca {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .huge-a9ea {
    grid-template-columns: 1fr;
  }
}

.static_9a1a {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.text_7584 {
  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 === */
.tall_bee9 {
  margin-bottom: 2.5rem;
}

.pink_3ebd {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.static_9a1a {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.panel_top_88ec {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.outline-673b {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.highlight-yellow-4fbb {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-c1d8 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.outline_fresh_c29c {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.primary-138e {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.frame_static_4f9d {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.frame_static_4f9d svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.sidebar_mini_df61 {
  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);
}

.tertiary_def6 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.list_1615 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.title-black-7cbc {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.advanced_a427 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.simple-50e1 {
  display: grid;
  gap: 1rem;
}

.medium-fbee {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.detail_light_421a {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.container_active_bbae {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.header-outer-fe56 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.card_0f8d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.grid_1d11 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.grid_1d11 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.tabs-3aea {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.alert-6453 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.wide_4d42 {
  display: grid;
  gap: 2rem;
}

.container-glass-38ab {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.outline-673b {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.panel_top_88ec {
  flex: 1;
}

.nav-c1d8 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.nav-c1d8 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.detail_next_debc {
  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;
}

.outline_fresh_c29c {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.pressed-3270 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.pressed-3270 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.basic_759e {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.basic_759e a {
  font-size: 0.875rem;
  font-weight: 500;
}

.link-2858 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.link-2858 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.link-2858 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.link-2858 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.form_83a0 {
  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 === */
.fresh_a17f {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.item-c582 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.thumbnail_de3d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.nav-fe29 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.nav-fe29 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.nav-fe29 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.nav-fe29 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;
}

.nav-fe29 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.nav-fe29 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.wrapper_top_e1f4 {
  padding: 3rem 0 5rem;
}

.content-e22a {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.content-e22a.photo-516e {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.accent-d294 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.block-fe69 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.sort_cool_0455 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.sort_cool_0455 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.gallery_short_1d5b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.out-5839 {
  text-align: center;
}

.tabs_west_d850 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.paper-5b7d {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.blue-9182 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.active-186c {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.image-silver-b251 {
  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;
}

.image-silver-b251 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.image-silver-b251:hover {
  box-shadow: var(--shadow-lg);
}

.image-silver-b251.cold-11ae {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.image-silver-b251 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.image-silver-b251 ul {
  margin: 1rem 0;
}

.image-silver-b251 li {
  margin-bottom: 0.75rem;
}

.cold-7eef {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.down-2aa6 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.down-2aa6 a {
  font-weight: 600;
}

/* === Data Tables === */
.row_rough_e7e1 {
  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;
}

.row_rough_e7e1 table {
  width: 100%;
  min-width: 600px;
}

.row_rough_e7e1 thead {
  background-color: var(--primary-color);
  color: white;
}

.row_rough_e7e1 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.row_rough_e7e1 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.row_rough_e7e1 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.row_rough_e7e1 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.motion_8ab0 {
  list-style: none;
  margin: 1.5rem 0;
}

.motion_8ab0 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.motion_8ab0 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.element-prev-bd6f::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-13ac::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 === */
.detail-light-3609 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.right-b62c {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.right-b62c img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.right-b62c strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.right-b62c span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.detail-light-3609 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.shadow_8dc6 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.shadow_8dc6::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.content_complex_6365 {
  position: relative;
  margin-bottom: 3rem;
}

.image-2580 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.image-2580 .wrapper_gold_0740 {
  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;
}

.photo_fb67 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.photo_fb67 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.photo_fb67 ul {
  margin: 1rem 0;
}

.photo_fb67 li {
  margin-bottom: 0.75rem;
}

.lite_b71e {
  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 === */
.header_88ec {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.header_88ec h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.main_steel_b7fe {
  list-style: none;
  margin: 1.5rem 0;
}

.main_steel_b7fe li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.main_steel_b7fe a {
  font-weight: 600;
}

.breadcrumb-8226 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.picture-1a45 {
  margin: 2.5rem 0;
}

.carousel_8b05 {
  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;
}

.carousel_8b05:hover {
  box-shadow: var(--shadow-lg);
}

.carousel_8b05.mask-under-4ca5 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.paragraph-focused-5907 {
  flex-shrink: 0;
}

.paragraph-focused-5907 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);
}

.button-pro-7bc8 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.outline-cold-4663,
.button-2118,
.button_d812 {
  width: 100%;
  margin: 1.5rem 0;
}

.paragraph_f2b1 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.paragraph_f2b1 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.smooth_6848 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.smooth_6848 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.filter-south-30fa {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.filter-south-30fa strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.notification_short_e7bb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.shade_5d90 {
  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;
}

.shade_5d90:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.shade_5d90.button_soft_fde3 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.shade_5d90 .wood-c514 {
  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;
}

.shade_5d90 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.small_6430 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.tall_b1a1 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.tall_b1a1 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.huge_13d7 {
  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 === */
.in-66ca {
  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;
}

.link_full_1619 {
  background-color: var(--primary-color);
  color: white;
}

.link_full_1619:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.fluid_e234 {
  background-color: var(--text-secondary);
  color: white;
}

.fluid_e234:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.in_4c97 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.in_4c97:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.dropdown-edcd {
  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;
}

.dropdown-edcd:hover {
  background-color: var(--primary-dark);
}

.preview_tiny_d45c {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.warm-5ff6 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.out_da0c {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.lower-0890 {
  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 === */
.footer_47b3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.last_c6fe {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.last_c6fe h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.item-inner-56ab {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.up_596e {
  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;
}

.liquid_486f {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.paragraph-1a57 {
  list-style: none;
  counter-reset: rank-counter;
}

.paragraph-1a57 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.paragraph-1a57 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;
}

.rough-da04 {
  list-style: none;
}

.rough-da04 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.under-c485 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.hovered-ede9 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hovered-ede9 .icon_5d9e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.hovered-ede9 .column-prev-8a6f {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.video-45e5 {
  margin-top: 3rem;
}

.rough-0f3d {
  width: 100%;
}

.simple_cdf9 {
  background-color: #fef3c7;
}

.lite_76a7 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.black_efc5 {
  margin: 3rem 0;
}

.blue-cb5a {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.basic_f063 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.basic_f063:hover {
  box-shadow: var(--shadow-lg);
}

.basic_f063.video_dynamic_fd72 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.avatar_hovered_6d93 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.tooltip_last_1c0b strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.tooltip_last_1c0b span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.logo_4d6c {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.basic_f063 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.pattern-731b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.large_fef2 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.shadow_old_9ada {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.section-pro-d331 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.button_middle_82a9 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.gas-6d3c {
  margin-top: 1rem;
}

/* === FAQ Section === */
.tooltip_new_bd60 {
  max-width: 900px;
  margin: 0 auto;
}

.banner-bronze-ffda {
  margin: 2rem 0;
}

.complex_e337 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.complex_e337 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.complex_e337 summary::-webkit-details-marker {
  display: none;
}

.complex_e337 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.blue-1a1b {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.complex_e337[open] .blue-1a1b {
  transform: rotate(45deg);
}

.simple_ae7f {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.simple_ae7f p:last-child {
  margin-bottom: 0;
}

.column_east_aa00 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.title_gold_1383 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.menu_orange_ec0d {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.menu_orange_ec0d p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.menu_orange_ec0d .in-66ca {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.carousel_wide_3aea {
  max-width: 900px;
  margin: 0 auto;
}

.footer_current_c4a6 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.fixed-ff3f {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.fixed-ff3f.fn-success-13ac {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.tabs-gas-ea68 {
  font-size: 3rem;
  line-height: 1;
}

.breadcrumb-cd1a h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.gas_5cc9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.grid-73d6,
.rough_05e2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.grid-73d6 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.rough_05e2 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.copper-ca5a,
.section-narrow-b670 {
  margin: 1.5rem 0;
}

.copper-ca5a li,
.section-narrow-b670 li {
  margin-bottom: 1rem;
}

.info_3195 {
  margin: 3rem 0;
}

.tag-dim-9aa3 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.tag-dim-9aa3 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.tag-dim-9aa3 ol {
  margin: 1rem 0;
}

.tag-dim-9aa3 li {
  margin-bottom: 0.75rem;
}

.card-dark-9a26 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.label_iron_85e8 {
  margin: 2rem 0;
}

.hero_new_a8f0 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.dirty-5d72 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.soft-9ce2 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.carousel_fixed_bda2 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.article_liquid_0a06 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.tabs_959e {
  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;
}

.tabs_959e img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.highlight-yellow-4fbb {
  flex: 1;
}

.highlight-yellow-4fbb h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.wrapper_silver_ef07 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.chip_action_2d1f p {
  margin-bottom: 1rem;
}

.section-0582 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.disabled-44b0 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.gallery_5d34 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.gallery_5d34 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.smooth-6ec4 h3 {
  margin-bottom: 1.5rem;
}

.info_under_88b9 {
  display: grid;
  gap: 2rem;
}

.notification-active-4deb {
  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;
}

.notification-active-4deb img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.notification-active-4deb h4 {
  margin: 0 0 0.25rem;
}

.notification-active-4deb p {
  margin: 0;
  font-size: 0.9375rem;
}

.narrow-fb5a {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.texture-hard-2643 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.texture-hard-2643 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.texture-hard-2643 ul {
  margin: 1.5rem 0;
}

.texture-hard-2643 li {
  margin-bottom: 0.75rem;
}

.bright-a235 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.bronze-7ae3 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.pro-fe20 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.popup-c1e5 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.popup-c1e5 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.disabled-c24c {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.disabled-c24c a {
  color: rgba(255, 255, 255, 0.8);
}

.slow-d2c8 {
  list-style: none;
}

.slow-d2c8 li {
  margin-bottom: 0.75rem;
}

.slow-d2c8 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.slow-d2c8 a:hover {
  color: white;
}

.soft_c27b {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.picture-bd5f {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.tall-3728 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.disabled_north_171f {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.disabled_stale_1fab {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .hidden-cold-8c5d {
    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;
  }

  .alert_ba05 {
    font-size: 1.5rem !important;
  }

  .pink_3ebd {
    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 */
  .image-silver-b251,
  .menu_narrow_9843,
  .photo_fb67,
  .button-pro-7bc8,
  .avatar_hovered_6d93,
  .basic_f063,
  .simple_ae7f,
  .summary_bad5,
  .tabs-3aea,
  .accent-d294 {
    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 */
  .static_9a1a {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .panel_top_88ec {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .outline-673b {
    flex-shrink: 0;
  }

  .highlight-yellow-4fbb {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .nav-c1d8,
  .outline_fresh_c29c {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .outline_fresh_c29c {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .gas_c709 {
    display: none;
  }

  /* Show mobile actions */
  .brown_0ffc {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .sort-dark-e024 {
    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;
  }

  .sort-dark-e024 svg {
    flex-shrink: 0;
  }

  .sort-dark-e024 .heading_advanced_b3da {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .sort-dark-e024 .outline-a57b {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .tertiary_de77 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .alert_left_4e88 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .sort-dark-e024:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .hover-south-d9d8 {
    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;
  }

  .hover-south-d9d8.fn-active-13ac {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hover-south-d9d8 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .hover-south-d9d8 li:last-child {
    border-bottom: none;
  }

  .hover-south-d9d8 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .form-e9da {
    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;
  }

  .form-e9da li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .form-e9da li:last-child {
    border-bottom: none;
  }

  .form-e9da a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .silver-1bf4 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .primary_29a5 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .media-1529,
  .shade-e427 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .media-1529 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .shade-e427 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .form-e9da.fn-active-13ac {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .message_00c3 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .complex-02a9 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .lower_c71e {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .notice-light-cc54 {
    margin-top: 0;
  }

  /* Hero section */
  .notice-light-cc54 {
    padding: 2rem 0 1.5rem;
  }

  .pink_3ebd {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .tabs-3aea {
    font-size: 1rem;
  }

  /* Hero brand image */
  .notice-bb58 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .dropdown-gold-1b52 {
    max-width: 100%;
    border-radius: 8px;
  }

  .huge-a9ea {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .progress_4893 {
    padding: 1rem;
  }

  .element-9045 {
    font-size: 1.5rem;
  }

  .lite-586b {
    font-size: 0.75rem;
  }

  .summary_bad5 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .nav-out-f799 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .nav-out-f799 .in-66ca {
    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 */
  .thumbnail_de3d {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .carousel_8b05 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .paragraph-focused-5907 {
    margin-bottom: 1rem;
  }

  /* Author */
  .container-glass-38ab {
    flex-direction: column;
  }

  .tabs_959e {
    flex-direction: column;
  }

  /* Quotes */
  .avatar_hovered_6d93 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .gas_5cc9 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .carousel_fixed_bda2 {
    flex-direction: column;
  }

  .carousel_fixed_bda2 .in-66ca {
    width: 100%;
  }

  /* Version comparison */
  .notification_short_e7bb {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .footer_47b3 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .pro-fe20 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tall-3728 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .row_rough_e7e1,
  .button-2118,
  .green_6cd3,
  .rough-0f3d,
  .outline-cold-4663,
  .button_d812 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .row_rough_e7e1 table,
  .button-2118 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .huge_13d7 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hidden-cold-8c5d {
    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;
  }

  .alert_ba05 {
    font-size: 1.25rem !important;
  }

  .pink_3ebd {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .complex-02a9 {
    position: fixed;
  }

  .lower_c71e {
    padding: 0.625rem 0;
  }

  .pressed-15ad img {
    height: 26px;
  }

  .form-e9da {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .hover-south-d9d8 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .sort-dark-e024 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .sort-dark-e024 svg {
    width: 18px;
    height: 18px;
  }

  .sort-dark-e024 .heading_advanced_b3da {
    font-size: 0.7rem;
  }

  .sort-dark-e024 .outline-a57b {
    font-size: 0.65rem;
  }

  .media-1529,
  .shade-e427 {
    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, .hidden-cold-8c5d, .alert_25f7, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .notice-bb58 {
    padding: 1rem;
  }

  .huge-a9ea {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .progress_4893 {
    padding: 0.875rem;
  }

  .element-9045 {
    font-size: 1.25rem;
  }

  .nav-out-f799 .in-66ca {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .pink_3ebd {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .in-66ca {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .preview_tiny_d45c {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .carousel_8b05 {
    padding: 1rem;
  }

  .paragraph-focused-5907 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .image-silver-b251,
  .column-east-a0d2,
  .texture-action-4bc7,
  .message-b539 {
    padding: 1rem;
  }
}

@media print {
  .complex-02a9,
  .fresh_a17f,
  .message_00c3,
  .in-66ca,
  .bronze-7ae3 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .hidden-cold-8c5d {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.media-b0df {
  margin-bottom: 3rem;
  text-align: center;
}

.alert_ba05 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.info_advanced_425e {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.chip-d4db,
.current_3ba8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.light_93d8 {
  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;
}

.light_93d8:hover {
  transform: translateY(-5px);
}

.light_93d8 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.light_93d8 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.section_7c1e {
  margin: 3rem 0;
}

.focus-17b8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.tiny-0fb6 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.tiny-0fb6:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.video_current_4cf6 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.outer_c8df {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.white-2198 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.fixed-adcc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.component-dark-cfa3 {
  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;
}

.component-dark-cfa3:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.component-dark-cfa3.basic-6b20 {
  border-left: 4px solid var(--primary-color);
}

.container-97e9 {
  flex-shrink: 0;
}

.container-97e9 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.info_bottom_9c1d {
  flex: 1;
}

.info_bottom_9c1d h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.container_narrow_4db5 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.avatar-2ab7,
.layout-9a3e,
.huge_04e0 {
  margin-bottom: 1.5rem;
}

.avatar-2ab7 h4,
.layout-9a3e h4,
.huge_04e0 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.avatar-2ab7 ul,
.layout-9a3e ul,
.huge_04e0 ul {
  list-style: none;
  padding: 0;
}

.avatar-2ab7 li,
.layout-9a3e li,
.huge_04e0 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.avatar-2ab7 li:before,
.layout-9a3e li:before,
.huge_04e0 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.action_9293 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.action_9293 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;
}

.action_9293 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.pagination_39e6 { margin: 2rem 0; }
.video_9329 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.video_9329 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.media-short-8460 p { margin-bottom: 1rem; line-height: 1.7; }
.media-short-8460 strong { color: var(--text-primary); }
.media-short-8460 ul { list-style: none; padding-left: 0; }
.media-short-8460 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.media-short-8460 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.over-a801 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.widget-8c31 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.widget-8c31:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.status-old-f076 { font-size: 3rem; margin-bottom: 1rem; }
.widget-8c31 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.widget-8c31 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.tertiary_f335 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.tertiary_f335 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.hero_action_e53d { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.lite-4ed3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.box-black-80fd { text-align: center; }
.soft_cffd { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.surface_mini_62a6 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.lite_c9a5 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.static-357d { margin: 2rem 0; }
.accent_f232 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.accent_f232 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.accent_f232 p, .accent_f232 ul { line-height: 1.7; }
.accent_f232 ul { list-style: none; padding-left: 0; }
.accent_f232 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.accent_f232 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.carousel-east-4948 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.layout-a0f3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.focus_stone_132f { text-align: center; }
.item-a58f { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.stone-2bbe { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.popup-11e2 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.surface-mini-491f { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.west_3a4d { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.west_3a4d:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.west_3a4d h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.west_3a4d p, .west_3a4d ul { line-height: 1.7; }
.west_3a4d ul { list-style: none; padding-left: 0; }
.west_3a4d ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.west_3a4d ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: aab3 */
.phantom-card-n1 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.3;
}
