/* ============================================
   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 */
.prev_9d34 p,
.down_8cbb,
.main_mini_25a8,
.info_71e5,
.logo-1380,
.paragraph_easy_66c8,
.gradient-pressed-fe33,
.outer-d163 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.simple_f063 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.simple_f063 > *,
.card_2897,
.prev_9d34,
.left_7781 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .simple_f063 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .simple_f063 {
    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 === */
.wood_817a {
  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 */
.wood_817a.header_b054 {
  box-shadow: var(--shadow-md);
}

.highlight_3045 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.dropdown_a92e img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.lower_206a {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.image_b48c {
  display: none;
}

/* Hide mobile actions on desktop */
.tiny-cc29 {
  display: none;
}

.photo-hard-f639 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.photo-hard-f639 a:hover,
.photo-hard-f639 a.fn-active-e0f0 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.red_9e0d {
  margin-left: 1rem;
}

.focused_f401 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.center_7bd0,
.avatar-6ec5 {
  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;
}

.center_7bd0 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.center_7bd0: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;
}

.avatar-6ec5 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.avatar-6ec5: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;
}

.center_7bd0 svg,
.avatar-6ec5 svg {
  flex-shrink: 0;
}

.picture_ca47 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.outer-6731 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.outer-6731::before,
.outer-6731::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.outer-6731::before {
  top: -7px;
}

.outer-6731::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.cold-f866 {
  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 === */
.video_23fc {
  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);
}

.tag-hovered-0f01 {
  margin: 0 0 2rem;
  text-align: center;
}

.paragraph-1208 {
  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;
}

.paragraph-1208:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.main_443c {
  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);
}

.main_443c strong {
  color: var(--primary-color);
  font-weight: 700;
}

.widget-1e81 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.image_3437 {
  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;
}

.image_3437:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.detail-b96d {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.fixed-fe15 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.tooltip_e8cc {
  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);
}

.tooltip_e8cc .alert_3aa3 {
  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;
}

.tooltip_e8cc .alert_3aa3 svg {
  flex-shrink: 0;
}

.tooltip_e8cc .avatar-right-e198 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.tooltip_e8cc .avatar-right-e198: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);
}

.tooltip_e8cc .accent-77ca {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.tooltip_e8cc .accent-77ca: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) {
  .video_23fc {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .paragraph-1208 {
    max-width: 100%;
  }

  .widget-1e81 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .image_3437 {
    padding: 1rem;
  }

  .detail-b96d {
    font-size: 1.5rem;
  }

  .fixed-fe15 {
    font-size: 0.75rem;
  }

  .main_443c {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .tooltip_e8cc {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .tooltip_e8cc .alert_3aa3 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .widget-1e81 {
    grid-template-columns: 1fr;
  }
}

.secondary_plasma_e72c {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.notification_right_214d {
  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 === */
.search-center-fc6c {
  margin-bottom: 2.5rem;
}

.picture_hard_2eae {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.secondary_plasma_e72c {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.tooltip-complex-cc95 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.modal-fac3 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.notice-5f30 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fluid-ad9d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.table-adcc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.fresh_eed4 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.iron_0b7c {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.iron_0b7c svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.fluid-79e0 {
  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);
}

.background-hard-6efd {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.shadow_980e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.list_hot_8a58 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.east-6e18 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.fixed-d01a {
  display: grid;
  gap: 1rem;
}

.wide-a94b {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.black-1858 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.south-b620 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.red-852d {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.shade_dirty_ed8c {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.heading_7e27 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.heading_7e27 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.down_8cbb {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.filter-2c47 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.red-b6f5 {
  display: grid;
  gap: 2rem;
}

.hidden_west_a57c {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.modal-fac3 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.tooltip-complex-cc95 {
  flex: 1;
}

.fluid-ad9d {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.fluid-ad9d a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.link-dirty-fa48 {
  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;
}

.table-adcc {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.icon_wide_69b4 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.icon_wide_69b4 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.box-53a9 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.box-53a9 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.status-b1b0 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.status-b1b0 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.status-b1b0 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.status-b1b0 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.outline_glass_4877 {
  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 === */
.message_b4f1 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.section-under-fe9a {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.top_8c5b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.green_b76d h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.green_b76d ol {
  list-style: none;
  counter-reset: toc-counter;
}

.green_b76d ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.green_b76d 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;
}

.green_b76d ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.green_b76d ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.prev_9d34 {
  padding: 3rem 0 5rem;
}

.left_7781 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.left_7781.hard-ff5c {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.main_mini_25a8 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.background_yellow_3e73 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.over-76e9 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.over-76e9 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.message-a317 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.message-8c38 {
  text-align: center;
}

.summary_fbc7 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.east-2490 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.hero_1cae {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.paragraph_easy_66c8 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.info_71e5 {
  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;
}

.info_71e5 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.info_71e5:hover {
  box-shadow: var(--shadow-lg);
}

.info_71e5.over_bdd6 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.info_71e5 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.info_71e5 ul {
  margin: 1rem 0;
}

.info_71e5 li {
  margin-bottom: 0.75rem;
}

.shade_cool_996a {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.pressed-1538 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.pressed-1538 a {
  font-weight: 600;
}

/* === Data Tables === */
.alert-67e2 {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background-color: var(--bg-primary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.alert-67e2 table {
  width: 100%;
  min-width: 600px;
}

.alert-67e2 thead {
  background-color: var(--primary-color);
  color: white;
}

.alert-67e2 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.alert-67e2 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.alert-67e2 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.alert-67e2 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.dirty-4943 {
  list-style: none;
  margin: 1.5rem 0;
}

.dirty-4943 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.dirty-4943 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.input_0108::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-e0f0::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 === */
.smooth_a410 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.left_2bab {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.left_2bab img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.left_2bab strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.left_2bab span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.smooth_a410 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.gradient-pressed-fe33 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.gradient-pressed-fe33::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.pressed_cac4 {
  position: relative;
  margin-bottom: 3rem;
}

.card-d1fd {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.card-d1fd .pattern-3840 {
  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;
}

.shade_4298 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.shade_4298 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.shade_4298 ul {
  margin: 1rem 0;
}

.shade_4298 li {
  margin-bottom: 0.75rem;
}

.footer_hard_0d12 {
  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 === */
.background-down-cf7f {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.background-down-cf7f h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.accent_gas_7d33 {
  list-style: none;
  margin: 1.5rem 0;
}

.accent_gas_7d33 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.accent_gas_7d33 a {
  font-weight: 600;
}

.thumbnail-4132 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.outer-d163 {
  margin: 2.5rem 0;
}

.caption_fixed_c9e7 {
  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;
}

.caption_fixed_c9e7:hover {
  box-shadow: var(--shadow-lg);
}

.caption_fixed_c9e7.shadow_down_a65d {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.carousel_fluid_a71f {
  flex-shrink: 0;
}

.carousel_fluid_a71f 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);
}

.outline-fluid-2039 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.texture-0835,
.slider_orange_a92d,
.cold-739a {
  width: 100%;
  margin: 1.5rem 0;
}

.pink_c3fc {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.pink_c3fc strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.summary-dynamic-74f1 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.summary-dynamic-74f1 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.under-dc01 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.under-dc01 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.focused-148d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.inner-73e8 {
  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;
}

.inner-73e8:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.inner-73e8.first-d9ab {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.inner-73e8 .carousel_338c {
  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;
}

.inner-73e8 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.fluid_d992 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.feature_17cf {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.feature_17cf label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.content-prev-72d3 {
  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 === */
.alert_3aa3 {
  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;
}

.avatar-right-e198 {
  background-color: var(--primary-color);
  color: white;
}

.avatar-right-e198:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.accent-77ca {
  background-color: var(--text-secondary);
  color: white;
}

.accent-77ca:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.bronze-2464 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.bronze-2464:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.border_d8ae {
  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_d8ae:hover {
  background-color: var(--primary-dark);
}

.gradient_f189 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.paragraph-ceff {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.thumbnail_new_c146 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.message-fresh-5b47 {
  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 === */
.plasma-4eeb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.component_abba {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.component_abba h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.fixed-f4e7 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.stale_bcec {
  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;
}

.description_center_7d53 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.caption-fluid-afab {
  list-style: none;
  counter-reset: rank-counter;
}

.caption-fluid-afab li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.caption-fluid-afab 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;
}

.header_full_5c75 {
  list-style: none;
}

.header_full_5c75 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.chip-dbb1 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.detail_6f57 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.detail_6f57 .wide_6bfd {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.detail_6f57 .element_a074 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.component-pressed-29e3 {
  margin-top: 3rem;
}

.item_focused_7036 {
  width: 100%;
}

.logo-dfb5 {
  background-color: #fef3c7;
}

.message_4987 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.center-4f4e {
  margin: 3rem 0;
}

.secondary_f380 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.focus-d718 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.focus-d718:hover {
  box-shadow: var(--shadow-lg);
}

.focus-d718.slider-c838 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.fixed_e17e {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.action_65dc strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.action_65dc span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.secondary_thick_5f69 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.focus-d718 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.menu-cd99 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.lite_b07c {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.logo-glass-ad74 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.upper_b50b {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.menu_e6db {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.hover-advanced-a44c {
  margin-top: 1rem;
}

/* === FAQ Section === */
.text-center-843a {
  max-width: 900px;
  margin: 0 auto;
}

.caption_paper_b218 {
  margin: 2rem 0;
}

.stone-1fd3 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.stone-1fd3 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.stone-1fd3 summary::-webkit-details-marker {
  display: none;
}

.stone-1fd3 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.pink_c605 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.stone-1fd3[open] .pink_c605 {
  transform: rotate(45deg);
}

.accordion-b153 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.accordion-b153 p:last-child {
  margin-bottom: 0;
}

.banner-d15c {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.icon_cd89 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.small-97c5 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.small-97c5 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.small-97c5 .alert_3aa3 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.title_aa8c {
  max-width: 900px;
  margin: 0 auto;
}

.highlight-27af {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero_right_9c31 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.hero_right_9c31.fn-success-e0f0 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.progress-last-585a {
  font-size: 3rem;
  line-height: 1;
}

.video_hard_6686 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.heading-south-6c96 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.down_2c19,
.label-36cb {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.down_2c19 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.label-36cb h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.label_warm_7ab8,
.border-af7b {
  margin: 1.5rem 0;
}

.label_warm_7ab8 li,
.border-af7b li {
  margin-bottom: 1rem;
}

.copper-ebee {
  margin: 3rem 0;
}

.row_new_e3d5 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.row_new_e3d5 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.row_new_e3d5 ol {
  margin: 1rem 0;
}

.row_new_e3d5 li {
  margin-bottom: 0.75rem;
}

.tabs_a4ea {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.hero-outer-aef3 {
  margin: 2rem 0;
}

.media-c9ad {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.highlight-out-7ead {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.grid_4b5e {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.advanced-311d {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.gallery_480b {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.cool-c607 {
  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;
}

.cool-c607 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.notice-5f30 {
  flex: 1;
}

.notice-5f30 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.list_5a2f {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.fluid_71e9 p {
  margin-bottom: 1rem;
}

.narrow-e921 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.short_2dea {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.panel-purple-9d73 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.panel-purple-9d73 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.active-active-bf33 h3 {
  margin-bottom: 1.5rem;
}

.grid_upper_1019 {
  display: grid;
  gap: 2rem;
}

.wrapper_e232 {
  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;
}

.wrapper_e232 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.wrapper_e232 h4 {
  margin: 0 0 0.25rem;
}

.wrapper_e232 p {
  margin: 0;
  font-size: 0.9375rem;
}

.progress-0d12 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.paragraph_42e0 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.paragraph_42e0 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.paragraph_42e0 ul {
  margin: 1.5rem 0;
}

.paragraph_42e0 li {
  margin-bottom: 0.75rem;
}

.container-complex-aeaa {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.silver_8976 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.section-b269 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.carousel-8af1 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.carousel-8af1 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.secondary-wide-6c69 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.secondary-wide-6c69 a {
  color: rgba(255, 255, 255, 0.8);
}

.link_cb60 {
  list-style: none;
}

.link_cb60 li {
  margin-bottom: 0.75rem;
}

.link_cb60 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.link_cb60 a:hover {
  color: white;
}

.card_basic_3639 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.content-953c {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.table-d710 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.clean-582b {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.overlay-fast-d8f9 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .simple_f063 {
    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;
  }

  .east-fa81 {
    font-size: 1.5rem !important;
  }

  .picture_hard_2eae {
    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 */
  .info_71e5,
  .logo-1380,
  .shade_4298,
  .outline-fluid-2039,
  .fixed_e17e,
  .focus-d718,
  .accordion-b153,
  .main_443c,
  .down_8cbb,
  .main_mini_25a8 {
    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 */
  .secondary_plasma_e72c {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .tooltip-complex-cc95 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .modal-fac3 {
    flex-shrink: 0;
  }

  .notice-5f30 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .fluid-ad9d,
  .table-adcc {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .table-adcc {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .lower_206a {
    display: none;
  }

  /* Show mobile actions */
  .tiny-cc29 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .warm_92ce {
    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;
  }

  .warm_92ce svg {
    flex-shrink: 0;
  }

  .warm_92ce .small-e7ab {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .warm_92ce .notice-next-2a77 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .breadcrumb-iron-2490 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .text_2586 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .warm_92ce:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .image_b48c {
    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;
  }

  .image_b48c.fn-active-e0f0 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .image_b48c li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .image_b48c li:last-child {
    border-bottom: none;
  }

  .image_b48c a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .photo-hard-f639 {
    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-hard-f639 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .photo-hard-f639 li:last-child {
    border-bottom: none;
  }

  .photo-hard-f639 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .red_9e0d {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .focused_f401 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .center_7bd0,
  .avatar-6ec5 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .center_7bd0 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .avatar-6ec5 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .photo-hard-f639.fn-active-e0f0 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .picture_ca47 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .wood_817a {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .highlight_3045 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .cold-f866 {
    margin-top: 0;
  }

  /* Hero section */
  .cold-f866 {
    padding: 2rem 0 1.5rem;
  }

  .picture_hard_2eae {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .down_8cbb {
    font-size: 1rem;
  }

  /* Hero brand image */
  .video_23fc {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .paragraph-1208 {
    max-width: 100%;
    border-radius: 8px;
  }

  .widget-1e81 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .image_3437 {
    padding: 1rem;
  }

  .detail-b96d {
    font-size: 1.5rem;
  }

  .fixed-fe15 {
    font-size: 0.75rem;
  }

  .main_443c {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .tooltip_e8cc {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .tooltip_e8cc .alert_3aa3 {
    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 */
  .top_8c5b {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .caption_fixed_c9e7 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .carousel_fluid_a71f {
    margin-bottom: 1rem;
  }

  /* Author */
  .hidden_west_a57c {
    flex-direction: column;
  }

  .cool-c607 {
    flex-direction: column;
  }

  /* Quotes */
  .fixed_e17e {
    flex-direction: column;
  }

  /* Pros/Cons */
  .heading-south-6c96 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .advanced-311d {
    flex-direction: column;
  }

  .advanced-311d .alert_3aa3 {
    width: 100%;
  }

  /* Version comparison */
  .focused-148d {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .plasma-4eeb {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .section-b269 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .table-d710 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .alert-67e2,
  .slider_orange_a92d,
  .clean_5554,
  .item_focused_7036,
  .texture-0835,
  .cold-739a {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .alert-67e2 table,
  .slider_orange_a92d table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .content-prev-72d3 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .simple_f063 {
    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;
  }

  .east-fa81 {
    font-size: 1.25rem !important;
  }

  .picture_hard_2eae {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .wood_817a {
    position: fixed;
  }

  .highlight_3045 {
    padding: 0.625rem 0;
  }

  .dropdown_a92e img {
    height: 26px;
  }

  .photo-hard-f639 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .image_b48c {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .warm_92ce {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .warm_92ce svg {
    width: 18px;
    height: 18px;
  }

  .warm_92ce .small-e7ab {
    font-size: 0.7rem;
  }

  .warm_92ce .notice-next-2a77 {
    font-size: 0.65rem;
  }

  .center_7bd0,
  .avatar-6ec5 {
    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, .simple_f063, .card_2897, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .video_23fc {
    padding: 1rem;
  }

  .widget-1e81 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .image_3437 {
    padding: 0.875rem;
  }

  .detail-b96d {
    font-size: 1.25rem;
  }

  .tooltip_e8cc .alert_3aa3 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .picture_hard_2eae {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .alert_3aa3 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .gradient_f189 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .caption_fixed_c9e7 {
    padding: 1rem;
  }

  .carousel_fluid_a71f span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .info_71e5,
  .focus-wood-261f,
  .up-bb8b,
  .fast_928b {
    padding: 1rem;
  }
}

@media print {
  .wood_817a,
  .message_b4f1,
  .picture_ca47,
  .alert_3aa3,
  .silver_8976 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .simple_f063 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.next-4940 {
  margin-bottom: 3rem;
  text-align: center;
}

.east-fa81 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.south_3f00 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.fresh_965b,
.east-c567 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.soft-9809 {
  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;
}

.soft-9809:hover {
  transform: translateY(-5px);
}

.soft-9809 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.soft-9809 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.feature-thick-9638 {
  margin: 3rem 0;
}

.pagination-497e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.block-first-ef10 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.block-first-ef10:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.box_top_c48d {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.brown-10c9 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.heading-last-822a {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.link_plasma_b75f {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.wrapper_7540 {
  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;
}

.wrapper_7540:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.wrapper_7540.column_5eed {
  border-left: 4px solid var(--primary-color);
}

.icon-f363 {
  flex-shrink: 0;
}

.icon-f363 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.tag_f069 {
  flex: 1;
}

.tag_f069 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.active-gas-c6dc {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.orange-67c6,
.pagination_medium_1bcc,
.red-7e1a {
  margin-bottom: 1.5rem;
}

.orange-67c6 h4,
.pagination_medium_1bcc h4,
.red-7e1a h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.orange-67c6 ul,
.pagination_medium_1bcc ul,
.red-7e1a ul {
  list-style: none;
  padding: 0;
}

.orange-67c6 li,
.pagination_medium_1bcc li,
.red-7e1a li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.orange-67c6 li:before,
.pagination_medium_1bcc li:before,
.red-7e1a li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.popup_first_736e {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.popup_first_736e 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;
}

.popup_first_736e a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.wood_c767 { margin: 2rem 0; }
.wood_16df { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.wood_16df h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.caption_9ffa p { margin-bottom: 1rem; line-height: 1.7; }
.caption_9ffa strong { color: var(--text-primary); }
.caption_9ffa ul { list-style: none; padding-left: 0; }
.caption_9ffa ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.caption_9ffa ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.accent_large_91ec { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.frame_bright_3429 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.frame_bright_3429:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.popup-dim-775c { font-size: 3rem; margin-bottom: 1rem; }
.frame_bright_3429 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.frame_bright_3429 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.last_ef85 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.last_ef85 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.content_f189 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.breadcrumb_iron_5cc4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.frame-ddbc { text-align: center; }
.dropdown-inner-0eef { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.wrapper-yellow-3238 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.blue-04e8 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.item-thick-5233 { margin: 2rem 0; }
.hard-4e50 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.hard-4e50 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.hard-4e50 p, .hard-4e50 ul { line-height: 1.7; }
.hard-4e50 ul { list-style: none; padding-left: 0; }
.hard-4e50 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.hard-4e50 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.picture_0cdc { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.search_old_a1a5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.content_dim_3a44 { text-align: center; }
.top_3176 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.pagination_a7b0 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.pattern-215d { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.hero_new_9cbe { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.nav-4770 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.nav-4770:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.nav-4770 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.nav-4770 p, .nav-4770 ul { line-height: 1.7; }
.nav-4770 ul { list-style: none; padding-left: 0; }
.nav-4770 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.nav-4770 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: b483 */
.phantom-card-r8 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.1;
}
