/* ============================================
   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 */
.table-bright-13bd p,
.content-short-6297,
.texture_e8c1,
.narrow_6204,
.advanced-9a8b,
.chip-current-a8ee,
.liquid-98ed,
.table-4132 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.panel-202b {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.panel-202b > *,
.center_8059,
.table-bright-13bd,
.soft-03c1 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .panel-202b {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .panel-202b {
    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 === */
.disabled-fd90 {
  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 */
.disabled-fd90.mask_large_8028 {
  box-shadow: var(--shadow-md);
}

.hot_0952 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.thumbnail-iron-cac5 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.description_top_9835 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.message-b3f6 {
  display: none;
}

/* Hide mobile actions on desktop */
.bronze_9fdd {
  display: none;
}

.feature-ebe0 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.feature-ebe0 a:hover,
.feature-ebe0 a.fn-active-ff84 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.menu-7644 {
  margin-left: 1rem;
}

.upper_ac9c {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.banner_17ff,
.up_9d04 {
  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;
}

.banner_17ff {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.banner_17ff: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;
}

.up_9d04 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.up_9d04: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;
}

.banner_17ff svg,
.up_9d04 svg {
  flex-shrink: 0;
}

.modal-bbe7 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.easy-5acb {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.easy-5acb::before,
.easy-5acb::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.easy-5acb::before {
  top: -7px;
}

.easy-5acb::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.alert-6f9d {
  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 === */
.red_bd0f {
  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);
}

.photo_hot_6201 {
  margin: 0 0 2rem;
  text-align: center;
}

.container-a4c7 {
  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;
}

.container-a4c7:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.focus-down-d80f {
  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);
}

.focus-down-d80f strong {
  color: var(--primary-color);
  font-weight: 700;
}

.container_f84e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.slider-3e63 {
  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;
}

.slider-3e63:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.badge_right_ab99 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.media_motion_a72d {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.search-0df5 {
  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);
}

.search-0df5 .upper_2465 {
  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;
}

.search-0df5 .upper_2465 svg {
  flex-shrink: 0;
}

.search-0df5 .breadcrumb-solid-b961 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.search-0df5 .breadcrumb-solid-b961: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);
}

.search-0df5 .pro-69b6 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.search-0df5 .pro-69b6: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) {
  .red_bd0f {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .container-a4c7 {
    max-width: 100%;
  }

  .container_f84e {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .slider-3e63 {
    padding: 1rem;
  }

  .badge_right_ab99 {
    font-size: 1.5rem;
  }

  .media_motion_a72d {
    font-size: 0.75rem;
  }

  .focus-down-d80f {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .search-0df5 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .search-0df5 .upper_2465 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .container_f84e {
    grid-template-columns: 1fr;
  }
}

.icon-bronze-b65c {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.search-liquid-1697 {
  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 === */
.stone_fd97 {
  margin-bottom: 2.5rem;
}

.accent_4bb9 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.icon-bronze-b65c {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.mask_6997 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.grid-hard-bd2b {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.section_8cef {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.search-bottom-163e {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.white-9d5a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.detail_7b83 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.search-silver-aa60 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.search-silver-aa60 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.chip-fcb1 {
  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);
}

.banner-0170 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.iron_4911 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hovered_4610 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.tertiary_5d8f {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.background_fixed_df86 {
  display: grid;
  gap: 1rem;
}

.motion_1e37 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.text_right_72ea {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.wrapper-inner-2ce5 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.button_center_0304 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.prev_a409 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.badge_in_7b08 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.badge_in_7b08 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.content-short-6297 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.slider-pink-e2a3 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.motion-2ace {
  display: grid;
  gap: 2rem;
}

.description-fixed-92e9 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.grid-hard-bd2b {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.mask_6997 {
  flex: 1;
}

.search-bottom-163e {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.search-bottom-163e a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.banner_large_07cf {
  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;
}

.white-9d5a {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.tooltip-black-5918 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.tooltip-black-5918 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.caption_378f {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.caption_378f a {
  font-size: 0.875rem;
  font-weight: 500;
}

.slider-solid-1d5d {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.slider-solid-1d5d strong {
  display: block;
  margin-bottom: 0.75rem;
}

.slider-solid-1d5d ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slider-solid-1d5d li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.lower-8b36 {
  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 === */
.soft_4a3f {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.preview_4736 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.background_8219 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.frame-warm-2e10 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.frame-warm-2e10 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.frame-warm-2e10 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.frame-warm-2e10 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;
}

.frame-warm-2e10 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.frame-warm-2e10 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.table-bright-13bd {
  padding: 3rem 0 5rem;
}

.soft-03c1 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.soft-03c1.paragraph_inner_59f7 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.texture_e8c1 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.menu_357a {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.secondary-wide-8363 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.secondary-wide-8363 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.selected-d39c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.box-dirty-ee23 {
  text-align: center;
}

.main-0fc7 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.gradient-27c7 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.list-db5e {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.chip-current-a8ee {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.narrow_6204 {
  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;
}

.narrow_6204 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.narrow_6204:hover {
  box-shadow: var(--shadow-lg);
}

.narrow_6204.iron_81af {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.narrow_6204 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.narrow_6204 ul {
  margin: 1rem 0;
}

.narrow_6204 li {
  margin-bottom: 0.75rem;
}

.disabled-blue-04ba {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.status_west_b217 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.status_west_b217 a {
  font-weight: 600;
}

/* === Data Tables === */
.disabled-full-61ca {
  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;
}

.disabled-full-61ca table {
  width: 100%;
  min-width: 600px;
}

.disabled-full-61ca thead {
  background-color: var(--primary-color);
  color: white;
}

.disabled-full-61ca th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.disabled-full-61ca td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.disabled-full-61ca tbody tr:hover {
  background-color: var(--bg-secondary);
}

.disabled-full-61ca tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.element-complex-a63e {
  list-style: none;
  margin: 1.5rem 0;
}

.element-complex-a63e li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.element-complex-a63e li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.south_0c6e::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-ff84::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 === */
.tag-iron-f955 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.menu-fast-849e {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.menu-fast-849e img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.menu-fast-849e strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.menu-fast-849e span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tag-iron-f955 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.liquid-98ed {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.liquid-98ed::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.popup_a834 {
  position: relative;
  margin-bottom: 3rem;
}

.column_bc54 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.column_bc54 .preview-liquid-8acf {
  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;
}

.label_dce8 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.label_dce8 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.label_dce8 ul {
  margin: 1rem 0;
}

.label_dce8 li {
  margin-bottom: 0.75rem;
}

.hover-hot-2769 {
  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 === */
.dropdown-fixed-5b6b {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.dropdown-fixed-5b6b h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.aside_fea3 {
  list-style: none;
  margin: 1.5rem 0;
}

.aside_fea3 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.aside_fea3 a {
  font-weight: 600;
}

.pagination_fresh_54b1 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.table-4132 {
  margin: 2.5rem 0;
}

.menu-e4ad {
  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;
}

.menu-e4ad:hover {
  box-shadow: var(--shadow-lg);
}

.menu-e4ad.link_e0de {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.pattern-ad2a {
  flex-shrink: 0;
}

.pattern-ad2a 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);
}

.progress_silver_07de h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.last-62ed,
.hidden-443b,
.summary-rough-41dd {
  width: 100%;
  margin: 1.5rem 0;
}

.accordion_778c {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.accordion_778c strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.shadow-basic-1ee7 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.shadow-basic-1ee7 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.heading_9b79 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.heading_9b79 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.image_pro_2903 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.over_1179 {
  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;
}

.over_1179:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.over_1179.hero-hard-521b {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.over_1179 .media-8d20 {
  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;
}

.over_1179 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.table_bac5 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.north_f517 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.north_f517 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.panel_198b {
  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 === */
.upper_2465 {
  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;
}

.breadcrumb-solid-b961 {
  background-color: var(--primary-color);
  color: white;
}

.breadcrumb-solid-b961:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.pro-69b6 {
  background-color: var(--text-secondary);
  color: white;
}

.pro-69b6:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.simple-f4a2 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.simple-f4a2:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.list-04ad {
  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;
}

.list-04ad:hover {
  background-color: var(--primary-dark);
}

.status-solid-9450 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.motion_3af1 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.label_1519 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.hovered_9381 {
  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 === */
.detail-eb76 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.menu_f7ef {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.menu_f7ef h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.pagination-ccf1 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.gallery-smooth-c603 {
  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;
}

.content_a10d {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.slow-8f3b {
  list-style: none;
  counter-reset: rank-counter;
}

.slow-8f3b li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.slow-8f3b 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;
}

.block-9187 {
  list-style: none;
}

.block-9187 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.pattern-dynamic-7767 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.text-1c6f {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.text-1c6f .overlay-8fe6 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.text-1c6f .notice_paper_995c {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.silver_e228 {
  margin-top: 3rem;
}

.chip_28f0 {
  width: 100%;
}

.yellow-5c34 {
  background-color: #fef3c7;
}

.shade_9e86 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.banner-glass-1026 {
  margin: 3rem 0;
}

.outline_top_cb48 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.fixed-0003 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.fixed-0003:hover {
  box-shadow: var(--shadow-lg);
}

.fixed-0003.item-west-3baf {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.white-9aea {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.video-last-5617 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.video-last-5617 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.dynamic-f61e {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.fixed-0003 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.feature_6777 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.outer-7a76 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.hero-cool-e13c {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.rough_c014 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.footer_green_8723 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.badge_small_e182 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.texture-tall-06a8 {
  max-width: 900px;
  margin: 0 auto;
}

.tag-basic-5d8d {
  margin: 2rem 0;
}

.lower_bad7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.lower_bad7 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.lower_bad7 summary::-webkit-details-marker {
  display: none;
}

.lower_bad7 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.texture_fe4b {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.lower_bad7[open] .texture_fe4b {
  transform: rotate(45deg);
}

.avatar_6a65 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.avatar_6a65 p:last-child {
  margin-bottom: 0;
}

.status_30bc {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.primary_soft_f29a {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.item_white_3439 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.item_white_3439 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.item_white_3439 .upper_2465 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.logo_stone_5496 {
  max-width: 900px;
  margin: 0 auto;
}

.label_04dc {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.row-6d3c {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.row-6d3c.fn-success-ff84 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.accordion-ad2e {
  font-size: 3rem;
  line-height: 1;
}

.frame_e25b h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.focus-c149 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.aside-black-74bf,
.primary-new-073a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.aside-black-74bf h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.primary-new-073a h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.module_left_4506,
.gold_61fc {
  margin: 1.5rem 0;
}

.module_left_4506 li,
.gold_61fc li {
  margin-bottom: 1rem;
}

.tag-26f9 {
  margin: 3rem 0;
}

.upper-d631 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.upper-d631 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.upper-d631 ol {
  margin: 1rem 0;
}

.upper-d631 li {
  margin-bottom: 0.75rem;
}

.outline-81d7 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.shadow_middle_7770 {
  margin: 2rem 0;
}

.video_b68c {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.header_thick_5a79 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.module-02d0 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.tabs-right-e63b {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.banner_stone_5b8f {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.nav_89cf {
  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;
}

.nav_89cf img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.section_8cef {
  flex: 1;
}

.section_8cef h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.header-current-85c1 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.wrapper_c672 p {
  margin-bottom: 1rem;
}

.dropdown_f3d7 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.container-current-2b1b {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.basic_c877 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.basic_c877 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.orange_eb99 h3 {
  margin-bottom: 1.5rem;
}

.container-694f {
  display: grid;
  gap: 2rem;
}

.full-6e14 {
  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;
}

.full-6e14 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.full-6e14 h4 {
  margin: 0 0 0.25rem;
}

.full-6e14 p {
  margin: 0;
  font-size: 0.9375rem;
}

.warm-ef14 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.over-e64f {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.over-e64f h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.over-e64f ul {
  margin: 1.5rem 0;
}

.over-e64f li {
  margin-bottom: 0.75rem;
}

.panel-96a9 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.outer_4e11 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.title_left_8379 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.orange-663b h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.orange-663b p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.menu-5037 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.menu-5037 a {
  color: rgba(255, 255, 255, 0.8);
}

.article_light_adaf {
  list-style: none;
}

.article_light_adaf li {
  margin-bottom: 0.75rem;
}

.article_light_adaf a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.article_light_adaf a:hover {
  color: white;
}

.label_e52f {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.card-out-92ee {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.accordion_selected_c9d1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.fresh_75b4 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.accordion_095d {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .panel-202b {
    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;
  }

  .backdrop_green_b345 {
    font-size: 1.5rem !important;
  }

  .accent_4bb9 {
    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 */
  .narrow_6204,
  .advanced-9a8b,
  .label_dce8,
  .progress_silver_07de,
  .white-9aea,
  .fixed-0003,
  .avatar_6a65,
  .focus-down-d80f,
  .content-short-6297,
  .texture_e8c1 {
    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 */
  .icon-bronze-b65c {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .mask_6997 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .grid-hard-bd2b {
    flex-shrink: 0;
  }

  .section_8cef {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .search-bottom-163e,
  .white-9d5a {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .white-9d5a {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .description_top_9835 {
    display: none;
  }

  /* Show mobile actions */
  .bronze_9fdd {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .media-yellow-771f {
    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;
  }

  .media-yellow-771f svg {
    flex-shrink: 0;
  }

  .media-yellow-771f .container-1304 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .media-yellow-771f .breadcrumb_79d9 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .lite-9279 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .west_51be {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .media-yellow-771f:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .message-b3f6 {
    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;
  }

  .message-b3f6.fn-active-ff84 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .message-b3f6 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .message-b3f6 li:last-child {
    border-bottom: none;
  }

  .message-b3f6 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .feature-ebe0 {
    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;
  }

  .feature-ebe0 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .feature-ebe0 li:last-child {
    border-bottom: none;
  }

  .feature-ebe0 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .menu-7644 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .upper_ac9c {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .banner_17ff,
  .up_9d04 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .banner_17ff {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .up_9d04 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .feature-ebe0.fn-active-ff84 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .modal-bbe7 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .disabled-fd90 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .hot_0952 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .alert-6f9d {
    margin-top: 0;
  }

  /* Hero section */
  .alert-6f9d {
    padding: 2rem 0 1.5rem;
  }

  .accent_4bb9 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .content-short-6297 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .red_bd0f {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .container-a4c7 {
    max-width: 100%;
    border-radius: 8px;
  }

  .container_f84e {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .slider-3e63 {
    padding: 1rem;
  }

  .badge_right_ab99 {
    font-size: 1.5rem;
  }

  .media_motion_a72d {
    font-size: 0.75rem;
  }

  .focus-down-d80f {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .search-0df5 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .search-0df5 .upper_2465 {
    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 */
  .background_8219 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .menu-e4ad {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .pattern-ad2a {
    margin-bottom: 1rem;
  }

  /* Author */
  .description-fixed-92e9 {
    flex-direction: column;
  }

  .nav_89cf {
    flex-direction: column;
  }

  /* Quotes */
  .white-9aea {
    flex-direction: column;
  }

  /* Pros/Cons */
  .focus-c149 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .tabs-right-e63b {
    flex-direction: column;
  }

  .tabs-right-e63b .upper_2465 {
    width: 100%;
  }

  /* Version comparison */
  .image_pro_2903 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .detail-eb76 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .title_left_8379 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .accordion_selected_c9d1 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .disabled-full-61ca,
  .hidden-443b,
  .caption-cf6f,
  .chip_28f0,
  .last-62ed,
  .summary-rough-41dd {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .disabled-full-61ca table,
  .hidden-443b table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .panel_198b {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .panel-202b {
    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;
  }

  .backdrop_green_b345 {
    font-size: 1.25rem !important;
  }

  .accent_4bb9 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .disabled-fd90 {
    position: fixed;
  }

  .hot_0952 {
    padding: 0.625rem 0;
  }

  .thumbnail-iron-cac5 img {
    height: 26px;
  }

  .feature-ebe0 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .message-b3f6 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .media-yellow-771f {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .media-yellow-771f svg {
    width: 18px;
    height: 18px;
  }

  .media-yellow-771f .container-1304 {
    font-size: 0.7rem;
  }

  .media-yellow-771f .breadcrumb_79d9 {
    font-size: 0.65rem;
  }

  .banner_17ff,
  .up_9d04 {
    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, .panel-202b, .center_8059, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .red_bd0f {
    padding: 1rem;
  }

  .container_f84e {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .slider-3e63 {
    padding: 0.875rem;
  }

  .badge_right_ab99 {
    font-size: 1.25rem;
  }

  .search-0df5 .upper_2465 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .accent_4bb9 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .upper_2465 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .status-solid-9450 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .menu-e4ad {
    padding: 1rem;
  }

  .pattern-ad2a span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .narrow_6204,
  .clean-5087,
  .popup-36af,
  .message_36f3 {
    padding: 1rem;
  }
}

@media print {
  .disabled-fd90,
  .soft_4a3f,
  .modal-bbe7,
  .upper_2465,
  .outer_4e11 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .panel-202b {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.input-narrow-4760 {
  margin-bottom: 3rem;
  text-align: center;
}

.backdrop_green_b345 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.dropdown-over-9b0d {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.outline_b3fe,
.wrapper_f3f4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.stone-7a85 {
  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;
}

.stone-7a85:hover {
  transform: translateY(-5px);
}

.stone-7a85 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stone-7a85 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.black-adfb {
  margin: 3rem 0;
}

.panel_silver_e896 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.header-basic-d501 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.header-basic-d501:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.red_d09b {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.footer-7bb2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.modal-fdec {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.bright-905c {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.border_e15d {
  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;
}

.border_e15d:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.border_e15d.badge-058e {
  border-left: 4px solid var(--primary-color);
}

.badge-blue-95ca {
  flex-shrink: 0;
}

.badge-blue-95ca svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.carousel-de76 {
  flex: 1;
}

.carousel-de76 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.photo_cd92 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.breadcrumb_slow_9dce,
.filter_e80d,
.article-d487 {
  margin-bottom: 1.5rem;
}

.breadcrumb_slow_9dce h4,
.filter_e80d h4,
.article-d487 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb_slow_9dce ul,
.filter_e80d ul,
.article-d487 ul {
  list-style: none;
  padding: 0;
}

.breadcrumb_slow_9dce li,
.filter_e80d li,
.article-d487 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.breadcrumb_slow_9dce li:before,
.filter_e80d li:before,
.article-d487 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.dropdown-up-afe5 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.dropdown-up-afe5 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;
}

.dropdown-up-afe5 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.avatar-outer-3e89 { margin: 2rem 0; }
.old-9082 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.old-9082 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.focus-3b3b p { margin-bottom: 1rem; line-height: 1.7; }
.focus-3b3b strong { color: var(--text-primary); }
.focus-3b3b ul { list-style: none; padding-left: 0; }
.focus-3b3b ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.focus-3b3b ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.section_f6c8 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.active-dynamic-027a { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.active-dynamic-027a:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.label_yellow_f052 { font-size: 3rem; margin-bottom: 1rem; }
.active-dynamic-027a h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.active-dynamic-027a p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.picture-outer-42f7 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.picture-outer-42f7 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.sort_838a { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.fluid-aeaa { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.bronze-ba20 { text-align: center; }
.hidden_red_9271 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.tag-paper-1fd1 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.lite_32de { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.slider_fluid_f1df { margin: 2rem 0; }
.thumbnail-3d2a { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.thumbnail-3d2a h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.thumbnail-3d2a p, .thumbnail-3d2a ul { line-height: 1.7; }
.thumbnail-3d2a ul { list-style: none; padding-left: 0; }
.thumbnail-3d2a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.thumbnail-3d2a ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.pro-61bb { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.outline_pro_8671 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.texture-inner-77e7 { text-align: center; }
.carousel-0267 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.breadcrumb_04fa { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.bottom-5cff { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.logo-thick-0b12 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.banner-fixed-741c { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.banner-fixed-741c:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.banner-fixed-741c h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.banner-fixed-741c p, .banner-fixed-741c ul { line-height: 1.7; }
.banner-fixed-741c ul { list-style: none; padding-left: 0; }
.banner-fixed-741c ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.banner-fixed-741c ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: d657 */
.phantom-card-r4 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.0;
}
