/* ============================================
   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 */
.list_bright_43d5 p,
.upper_72b0,
.silver-5b34,
.thumbnail-gold-25bc,
.banner_35ae,
.aside-gas-c5c6,
.pagination_prev_0e1e,
.breadcrumb-cold-01bf {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.input_f27e {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.input_f27e > *,
.bronze_2597,
.list_bright_43d5,
.popup-8907 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .input_f27e {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .input_f27e {
    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 === */
.search-pro-cf14 {
  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 */
.search-pro-cf14.hover-1781 {
  box-shadow: var(--shadow-md);
}

.article-3864 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.dark-53c3 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.iron_488f {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.article-bright-fd46 {
  display: none;
}

/* Hide mobile actions on desktop */
.section-134a {
  display: none;
}

.new_66c7 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.new_66c7 a:hover,
.new_66c7 a.fn-active-8052 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.bright-5ac7 {
  margin-left: 1rem;
}

.wrapper_0050 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.list-copper-de59,
.static_e858 {
  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;
}

.list-copper-de59 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.list-copper-de59: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;
}

.static_e858 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.static_e858: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;
}

.list-copper-de59 svg,
.static_e858 svg {
  flex-shrink: 0;
}

.media-5122 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.modal_hovered_819e {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.modal_hovered_819e::before,
.modal_hovered_819e::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.modal_hovered_819e::before {
  top: -7px;
}

.modal_hovered_819e::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.hero_1167 {
  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 === */
.focus-18d5 {
  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);
}

.wood_8874 {
  margin: 0 0 2rem;
  text-align: center;
}

.wood-8699 {
  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;
}

.wood-8699:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.text-cab7 {
  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);
}

.text-cab7 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.text_13e5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.center-a10e {
  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;
}

.center-a10e:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.list_fixed_4895 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.mini-2c21 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.stale_b7f0 {
  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);
}

.stale_b7f0 .pagination_b9a5 {
  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;
}

.stale_b7f0 .pagination_b9a5 svg {
  flex-shrink: 0;
}

.stale_b7f0 .alert-2640 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.stale_b7f0 .alert-2640: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);
}

.stale_b7f0 .pagination_da80 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.stale_b7f0 .pagination_da80: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) {
  .focus-18d5 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .wood-8699 {
    max-width: 100%;
  }

  .text_13e5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .center-a10e {
    padding: 1rem;
  }

  .list_fixed_4895 {
    font-size: 1.5rem;
  }

  .mini-2c21 {
    font-size: 0.75rem;
  }

  .text-cab7 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .stale_b7f0 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .stale_b7f0 .pagination_b9a5 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .text_13e5 {
    grid-template-columns: 1fr;
  }
}

.image_center_592c {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.detail_bafa {
  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 === */
.carousel_5d03 {
  margin-bottom: 2.5rem;
}

.sort_63d9 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.image_center_592c {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.focus-9055 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.item_7ed0 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.tooltip_warm_f8b5 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.media_north_4371 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.old_ff3f {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.outline-warm-b40e {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.gallery-8efe {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.gallery-8efe svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.complex-fb93 {
  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);
}

.section_liquid_7b73 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.mask-advanced-700a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.fresh-f543 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.heading_purple_16c0 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.texture-gas-6d6a {
  display: grid;
  gap: 1rem;
}

.overlay_cool_e553 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.sidebar-green-05c2 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.pattern-c6b4 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.sort-1e73 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.tooltip-focused-ca36 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.east_5a7a {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.east_5a7a p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.upper_72b0 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.texture-full-ca31 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.avatar_hard_8412 {
  display: grid;
  gap: 2rem;
}

.media_green_5c02 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.item_7ed0 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.focus-9055 {
  flex: 1;
}

.media_north_4371 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.media_north_4371 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.simple-e2ee {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
}

.old_ff3f {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.selected-4408 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.selected-4408 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.backdrop_inner_1bbf {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.backdrop_inner_1bbf a {
  font-size: 0.875rem;
  font-weight: 500;
}

.avatar-f751 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.avatar-f751 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.avatar-f751 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.avatar-f751 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.left_7d19 {
  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 === */
.hero_43ba {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.media-df59 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.smooth-f61e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.action-e63a h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.action-e63a ol {
  list-style: none;
  counter-reset: toc-counter;
}

.action-e63a ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.action-e63a 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;
}

.action-e63a ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.action-e63a ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.list_bright_43d5 {
  padding: 3rem 0 5rem;
}

.popup-8907 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.popup-8907.soft_1554 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.silver-5b34 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.component_pink_66cb {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.notification_liquid_36bd {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.notification_liquid_36bd h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.disabled-bright-e0fc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.top_75d6 {
  text-align: center;
}

.item_fb6f {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.glass_7897 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.text_070a {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.aside-gas-c5c6 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.thumbnail-gold-25bc {
  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;
}

.thumbnail-gold-25bc * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thumbnail-gold-25bc:hover {
  box-shadow: var(--shadow-lg);
}

.thumbnail-gold-25bc.layout_6bd0 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.thumbnail-gold-25bc h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.thumbnail-gold-25bc ul {
  margin: 1rem 0;
}

.thumbnail-gold-25bc li {
  margin-bottom: 0.75rem;
}

.down_01a8 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.plasma_6b2b {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.plasma_6b2b a {
  font-weight: 600;
}

/* === Data Tables === */
.green-d097 {
  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;
}

.green-d097 table {
  width: 100%;
  min-width: 600px;
}

.green-d097 thead {
  background-color: var(--primary-color);
  color: white;
}

.green-d097 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.green-d097 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.green-d097 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.green-d097 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.avatar-22a7 {
  list-style: none;
  margin: 1.5rem 0;
}

.avatar-22a7 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.avatar-22a7 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.element_left_30d0::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-8052::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 === */
.last_c804 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.tabs-9661 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.tabs-9661 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.tabs-9661 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.tabs-9661 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.last_c804 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.pagination_prev_0e1e {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.pagination_prev_0e1e::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.widget_8217 {
  position: relative;
  margin-bottom: 3rem;
}

.orange_82d0 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.orange_82d0 .lower-0b8c {
  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;
}

.background-old-5913 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.background-old-5913 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.background-old-5913 ul {
  margin: 1rem 0;
}

.background-old-5913 li {
  margin-bottom: 0.75rem;
}

.video-bronze-05d5 {
  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 === */
.pink-4f99 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.pink-4f99 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.shade-new-26e2 {
  list-style: none;
  margin: 1.5rem 0;
}

.shade-new-26e2 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.shade-new-26e2 a {
  font-weight: 600;
}

.steel_7e6b {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.breadcrumb-cold-01bf {
  margin: 2.5rem 0;
}

.info-white-b0ed {
  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;
}

.info-white-b0ed:hover {
  box-shadow: var(--shadow-lg);
}

.info-white-b0ed.glass_b86c {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.modal_1a7c {
  flex-shrink: 0;
}

.modal_1a7c 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);
}

.hard-d3ed h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.dark-d561,
.rough_7b08,
.old-d0be {
  width: 100%;
  margin: 1.5rem 0;
}

.notification_brown_482f {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.notification_brown_482f strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.feature_easy_15b8 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.feature_easy_15b8 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.disabled_99c3 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.disabled_99c3 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.short_ef77 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.chip_5d20 {
  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;
}

.chip_5d20:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.chip_5d20.input-db94 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.chip_5d20 .wide_860a {
  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;
}

.chip_5d20 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.in-7727 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.list-d983 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.list-d983 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.black_26d4 {
  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 === */
.pagination_b9a5 {
  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;
}

.alert-2640 {
  background-color: var(--primary-color);
  color: white;
}

.alert-2640:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.pagination_da80 {
  background-color: var(--text-secondary);
  color: white;
}

.pagination_da80:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.filter-ce83 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.filter-ce83:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.down_cfe3 {
  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;
}

.down_cfe3:hover {
  background-color: var(--primary-dark);
}

.smooth_0c29 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.block_a57b {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.focused-44c1 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.warm_d860 {
  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 === */
.info-32ca {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.brown_f10f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.brown_f10f h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.pattern-dba1 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.thumbnail_orange_70d3 {
  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;
}

.shadow-thick-7809 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.table-9b7d {
  list-style: none;
  counter-reset: rank-counter;
}

.table-9b7d li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.table-9b7d 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;
}

.grid-tiny-d197 {
  list-style: none;
}

.grid-tiny-d197 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.lite-8642 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.media_down_e5c7 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.media_down_e5c7 .detail-complex-93d5 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.media_down_e5c7 .active_2b11 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.outline_out_a9cd {
  margin-top: 3rem;
}

.row_8fca {
  width: 100%;
}

.tall-78ea {
  background-color: #fef3c7;
}

.west_92fe {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.image_in_8f52 {
  margin: 3rem 0;
}

.hero_stale_2236 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.icon_9462 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.icon_9462:hover {
  box-shadow: var(--shadow-lg);
}

.icon_9462.popup-19e3 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.dim_598b {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.overlay_stale_9816 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.overlay_stale_9816 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.widget-918f {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.icon_9462 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.fresh-09f8 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.label_tiny_a6cd {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.badge_dark_d576 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.complex-8add {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.card_4dad {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.background-glass-c9dc {
  margin-top: 1rem;
}

/* === FAQ Section === */
.carousel_last_fe36 {
  max-width: 900px;
  margin: 0 auto;
}

.element-current-500b {
  margin: 2rem 0;
}

.logo_under_cbed {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.logo_under_cbed summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.logo_under_cbed summary::-webkit-details-marker {
  display: none;
}

.logo_under_cbed summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.input-out-c66f {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.logo_under_cbed[open] .input-out-c66f {
  transform: rotate(45deg);
}

.grid-full-8601 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.grid-full-8601 p:last-child {
  margin-bottom: 0;
}

.popup_lower_b7c0 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.title_action_94fd {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.media_f072 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.media_f072 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.media_f072 .pagination_b9a5 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.frame-5519 {
  max-width: 900px;
  margin: 0 auto;
}

.avatar-d488 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.detail-under-cd77 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.detail-under-cd77.fn-success-8052 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.label_6a93 {
  font-size: 3rem;
  line-height: 1;
}

.feature-c598 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.outline_05a2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.notice-e9a6,
.smooth_9db8 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.notice-e9a6 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.smooth_9db8 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.stone-05c4,
.media_ed3b {
  margin: 1.5rem 0;
}

.stone-05c4 li,
.media_ed3b li {
  margin-bottom: 1rem;
}

.clean-2e2a {
  margin: 3rem 0;
}

.preview-fab5 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.preview-fab5 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.preview-fab5 ol {
  margin: 1rem 0;
}

.preview-fab5 li {
  margin-bottom: 0.75rem;
}

.tertiary_north_a7e6 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.label_1004 {
  margin: 2rem 0;
}

.layout-large-278d {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.slow-a407 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.banner_1f2c {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.steel_06e7 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.notice-521a {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.card-current-7508 {
  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;
}

.card-current-7508 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.tooltip_warm_f8b5 {
  flex: 1;
}

.tooltip_warm_f8b5 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.border-7f8f {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.notice-tiny-a08a p {
  margin-bottom: 1rem;
}

.plasma_782c {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.banner_a6b8 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-e574 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.form-e574 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.column-5199 h3 {
  margin-bottom: 1.5rem;
}

.pattern_active_5464 {
  display: grid;
  gap: 2rem;
}

.pink-160c {
  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;
}

.pink-160c img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.pink-160c h4 {
  margin: 0 0 0.25rem;
}

.pink-160c p {
  margin: 0;
  font-size: 0.9375rem;
}

.overlay_d9fd {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.table_b9df {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.table_b9df h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.table_b9df ul {
  margin: 1.5rem 0;
}

.table_b9df li {
  margin-bottom: 0.75rem;
}

.video-medium-33ce {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.backdrop_aac7 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.avatar_4cac {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.article-new-872b h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.article-new-872b p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.container_1fc4 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.container_1fc4 a {
  color: rgba(255, 255, 255, 0.8);
}

.pink-44d2 {
  list-style: none;
}

.pink-44d2 li {
  margin-bottom: 0.75rem;
}

.pink-44d2 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.pink-44d2 a:hover {
  color: white;
}

.west-61d3 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.tabs-19ea {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.bronze-6f54 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.light-3fcf {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.card_smooth_6e63 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .input_f27e {
    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;
  }

  .first_71c1 {
    font-size: 1.5rem !important;
  }

  .sort_63d9 {
    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 */
  .thumbnail-gold-25bc,
  .banner_35ae,
  .background-old-5913,
  .hard-d3ed,
  .dim_598b,
  .icon_9462,
  .grid-full-8601,
  .text-cab7,
  .upper_72b0,
  .silver-5b34 {
    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 */
  .image_center_592c {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .focus-9055 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .item_7ed0 {
    flex-shrink: 0;
  }

  .tooltip_warm_f8b5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .media_north_4371,
  .old_ff3f {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .old_ff3f {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .iron_488f {
    display: none;
  }

  /* Show mobile actions */
  .section-134a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .pattern-a882 {
    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;
  }

  .pattern-a882 svg {
    flex-shrink: 0;
  }

  .pattern-a882 .action_21bc {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .pattern-a882 .silver_54ad {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .outline_e198 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .mini-7463 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .pattern-a882:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .article-bright-fd46 {
    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;
  }

  .article-bright-fd46.fn-active-8052 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .article-bright-fd46 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .article-bright-fd46 li:last-child {
    border-bottom: none;
  }

  .article-bright-fd46 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .new_66c7 {
    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;
  }

  .new_66c7 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .new_66c7 li:last-child {
    border-bottom: none;
  }

  .new_66c7 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .bright-5ac7 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .wrapper_0050 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .list-copper-de59,
  .static_e858 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .list-copper-de59 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .static_e858 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .new_66c7.fn-active-8052 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .media-5122 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .search-pro-cf14 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .article-3864 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .hero_1167 {
    margin-top: 0;
  }

  /* Hero section */
  .hero_1167 {
    padding: 2rem 0 1.5rem;
  }

  .sort_63d9 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .upper_72b0 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .focus-18d5 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .wood-8699 {
    max-width: 100%;
    border-radius: 8px;
  }

  .text_13e5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .center-a10e {
    padding: 1rem;
  }

  .list_fixed_4895 {
    font-size: 1.5rem;
  }

  .mini-2c21 {
    font-size: 0.75rem;
  }

  .text-cab7 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .stale_b7f0 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .stale_b7f0 .pagination_b9a5 {
    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 */
  .smooth-f61e {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .info-white-b0ed {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .modal_1a7c {
    margin-bottom: 1rem;
  }

  /* Author */
  .media_green_5c02 {
    flex-direction: column;
  }

  .card-current-7508 {
    flex-direction: column;
  }

  /* Quotes */
  .dim_598b {
    flex-direction: column;
  }

  /* Pros/Cons */
  .outline_05a2 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .steel_06e7 {
    flex-direction: column;
  }

  .steel_06e7 .pagination_b9a5 {
    width: 100%;
  }

  /* Version comparison */
  .short_ef77 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .info-32ca {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .avatar_4cac {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bronze-6f54 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .green-d097,
  .rough_7b08,
  .north_e44b,
  .row_8fca,
  .dark-d561,
  .old-d0be {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .green-d097 table,
  .rough_7b08 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .black_26d4 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .input_f27e {
    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;
  }

  .first_71c1 {
    font-size: 1.25rem !important;
  }

  .sort_63d9 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .search-pro-cf14 {
    position: fixed;
  }

  .article-3864 {
    padding: 0.625rem 0;
  }

  .dark-53c3 img {
    height: 26px;
  }

  .new_66c7 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .article-bright-fd46 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .pattern-a882 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .pattern-a882 svg {
    width: 18px;
    height: 18px;
  }

  .pattern-a882 .action_21bc {
    font-size: 0.7rem;
  }

  .pattern-a882 .silver_54ad {
    font-size: 0.65rem;
  }

  .list-copper-de59,
  .static_e858 {
    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, .input_f27e, .bronze_2597, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .focus-18d5 {
    padding: 1rem;
  }

  .text_13e5 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .center-a10e {
    padding: 0.875rem;
  }

  .list_fixed_4895 {
    font-size: 1.25rem;
  }

  .stale_b7f0 .pagination_b9a5 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .sort_63d9 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .pagination_b9a5 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .smooth_0c29 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .info-white-b0ed {
    padding: 1rem;
  }

  .modal_1a7c span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .thumbnail-gold-25bc,
  .article-gold-9f29,
  .black-50d5,
  .text-over-681e {
    padding: 1rem;
  }
}

@media print {
  .search-pro-cf14,
  .hero_43ba,
  .media-5122,
  .pagination_b9a5,
  .backdrop_aac7 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .input_f27e {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.caption_gas_7a9d {
  margin-bottom: 3rem;
  text-align: center;
}

.first_71c1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.tag_d09b {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.tertiary_f6bb,
.photo-e9c2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero-416f {
  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;
}

.hero-416f:hover {
  transform: translateY(-5px);
}

.hero-416f strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.hero-416f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.frame_330c {
  margin: 3rem 0;
}

.fluid_5aba {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.easy-010c {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.easy-010c:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.upper_49c9 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hovered_2b6e {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.inner_3eef {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.container-6ed1 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.bronze-d927 {
  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;
}

.bronze-d927:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.bronze-d927.info_new_2eb5 {
  border-left: 4px solid var(--primary-color);
}

.breadcrumb_left_2336 {
  flex-shrink: 0;
}

.breadcrumb_left_2336 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.last-89f7 {
  flex: 1;
}

.last-89f7 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.outer_da5e {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.column-4236,
.background_76e3,
.block_8b10 {
  margin-bottom: 1.5rem;
}

.column-4236 h4,
.background_76e3 h4,
.block_8b10 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.column-4236 ul,
.background_76e3 ul,
.block_8b10 ul {
  list-style: none;
  padding: 0;
}

.column-4236 li,
.background_76e3 li,
.block_8b10 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.column-4236 li:before,
.background_76e3 li:before,
.block_8b10 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.overlay_red_8b91 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.overlay_red_8b91 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;
}

.overlay_red_8b91 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.box_paper_6f23 { margin: 2rem 0; }
.block-d767 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.block-d767 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.main_glass_f956 p { margin-bottom: 1rem; line-height: 1.7; }
.main_glass_f956 strong { color: var(--text-primary); }
.main_glass_f956 ul { list-style: none; padding-left: 0; }
.main_glass_f956 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.main_glass_f956 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.dynamic-e645 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.under-cbeb { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.under-cbeb:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.outline_yellow_a2a4 { font-size: 3rem; margin-bottom: 1rem; }
.under-cbeb h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.under-cbeb p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.message_active_e8ae { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.message_active_e8ae span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.caption_dcfe { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.tooltip_e1a9 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.hidden-center-a3b7 { text-align: center; }
.nav-168d { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.tabs-0106 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.focused_6c18 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.tiny_05c5 { margin: 2rem 0; }
.paragraph_fff9 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.paragraph_fff9 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.paragraph_fff9 p, .paragraph_fff9 ul { line-height: 1.7; }
.paragraph_fff9 ul { list-style: none; padding-left: 0; }
.paragraph_fff9 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.paragraph_fff9 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.bottom_5d70 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.summary_next_d10b { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.carousel-gas-fa76 { text-align: center; }
.component_gas_d632 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.table_2ffd { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.background-bronze-f9d6 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.icon_06e3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.texture_4b5e { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.texture_4b5e:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.texture_4b5e h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.texture_4b5e p, .texture_4b5e ul { line-height: 1.7; }
.texture_4b5e ul { list-style: none; padding-left: 0; }
.texture_4b5e ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.texture_4b5e ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 9862 */
.widget-item-k8 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.2;
}
