/* ============================================
   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 */
.dynamic-0d44 p,
.surface-white-a778,
.west-b1b5,
.hovered_6b03,
.link_steel_404f,
.background-action-f603,
.hero-485d,
.tabs-large-62fc {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.accordion-under-6b7b {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.accordion-under-6b7b > *,
.upper-a596,
.dynamic-0d44,
.frame_8470 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .accordion-under-6b7b {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .accordion-under-6b7b {
    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 === */
.link-brown-5982 {
  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 */
.link-brown-5982.modal-90dd {
  box-shadow: var(--shadow-md);
}

.silver_997d {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.picture_blue_e759 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.top_bacb {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.gallery-81ba {
  display: none;
}

/* Hide mobile actions on desktop */
.footer-complex-41c6 {
  display: none;
}

.photo-7fea a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.photo-7fea a:hover,
.photo-7fea a.fn-active-c316 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.caption_0eb8 {
  margin-left: 1rem;
}

.breadcrumb-selected-fcec {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.tall-a1e6,
.pagination-edfc {
  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;
}

.tall-a1e6 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.tall-a1e6: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;
}

.pagination-edfc {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.pagination-edfc: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;
}

.tall-a1e6 svg,
.pagination-edfc svg {
  flex-shrink: 0;
}

.inner-e0b3 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.modal-7b46 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.modal-7b46::before,
.modal-7b46::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.modal-7b46::before {
  top: -7px;
}

.modal-7b46::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.label-f5d5 {
  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 === */
.search_9506 {
  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);
}

.background_9b4b {
  margin: 0 0 2rem;
  text-align: center;
}

.slider_outer_4a63 {
  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;
}

.slider_outer_4a63:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.plasma_2364 {
  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);
}

.plasma_2364 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.layout-white-401a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.center_0b10 {
  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_0b10:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.new_e2b3 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.cool_021d {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.title-20c6 {
  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);
}

.title-20c6 .gas-1b75 {
  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;
}

.title-20c6 .gas-1b75 svg {
  flex-shrink: 0;
}

.title-20c6 .accordion_south_a1d5 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.title-20c6 .accordion_south_a1d5: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);
}

.title-20c6 .lower-3ddb {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.title-20c6 .lower-3ddb: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) {
  .search_9506 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .slider_outer_4a63 {
    max-width: 100%;
  }

  .layout-white-401a {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .center_0b10 {
    padding: 1rem;
  }

  .new_e2b3 {
    font-size: 1.5rem;
  }

  .cool_021d {
    font-size: 0.75rem;
  }

  .plasma_2364 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .title-20c6 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .title-20c6 .gas-1b75 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .layout-white-401a {
    grid-template-columns: 1fr;
  }
}

.hot-df8b {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tall-2f2b {
  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 === */
.avatar-simple-645c {
  margin-bottom: 2.5rem;
}

.narrow-a78a {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.hot-df8b {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.pattern-78c7 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dynamic-0b48 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.aside_dynamic_ccb1 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.column-bf74 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.background_a23c {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.shade_c116 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.orange-d057 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.orange-d057 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.under-25b4 {
  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);
}

.hidden_3810 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.message-7b42 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.paragraph-pink-17e8 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.photo-94a5 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.module_hot_09d2 {
  display: grid;
  gap: 1rem;
}

.thick-4345 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.status-hard-95f2 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.red_385c {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.outline-bottom-54d0 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.video-silver-6eb9 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.aside_green_8fbe {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.aside_green_8fbe p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.surface-white-a778 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.full-6018 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.tabs_old_4701 {
  display: grid;
  gap: 2rem;
}

.message-038b {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.dynamic-0b48 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.pattern-78c7 {
  flex: 1;
}

.column-bf74 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.column-bf74 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.center-c55e {
  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;
}

.background_a23c {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.section-edaf {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.section-edaf span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.column-dark-5ca6 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.column-dark-5ca6 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.paper-690d {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.paper-690d strong {
  display: block;
  margin-bottom: 0.75rem;
}

.paper-690d ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.paper-690d li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.active_easy_bb87 {
  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 === */
.column-selected-98ee {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.tooltip-6676 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.hover-bottom-5922 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tabs-28ea h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.tabs-28ea ol {
  list-style: none;
  counter-reset: toc-counter;
}

.tabs-28ea ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.tabs-28ea 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;
}

.tabs-28ea ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.tabs-28ea ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.dynamic-0d44 {
  padding: 3rem 0 5rem;
}

.frame_8470 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.frame_8470.menu_blue_15bb {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.west-b1b5 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.mask-easy-a7ff {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.pink_e789 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.pink_e789 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.logo_7555 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.accordion_light_7282 {
  text-align: center;
}

.modal_e63f {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.primary_under_24a7 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.paper_6cdd {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.background-action-f603 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.hovered_6b03 {
  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;
}

.hovered_6b03 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hovered_6b03:hover {
  box-shadow: var(--shadow-lg);
}

.hovered_6b03.tag-next-7b77 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.hovered_6b03 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.hovered_6b03 ul {
  margin: 1rem 0;
}

.hovered_6b03 li {
  margin-bottom: 0.75rem;
}

.shadow-884d {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.selected_4097 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.selected_4097 a {
  font-weight: 600;
}

/* === Data Tables === */
.small_7618 {
  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;
}

.small_7618 table {
  width: 100%;
  min-width: 600px;
}

.small_7618 thead {
  background-color: var(--primary-color);
  color: white;
}

.small_7618 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.small_7618 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.small_7618 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.small_7618 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.pagination-46bb {
  list-style: none;
  margin: 1.5rem 0;
}

.pagination-46bb li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.pagination-46bb li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.list-tiny-f948::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-c316::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 === */
.image-c6e9 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.slow_2e2e {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.slow_2e2e img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.slow_2e2e strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.slow_2e2e span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.image-c6e9 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.hero-485d {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.hero-485d::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.logo-mini-ccaf {
  position: relative;
  margin-bottom: 3rem;
}

.fresh-c459 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.fresh-c459 .tooltip_stone_573c {
  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;
}

.in-0ad6 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.in-0ad6 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.in-0ad6 ul {
  margin: 1rem 0;
}

.in-0ad6 li {
  margin-bottom: 0.75rem;
}

.medium_1f0f {
  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 === */
.tag_db9c {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.tag_db9c h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.badge_8bde {
  list-style: none;
  margin: 1.5rem 0;
}

.badge_8bde li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.badge_8bde a {
  font-weight: 600;
}

.copper-f28d {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.tabs-large-62fc {
  margin: 2.5rem 0;
}

.iron-f3ca {
  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;
}

.iron-f3ca:hover {
  box-shadow: var(--shadow-lg);
}

.iron-f3ca.texture-d66f {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.outer-2cdf {
  flex-shrink: 0;
}

.outer-2cdf 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);
}

.dropdown_medium_b7f0 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.breadcrumb-538a,
.clean_cd97,
.text_5d9f {
  width: 100%;
  margin: 1.5rem 0;
}

.hidden-d9ea {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.hidden-d9ea strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.focused_a1a4 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.focused_a1a4 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.carousel_3785 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.carousel_3785 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.over-9564 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.banner_medium_6966 {
  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;
}

.banner_medium_6966:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.banner_medium_6966.widget_purple_3514 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.banner_medium_6966 .preview-last-c874 {
  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;
}

.banner_medium_6966 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.static-a6d5 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.basic_4e95 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.basic_4e95 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.box-ad82 {
  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 === */
.gas-1b75 {
  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;
}

.accordion_south_a1d5 {
  background-color: var(--primary-color);
  color: white;
}

.accordion_south_a1d5:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.lower-3ddb {
  background-color: var(--text-secondary);
  color: white;
}

.lower-3ddb:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.out_80d7 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.out_80d7:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.border_slow_c0f7 {
  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;
}

.border_slow_c0f7:hover {
  background-color: var(--primary-dark);
}

.preview_glass_c802 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.last-4a36 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.shade-7b78 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.item-7ae2 {
  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 === */
.caption-4210 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.west_0560 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.west_0560 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.outer_4160 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.basic_c7f3 {
  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;
}

.slider_52f2 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.info_bottom_79f2 {
  list-style: none;
  counter-reset: rank-counter;
}

.info_bottom_79f2 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.info_bottom_79f2 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;
}

.full-f547 {
  list-style: none;
}

.full-f547 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.primary-fcc2 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.column_de41 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.column_de41 .chip-1a2d {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.column_de41 .shadow-new-474a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.texture_narrow_8475 {
  margin-top: 3rem;
}

.link-63e5 {
  width: 100%;
}

.glass-fa4d {
  background-color: #fef3c7;
}

.picture-cd7e {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.block_clean_459e {
  margin: 3rem 0;
}

.wood-2147 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.silver_e2b7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.silver_e2b7:hover {
  box-shadow: var(--shadow-lg);
}

.silver_e2b7.card_e657 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.header_c37f {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.under-1767 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.under-1767 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tag_under_37cd {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.silver_e2b7 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.glass_f139 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.gold-8a42 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.status_outer_4eae {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.yellow-c640 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.gallery_b35b {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.chip-21c1 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.search-039e {
  max-width: 900px;
  margin: 0 auto;
}

.wrapper-paper-b8a4 {
  margin: 2rem 0;
}

.stone_f124 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.stone_f124 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.stone_f124 summary::-webkit-details-marker {
  display: none;
}

.stone_f124 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.silver-30fb {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.stone_f124[open] .silver-30fb {
  transform: rotate(45deg);
}

.label_huge_baa9 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.label_huge_baa9 p:last-child {
  margin-bottom: 0;
}

.table_919d {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.border_63ab {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.large-e11f {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.large-e11f p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.large-e11f .gas-1b75 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.alert-light-60c6 {
  max-width: 900px;
  margin: 0 auto;
}

.column_b701 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-up-4e07 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.hero-up-4e07.fn-success-c316 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.frame-f5eb {
  font-size: 3rem;
  line-height: 1;
}

.status-liquid-b571 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.mask_8c0e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.description-simple-4f6f,
.search_9cbd {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.description-simple-4f6f h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.search_9cbd h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.advanced-611c,
.fast-d489 {
  margin: 1.5rem 0;
}

.advanced-611c li,
.fast-d489 li {
  margin-bottom: 1rem;
}

.motion_d9fe {
  margin: 3rem 0;
}

.outer_0bca {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.outer_0bca h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.outer_0bca ol {
  margin: 1rem 0;
}

.outer_0bca li {
  margin-bottom: 0.75rem;
}

.slider_slow_954b {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.sort-outer-60ca {
  margin: 2rem 0;
}

.panel-bronze-1cbb {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.focused_662e {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.progress_down_a696 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.accent-012d {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.tertiary-purple-fb12 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.heading_a68f {
  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;
}

.heading_a68f img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.aside_dynamic_ccb1 {
  flex: 1;
}

.aside_dynamic_ccb1 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.content-6c78 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.primary-8a1a p {
  margin-bottom: 1rem;
}

.up-4808 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.progress-94c5 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.silver_8487 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.silver_8487 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.pagination_static_a580 h3 {
  margin-bottom: 1.5rem;
}

.lower_ce91 {
  display: grid;
  gap: 2rem;
}

.filter_ee99 {
  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;
}

.filter_ee99 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.filter_ee99 h4 {
  margin: 0 0 0.25rem;
}

.filter_ee99 p {
  margin: 0;
  font-size: 0.9375rem;
}

.icon-fast-7bf7 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.basic-7edc {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.basic-7edc h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.basic-7edc ul {
  margin: 1.5rem 0;
}

.basic-7edc li {
  margin-bottom: 0.75rem;
}

.widget-6726 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.paragraph_c3be {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.wide-cb48 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.image_cool_b0e8 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.image_cool_b0e8 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.slider_c895 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.slider_c895 a {
  color: rgba(255, 255, 255, 0.8);
}

.nav-75e9 {
  list-style: none;
}

.nav-75e9 li {
  margin-bottom: 0.75rem;
}

.nav-75e9 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.nav-75e9 a:hover {
  color: white;
}

.basic-665d {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.tall-66e8 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.table_eb7f {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.old-6db7 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.table_large_60c2 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .accordion-under-6b7b {
    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;
  }

  .liquid-0b10 {
    font-size: 1.5rem !important;
  }

  .narrow-a78a {
    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 */
  .hovered_6b03,
  .link_steel_404f,
  .in-0ad6,
  .dropdown_medium_b7f0,
  .header_c37f,
  .silver_e2b7,
  .label_huge_baa9,
  .plasma_2364,
  .surface-white-a778,
  .west-b1b5 {
    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 */
  .hot-df8b {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .pattern-78c7 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .dynamic-0b48 {
    flex-shrink: 0;
  }

  .aside_dynamic_ccb1 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .column-bf74,
  .background_a23c {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .background_a23c {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .top_bacb {
    display: none;
  }

  /* Show mobile actions */
  .footer-complex-41c6 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .left_2395 {
    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;
  }

  .left_2395 svg {
    flex-shrink: 0;
  }

  .left_2395 .video_fast_bb67 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .left_2395 .tiny_2b55 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .hot-75b1 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .preview_b02c {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .left_2395:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .gallery-81ba {
    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;
  }

  .gallery-81ba.fn-active-c316 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .gallery-81ba li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .gallery-81ba li:last-child {
    border-bottom: none;
  }

  .gallery-81ba a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .photo-7fea {
    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;
  }

  .photo-7fea li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .photo-7fea li:last-child {
    border-bottom: none;
  }

  .photo-7fea a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .caption_0eb8 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .breadcrumb-selected-fcec {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .tall-a1e6,
  .pagination-edfc {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .tall-a1e6 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .pagination-edfc {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .photo-7fea.fn-active-c316 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .inner-e0b3 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .link-brown-5982 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .silver_997d {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .label-f5d5 {
    margin-top: 0;
  }

  /* Hero section */
  .label-f5d5 {
    padding: 2rem 0 1.5rem;
  }

  .narrow-a78a {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .surface-white-a778 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .search_9506 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .slider_outer_4a63 {
    max-width: 100%;
    border-radius: 8px;
  }

  .layout-white-401a {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .center_0b10 {
    padding: 1rem;
  }

  .new_e2b3 {
    font-size: 1.5rem;
  }

  .cool_021d {
    font-size: 0.75rem;
  }

  .plasma_2364 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .title-20c6 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .title-20c6 .gas-1b75 {
    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 */
  .hover-bottom-5922 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .iron-f3ca {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .outer-2cdf {
    margin-bottom: 1rem;
  }

  /* Author */
  .message-038b {
    flex-direction: column;
  }

  .heading_a68f {
    flex-direction: column;
  }

  /* Quotes */
  .header_c37f {
    flex-direction: column;
  }

  /* Pros/Cons */
  .mask_8c0e {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .accent-012d {
    flex-direction: column;
  }

  .accent-012d .gas-1b75 {
    width: 100%;
  }

  /* Version comparison */
  .over-9564 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .caption-4210 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .wide-cb48 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .table_eb7f {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .small_7618,
  .clean_cd97,
  .panel_bronze_3cf5,
  .link-63e5,
  .breadcrumb-538a,
  .text_5d9f {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .small_7618 table,
  .clean_cd97 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .box-ad82 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .accordion-under-6b7b {
    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;
  }

  .liquid-0b10 {
    font-size: 1.25rem !important;
  }

  .narrow-a78a {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .link-brown-5982 {
    position: fixed;
  }

  .silver_997d {
    padding: 0.625rem 0;
  }

  .picture_blue_e759 img {
    height: 26px;
  }

  .photo-7fea {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .gallery-81ba {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .left_2395 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .left_2395 svg {
    width: 18px;
    height: 18px;
  }

  .left_2395 .video_fast_bb67 {
    font-size: 0.7rem;
  }

  .left_2395 .tiny_2b55 {
    font-size: 0.65rem;
  }

  .tall-a1e6,
  .pagination-edfc {
    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, .accordion-under-6b7b, .upper-a596, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .search_9506 {
    padding: 1rem;
  }

  .layout-white-401a {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .center_0b10 {
    padding: 0.875rem;
  }

  .new_e2b3 {
    font-size: 1.25rem;
  }

  .title-20c6 .gas-1b75 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .narrow-a78a {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .gas-1b75 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .preview_glass_c802 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .iron-f3ca {
    padding: 1rem;
  }

  .outer-2cdf span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .hovered_6b03,
  .overlay_hard_eb95,
  .wrapper_8b04,
  .block-d5b2 {
    padding: 1rem;
  }
}

@media print {
  .link-brown-5982,
  .column-selected-98ee,
  .inner-e0b3,
  .gas-1b75,
  .paragraph_c3be {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .accordion-under-6b7b {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.gas_6326 {
  margin-bottom: 3rem;
  text-align: center;
}

.liquid-0b10 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.text_3804 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.detail_a305,
.light_fab5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.inner_ce2a {
  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;
}

.inner_ce2a:hover {
  transform: translateY(-5px);
}

.inner_ce2a strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.inner_ce2a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.complex-b856 {
  margin: 3rem 0;
}

.video_brown_feb6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.full-8983 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.full-8983:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.list-74d2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.card_cc4a {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.popup-0e58 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.tertiary_down_2758 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.surface-current-c216 {
  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;
}

.surface-current-c216:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.surface-current-c216.tertiary_237a {
  border-left: 4px solid var(--primary-color);
}

.accent-paper-1ed2 {
  flex-shrink: 0;
}

.accent-paper-1ed2 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.cold-fe66 {
  flex: 1;
}

.cold-fe66 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.text-a477 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.gold-1fd8,
.message_1215,
.gradient-narrow-f185 {
  margin-bottom: 1.5rem;
}

.gold-1fd8 h4,
.message_1215 h4,
.gradient-narrow-f185 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gold-1fd8 ul,
.message_1215 ul,
.gradient-narrow-f185 ul {
  list-style: none;
  padding: 0;
}

.gold-1fd8 li,
.message_1215 li,
.gradient-narrow-f185 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.gold-1fd8 li:before,
.message_1215 li:before,
.gradient-narrow-f185 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.blue-98be {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.blue-98be 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;
}

.blue-98be a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.dim_3f43 { margin: 2rem 0; }
.caption_hard_7d9e { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.caption_hard_7d9e h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.primary_dirty_b128 p { margin-bottom: 1rem; line-height: 1.7; }
.primary_dirty_b128 strong { color: var(--text-primary); }
.primary_dirty_b128 ul { list-style: none; padding-left: 0; }
.primary_dirty_b128 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.primary_dirty_b128 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.border_yellow_aaed { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.new-26b1 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.new-26b1:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.badge_clean_224b { font-size: 3rem; margin-bottom: 1rem; }
.new-26b1 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.new-26b1 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.next_d1c2 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.next_d1c2 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.active_d8a1 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.item-slow-2830 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.light-c1c0 { text-align: center; }
.popup-159f { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.tabs_61af { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.steel-2ee3 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.clean_58b0 { margin: 2rem 0; }
.heading-f2f4 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.heading-f2f4 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.heading-f2f4 p, .heading-f2f4 ul { line-height: 1.7; }
.heading-f2f4 ul { list-style: none; padding-left: 0; }
.heading-f2f4 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.heading-f2f4 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.rough_3c1b { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.aside_brown_8c53 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.panel-23e1 { text-align: center; }
.lite_ee99 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.pagination-selected-97c6 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.focused-28fe { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.description_over_4ce1 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.avatar_2695 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.avatar_2695:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.avatar_2695 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.avatar_2695 p, .avatar_2695 ul { line-height: 1.7; }
.avatar_2695 ul { list-style: none; padding-left: 0; }
.avatar_2695 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.avatar_2695 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 85d5 */
.ghost-box-x8 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.3;
}
