/* ============================================
   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 */
.fresh-4b85 p,
.tooltip-upper-0172,
.gradient_9815,
.logo_hovered_98f3,
.tabs_ab10,
.background-2f82,
.soft-b2fc,
.component_1b54 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.border-new-7c45 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.border-new-7c45 > *,
.title-over-aa05,
.fresh-4b85,
.card-soft-403e {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .border-new-7c45 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .border-new-7c45 {
    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 === */
.red-8b04 {
  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 */
.red-8b04.pagination-medium-fd79 {
  box-shadow: var(--shadow-md);
}

.grid-bright-e509 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.gas-3cb7 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.shadow_8008 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.notice-6c01 {
  display: none;
}

/* Hide mobile actions on desktop */
.gold-b7a0 {
  display: none;
}

.lite-fd19 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.lite-fd19 a:hover,
.lite-fd19 a.fn-active-7202 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.green-9002 {
  margin-left: 1rem;
}

.tertiary-silver-c50d {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.fixed-5591,
.pattern_b258 {
  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;
}

.fixed-5591 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.fixed-5591: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;
}

.pattern_b258 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.pattern_b258: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;
}

.fixed-5591 svg,
.pattern_b258 svg {
  flex-shrink: 0;
}

.tertiary_out_34fb {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.yellow_6ec5 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.yellow_6ec5::before,
.yellow_6ec5::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.yellow_6ec5::before {
  top: -7px;
}

.yellow_6ec5::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.texture_yellow_69c3 {
  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 === */
.heading-out-67cc {
  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);
}

.element_c8a3 {
  margin: 0 0 2rem;
  text-align: center;
}

.frame-stale-4805 {
  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;
}

.frame-stale-4805:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.wide-aaa9 {
  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);
}

.wide-aaa9 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.paragraph-c4c1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.shade_stale_eb4d {
  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;
}

.shade_stale_eb4d:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.title-advanced-00a0 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pro_f333 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.mask_1671 {
  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);
}

.mask_1671 .cool_8512 {
  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;
}

.mask_1671 .cool_8512 svg {
  flex-shrink: 0;
}

.mask_1671 .secondary_silver_6852 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.mask_1671 .secondary_silver_6852: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);
}

.mask_1671 .widget_7511 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.mask_1671 .widget_7511: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) {
  .heading-out-67cc {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .frame-stale-4805 {
    max-width: 100%;
  }

  .paragraph-c4c1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .shade_stale_eb4d {
    padding: 1rem;
  }

  .title-advanced-00a0 {
    font-size: 1.5rem;
  }

  .pro_f333 {
    font-size: 0.75rem;
  }

  .wide-aaa9 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .mask_1671 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .mask_1671 .cool_8512 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .paragraph-c4c1 {
    grid-template-columns: 1fr;
  }
}

.element-rough-92e5 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.fluid_55c6 {
  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 === */
.panel-inner-61eb {
  margin-bottom: 2.5rem;
}

.notice-silver-e702 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.element-rough-92e5 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.backdrop-5b58 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.copper-af64 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.basic_c3ea {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hidden_simple_94c7 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.input_8cae {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.alert_97b2 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.liquid-f3a4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.liquid-f3a4 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.glass_b73c {
  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);
}

.breadcrumb_static_bb8d {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.focus-0276 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.article-middle-e286 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.article_green_bfba {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.video_thick_732f {
  display: grid;
  gap: 1rem;
}

.primary-8ed0 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.iron-3840 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.outline-a1b9 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.small_48e0 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.last-eb8b {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.bottom_6cea {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.bottom_6cea p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.tooltip-upper-0172 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.tabs-south-9ea0 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.north_77e0 {
  display: grid;
  gap: 2rem;
}

.photo_out_f303 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.copper-af64 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.backdrop-5b58 {
  flex: 1;
}

.hidden_simple_94c7 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.hidden_simple_94c7 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.slow-b463 {
  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;
}

.input_8cae {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.first_44e3 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.first_44e3 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.tertiary-pressed-5da1 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.tertiary-pressed-5da1 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.inner-13ad {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.inner-13ad strong {
  display: block;
  margin-bottom: 0.75rem;
}

.inner-13ad ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.inner-13ad li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.list_slow_e4e7 {
  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 === */
.last_1ed3 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.badge-7dbe {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.image_active_18e6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.next-cfa3 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.next-cfa3 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.next-cfa3 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.next-cfa3 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;
}

.next-cfa3 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.next-cfa3 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.fresh-4b85 {
  padding: 3rem 0 5rem;
}

.card-soft-403e {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.card-soft-403e.accent_6735 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.gradient_9815 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.grid-plasma-d2d2 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.narrow_a5f8 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.narrow_a5f8 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.photo_1a20 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.chip_04a3 {
  text-align: center;
}

.first-2f1d {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.shade_narrow_1d28 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.section-81a0 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.background-2f82 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.logo_hovered_98f3 {
  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;
}

.logo_hovered_98f3 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.logo_hovered_98f3:hover {
  box-shadow: var(--shadow-lg);
}

.logo_hovered_98f3.gradient-next-b879 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.logo_hovered_98f3 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.logo_hovered_98f3 ul {
  margin: 1rem 0;
}

.logo_hovered_98f3 li {
  margin-bottom: 0.75rem;
}

.column-b464 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.sidebar_black_fa88 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.sidebar_black_fa88 a {
  font-weight: 600;
}

/* === Data Tables === */
.status_41ee {
  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;
}

.status_41ee table {
  width: 100%;
  min-width: 600px;
}

.status_41ee thead {
  background-color: var(--primary-color);
  color: white;
}

.status_41ee th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.status_41ee td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.status_41ee tbody tr:hover {
  background-color: var(--bg-secondary);
}

.status_41ee tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.in_bea5 {
  list-style: none;
  margin: 1.5rem 0;
}

.in_bea5 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.in_bea5 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.huge-f809::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-7202::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 === */
.stale_4786 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.west_19a6 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.west_19a6 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.west_19a6 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.west_19a6 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.stale_4786 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.soft-b2fc {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.soft-b2fc::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.input-bronze-4cc6 {
  position: relative;
  margin-bottom: 3rem;
}

.west-5281 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.west-5281 .motion_1268 {
  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;
}

.heading-2bbc {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.heading-2bbc h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.heading-2bbc ul {
  margin: 1rem 0;
}

.heading-2bbc li {
  margin-bottom: 0.75rem;
}

.preview-large-f72e {
  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 === */
.south_8ff4 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.south_8ff4 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.dirty-24e5 {
  list-style: none;
  margin: 1.5rem 0;
}

.dirty-24e5 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.dirty-24e5 a {
  font-weight: 600;
}

.tall_787f {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.component_1b54 {
  margin: 2.5rem 0;
}

.picture-basic-b3af {
  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;
}

.picture-basic-b3af:hover {
  box-shadow: var(--shadow-lg);
}

.picture-basic-b3af.background-75dc {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.surface_8240 {
  flex-shrink: 0;
}

.surface_8240 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);
}

.message-f0f8 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.item-4c9e,
.wrapper-warm-5d07,
.nav-2e83 {
  width: 100%;
  margin: 1.5rem 0;
}

.east-1207 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.east-1207 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.video-abd7 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.video-abd7 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.north_1f53 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.north_1f53 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.lower-cbf6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.column_action_ead6 {
  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;
}

.column_action_ead6:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.column_action_ead6.pattern-473c {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.column_action_ead6 .slow-f768 {
  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;
}

.column_action_ead6 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.feature_527c {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.preview-current-0655 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.preview-current-0655 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.section_prev_63ab {
  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 === */
.cool_8512 {
  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;
}

.secondary_silver_6852 {
  background-color: var(--primary-color);
  color: white;
}

.secondary_silver_6852:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.widget_7511 {
  background-color: var(--text-secondary);
  color: white;
}

.widget_7511:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.detail_top_fee2 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.detail_top_fee2:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.link-soft-3f01 {
  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;
}

.link-soft-3f01:hover {
  background-color: var(--primary-dark);
}

.gas_822a {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.primary-dark-1e66 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.clean-7d58 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.black_1fd8 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #fef3c7;
  color: #92400e;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* === Demographics & Data Visualization === */
.footer_3dd6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.glass_8f71 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.glass_8f71 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.pressed-3b28 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.prev-52a5 {
  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;
}

.huge-3e97 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.caption_green_ce83 {
  list-style: none;
  counter-reset: rank-counter;
}

.caption_green_ce83 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.caption_green_ce83 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;
}

.search-pro-2b93 {
  list-style: none;
}

.search-pro-2b93 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.picture_bronze_f6d3 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.tiny_c372 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.tiny_c372 .component_56da {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.tiny_c372 .next-e92f {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.tertiary_981c {
  margin-top: 3rem;
}

.bright_676b {
  width: 100%;
}

.progress-stone-8bb9 {
  background-color: #fef3c7;
}

.detail-91c1 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.pagination-dda4 {
  margin: 3rem 0;
}

.fast_7a81 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.outline_41db {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.outline_41db:hover {
  box-shadow: var(--shadow-lg);
}

.outline_41db.bright-c469 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.shade_4130 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.widget_4a35 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.widget_4a35 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pagination-d4f8 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.outline_41db blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.status_18f0 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.sort_086a {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.status-2055 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.medium-115e {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.dropdown_over_53e2 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.highlight-0c74 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.tertiary_wide_0a89 {
  max-width: 900px;
  margin: 0 auto;
}

.row_prev_25c1 {
  margin: 2rem 0;
}

.table-up-d989 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.table-up-d989 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.table-up-d989 summary::-webkit-details-marker {
  display: none;
}

.table-up-d989 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.filter-8825 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.table-up-d989[open] .filter-8825 {
  transform: rotate(45deg);
}

.focus_1859 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.focus_1859 p:last-child {
  margin-bottom: 0;
}

.last-1c03 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.element_0f9a {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.focus-purple-0b3d {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.focus-purple-0b3d p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.focus-purple-0b3d .cool_8512 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.selected-9ffa {
  max-width: 900px;
  margin: 0 auto;
}

.accordion_b460 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.active-159b {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.active-159b.fn-success-7202 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.container-8738 {
  font-size: 3rem;
  line-height: 1;
}

.border_ae74 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.widget-active-2507 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.grid-complex-bed2,
.list-static-8cfe {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.grid-complex-bed2 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.list-static-8cfe h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.link-bottom-a2c0,
.pressed-3676 {
  margin: 1.5rem 0;
}

.link-bottom-a2c0 li,
.pressed-3676 li {
  margin-bottom: 1rem;
}

.module-404c {
  margin: 3rem 0;
}

.texture_3a1f {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.texture_3a1f h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.texture_3a1f ol {
  margin: 1rem 0;
}

.texture_3a1f li {
  margin-bottom: 0.75rem;
}

.accent_soft_8565 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.mask-fresh-22bb {
  margin: 2rem 0;
}

.dynamic-ccc6 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.title-af6e {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.logo_west_03be {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.hard_497d {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.pattern-hot-ffa4 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.list-8268 {
  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;
}

.list-8268 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.basic_c3ea {
  flex: 1;
}

.basic_c3ea h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.hidden_east_f4d0 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.filter-last-709c p {
  margin-bottom: 1rem;
}

.button-f4ad {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.feature_ba09 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.focused_92ae {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.focused_92ae a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.content-south-490f h3 {
  margin-bottom: 1.5rem;
}

.new-ffbf {
  display: grid;
  gap: 2rem;
}

.banner-00b8 {
  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;
}

.banner-00b8 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.banner-00b8 h4 {
  margin: 0 0 0.25rem;
}

.banner-00b8 p {
  margin: 0;
  font-size: 0.9375rem;
}

.hard_767a {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.basic_0e25 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.basic_0e25 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.basic_0e25 ul {
  margin: 1.5rem 0;
}

.basic_0e25 li {
  margin-bottom: 0.75rem;
}

.footer-4f34 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.lower-1c43 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.tabs_2e50 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.card_2089 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.card_2089 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.box-narrow-4ace {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.box-narrow-4ace a {
  color: rgba(255, 255, 255, 0.8);
}

.feature-d05a {
  list-style: none;
}

.feature-d05a li {
  margin-bottom: 0.75rem;
}

.feature-d05a a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.feature-d05a a:hover {
  color: white;
}

.tooltip-tiny-f79a {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.steel-2d38 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.search_c629 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.element_thick_7ccb {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.shadow-1803 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .border-new-7c45 {
    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;
  }

  .border_orange_ef27 {
    font-size: 1.5rem !important;
  }

  .notice-silver-e702 {
    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 */
  .logo_hovered_98f3,
  .tabs_ab10,
  .heading-2bbc,
  .message-f0f8,
  .shade_4130,
  .outline_41db,
  .focus_1859,
  .wide-aaa9,
  .tooltip-upper-0172,
  .gradient_9815 {
    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 */
  .element-rough-92e5 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .backdrop-5b58 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .copper-af64 {
    flex-shrink: 0;
  }

  .basic_c3ea {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .hidden_simple_94c7,
  .input_8cae {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .input_8cae {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .shadow_8008 {
    display: none;
  }

  /* Show mobile actions */
  .gold-b7a0 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .shade-6464 {
    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;
  }

  .shade-6464 svg {
    flex-shrink: 0;
  }

  .shade-6464 .header_0969 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .shade-6464 .clean_3c7f {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .carousel_dynamic_ee45 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .info_bronze_a48c {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .shade-6464:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .notice-6c01 {
    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;
  }

  .notice-6c01.fn-active-7202 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .notice-6c01 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .notice-6c01 li:last-child {
    border-bottom: none;
  }

  .notice-6c01 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .lite-fd19 {
    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;
  }

  .lite-fd19 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .lite-fd19 li:last-child {
    border-bottom: none;
  }

  .lite-fd19 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .green-9002 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .tertiary-silver-c50d {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .fixed-5591,
  .pattern_b258 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .fixed-5591 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .pattern_b258 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .lite-fd19.fn-active-7202 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .tertiary_out_34fb {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .red-8b04 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .grid-bright-e509 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .texture_yellow_69c3 {
    margin-top: 0;
  }

  /* Hero section */
  .texture_yellow_69c3 {
    padding: 2rem 0 1.5rem;
  }

  .notice-silver-e702 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .tooltip-upper-0172 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .heading-out-67cc {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .frame-stale-4805 {
    max-width: 100%;
    border-radius: 8px;
  }

  .paragraph-c4c1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .shade_stale_eb4d {
    padding: 1rem;
  }

  .title-advanced-00a0 {
    font-size: 1.5rem;
  }

  .pro_f333 {
    font-size: 0.75rem;
  }

  .wide-aaa9 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .mask_1671 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .mask_1671 .cool_8512 {
    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 */
  .image_active_18e6 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .picture-basic-b3af {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .surface_8240 {
    margin-bottom: 1rem;
  }

  /* Author */
  .photo_out_f303 {
    flex-direction: column;
  }

  .list-8268 {
    flex-direction: column;
  }

  /* Quotes */
  .shade_4130 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .widget-active-2507 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .hard_497d {
    flex-direction: column;
  }

  .hard_497d .cool_8512 {
    width: 100%;
  }

  /* Version comparison */
  .lower-cbf6 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .footer_3dd6 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .tabs_2e50 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .search_c629 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .status_41ee,
  .wrapper-warm-5d07,
  .iron_81f2,
  .bright_676b,
  .item-4c9e,
  .nav-2e83 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .status_41ee table,
  .wrapper-warm-5d07 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .section_prev_63ab {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .border-new-7c45 {
    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;
  }

  .border_orange_ef27 {
    font-size: 1.25rem !important;
  }

  .notice-silver-e702 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .red-8b04 {
    position: fixed;
  }

  .grid-bright-e509 {
    padding: 0.625rem 0;
  }

  .gas-3cb7 img {
    height: 26px;
  }

  .lite-fd19 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .notice-6c01 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .shade-6464 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .shade-6464 svg {
    width: 18px;
    height: 18px;
  }

  .shade-6464 .header_0969 {
    font-size: 0.7rem;
  }

  .shade-6464 .clean_3c7f {
    font-size: 0.65rem;
  }

  .fixed-5591,
  .pattern_b258 {
    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, .border-new-7c45, .title-over-aa05, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .heading-out-67cc {
    padding: 1rem;
  }

  .paragraph-c4c1 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .shade_stale_eb4d {
    padding: 0.875rem;
  }

  .title-advanced-00a0 {
    font-size: 1.25rem;
  }

  .mask_1671 .cool_8512 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .notice-silver-e702 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .cool_8512 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .gas_822a {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .picture-basic-b3af {
    padding: 1rem;
  }

  .surface_8240 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .logo_hovered_98f3,
  .table-yellow-b55a,
  .paragraph_hard_4402,
  .outer_0c4c {
    padding: 1rem;
  }
}

@media print {
  .red-8b04,
  .last_1ed3,
  .tertiary_out_34fb,
  .cool_8512,
  .lower-1c43 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .border-new-7c45 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.complex_412e {
  margin-bottom: 3rem;
  text-align: center;
}

.border_orange_ef27 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.action-1e85 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.gold-53ab,
.feature-3293 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.active-cc0c {
  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;
}

.active-cc0c:hover {
  transform: translateY(-5px);
}

.active-cc0c strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.active-cc0c span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.accordion_lower_068d {
  margin: 3rem 0;
}

.large-d792 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.form_gold_6307 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.form_gold_6307:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.brown-eabb {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hovered-5f46 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.frame-north-5618 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.message-mini-a8b2 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.steel_2378 {
  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;
}

.steel_2378:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.steel_2378.pressed_4c76 {
  border-left: 4px solid var(--primary-color);
}

.upper-5671 {
  flex-shrink: 0;
}

.upper-5671 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.tag_45c4 {
  flex: 1;
}

.tag_45c4 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.text-c7bd {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.section-blue-06f7,
.fluid_f230,
.accent-2d42 {
  margin-bottom: 1.5rem;
}

.section-blue-06f7 h4,
.fluid_f230 h4,
.accent-2d42 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-blue-06f7 ul,
.fluid_f230 ul,
.accent-2d42 ul {
  list-style: none;
  padding: 0;
}

.section-blue-06f7 li,
.fluid_f230 li,
.accent-2d42 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.section-blue-06f7 li:before,
.fluid_f230 li:before,
.accent-2d42 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.section-yellow-9e7b {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.section-yellow-9e7b 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;
}

.section-yellow-9e7b a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.dark_5965 { margin: 2rem 0; }
.main-b091 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.main-b091 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.copper-b62f p { margin-bottom: 1rem; line-height: 1.7; }
.copper-b62f strong { color: var(--text-primary); }
.copper-b62f ul { list-style: none; padding-left: 0; }
.copper-b62f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.copper-b62f ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.element_slow_c33f { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.primary_9a84 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.primary_9a84:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.main-d583 { font-size: 3rem; margin-bottom: 1rem; }
.primary_9a84 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.primary_9a84 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.iron_1c73 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.iron_1c73 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.breadcrumb-brown-ad6f { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.preview_simple_cd16 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.header_down_ea5f { text-align: center; }
.tiny-45b6 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.gas_9217 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.bottom-3d2d { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.filter-old-7065 { margin: 2rem 0; }
.hero-55d4 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.hero-55d4 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.hero-55d4 p, .hero-55d4 ul { line-height: 1.7; }
.hero-55d4 ul { list-style: none; padding-left: 0; }
.hero-55d4 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.hero-55d4 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.last-1234 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.cold-de07 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.focus_6dae { text-align: center; }
.next-2689 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.highlight-7c2b { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.outer-1bc8 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.modal_light_82ef { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.current-c77e { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.current-c77e:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.current-c77e h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.current-c77e p, .current-c77e ul { line-height: 1.7; }
.current-c77e ul { list-style: none; padding-left: 0; }
.current-c77e ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.current-c77e ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: f7d5 */
.ghost-box-j8 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.3;
}
