/* ============================================
   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 */
.sidebar_91b6 p,
.detail_9d62,
.row_clean_0cee,
.tertiary-29ec,
.detail-d62c,
.header_cold_760c,
.next-4b0e,
.link-0e5e {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.input_basic_ef80 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.input_basic_ef80 > *,
.carousel-focused-057d,
.sidebar_91b6,
.pattern_223b {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .input_basic_ef80 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .input_basic_ef80 {
    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 === */
.middle-e71c {
  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 */
.middle-e71c.block-narrow-d243 {
  box-shadow: var(--shadow-md);
}

.active-8af9 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo_c932 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.link_mini_d1a6 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.dim_ec5d {
  display: none;
}

/* Hide mobile actions on desktop */
.brown_d214 {
  display: none;
}

.detail_198c a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.detail_198c a:hover,
.detail_198c a.fn-active-84e5 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.wrapper_easy_1c76 {
  margin-left: 1rem;
}

.button_e622 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.paper_402e,
.dropdown-8ec9 {
  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;
}

.paper_402e {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.paper_402e: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;
}

.dropdown-8ec9 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.dropdown-8ec9: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;
}

.paper_402e svg,
.dropdown-8ec9 svg {
  flex-shrink: 0;
}

.red-da0c {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.text-warm-57ac {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.text-warm-57ac::before,
.text-warm-57ac::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.text-warm-57ac::before {
  top: -7px;
}

.text-warm-57ac::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.caption_easy_f293 {
  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 === */
.banner-603a {
  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);
}

.block-bc33 {
  margin: 0 0 2rem;
  text-align: center;
}

.blue-5c5a {
  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;
}

.blue-5c5a:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.gradient-tall-eef5 {
  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);
}

.gradient-tall-eef5 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.widget_6867 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.outer_32cf {
  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;
}

.outer_32cf:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.hard_3e7c {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.widget-1cdc {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.card-huge-a964 {
  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);
}

.card-huge-a964 .content_c7fd {
  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;
}

.card-huge-a964 .content_c7fd svg {
  flex-shrink: 0;
}

.card-huge-a964 .badge_slow_7ffc {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.card-huge-a964 .badge_slow_7ffc: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);
}

.card-huge-a964 .wrapper_over_6a1a {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.card-huge-a964 .wrapper_over_6a1a: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) {
  .banner-603a {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .blue-5c5a {
    max-width: 100%;
  }

  .widget_6867 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .outer_32cf {
    padding: 1rem;
  }

  .hard_3e7c {
    font-size: 1.5rem;
  }

  .widget-1cdc {
    font-size: 0.75rem;
  }

  .gradient-tall-eef5 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .card-huge-a964 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .card-huge-a964 .content_c7fd {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .widget_6867 {
    grid-template-columns: 1fr;
  }
}

.pattern-tall-e2c3 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.media-f3ab {
  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 === */
.tall_3a85 {
  margin-bottom: 2.5rem;
}

.banner-a1ab {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.pattern-tall-e2c3 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.rough_27d4 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.table_huge_89ad {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.focus_8190 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.column-eab7 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.bronze-4e2b {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.cold_e3af {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.easy-4852 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.easy-4852 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.text-hot-0c56 {
  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);
}

.dynamic-9516 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.nav_active_bbb7 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.next-277b {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.box_large_a1bd {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.simple_1539 {
  display: grid;
  gap: 1rem;
}

.aside-purple-e744 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.upper_7980 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.lite-dd8d {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.primary-small-aa59 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.top-e7f6 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.pattern-up-ca00 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.pattern-up-ca00 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.detail_9d62 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.slow_6133 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.widget_copper_3fbb {
  display: grid;
  gap: 2rem;
}

.summary-up-51d0 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.table_huge_89ad {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.rough_27d4 {
  flex: 1;
}

.column-eab7 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.column-eab7 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.current_474a {
  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;
}

.bronze-4e2b {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.tooltip-easy-f687 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.tooltip-easy-f687 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.fresh-cb7f {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.fresh-cb7f a {
  font-size: 0.875rem;
  font-weight: 500;
}

.steel-6c40 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.steel-6c40 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.steel-6c40 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.steel-6c40 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.shade-south-64ab {
  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 === */
.video-medium-4421 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.feature-out-3da7 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.primary_dirty_a22c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.photo-d182 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.photo-d182 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.photo-d182 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.photo-d182 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;
}

.photo-d182 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.photo-d182 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.sidebar_91b6 {
  padding: 3rem 0 5rem;
}

.pattern_223b {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.pattern_223b.progress-warm-b2d3 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.row_clean_0cee {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.heading-over-4c1c {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.sidebar_fresh_457c {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.sidebar_fresh_457c h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.hot_f225 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.badge-6a39 {
  text-align: center;
}

.warm_a9fa {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.left-6333 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.green_f00e {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.header_cold_760c {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.tertiary-29ec {
  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;
}

.tertiary-29ec * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tertiary-29ec:hover {
  box-shadow: var(--shadow-lg);
}

.tertiary-29ec.gas_2e64 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.tertiary-29ec h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.tertiary-29ec ul {
  margin: 1rem 0;
}

.tertiary-29ec li {
  margin-bottom: 0.75rem;
}

.video-east-f5da {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.fluid-a8fc {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.fluid-a8fc a {
  font-weight: 600;
}

/* === Data Tables === */
.aside_north_d1b6 {
  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;
}

.aside_north_d1b6 table {
  width: 100%;
  min-width: 600px;
}

.aside_north_d1b6 thead {
  background-color: var(--primary-color);
  color: white;
}

.aside_north_d1b6 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.aside_north_d1b6 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.aside_north_d1b6 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.aside_north_d1b6 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.input-soft-4b64 {
  list-style: none;
  margin: 1.5rem 0;
}

.input-soft-4b64 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.input-soft-4b64 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.accordion-cold-a9b2::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-84e5::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 === */
.gas-b348 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.green-c94e {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.green-c94e img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.green-c94e strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.green-c94e span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.gas-b348 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.next-4b0e {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.next-4b0e::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.solid_53f7 {
  position: relative;
  margin-bottom: 3rem;
}

.secondary_9d6c {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.secondary_9d6c .tabs_orange_b073 {
  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;
}

.lite-7bfc {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.lite-7bfc h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.lite-7bfc ul {
  margin: 1rem 0;
}

.lite-7bfc li {
  margin-bottom: 0.75rem;
}

.tall_7e2d {
  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 === */
.over-9180 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.over-9180 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.accent_pink_1f9e {
  list-style: none;
  margin: 1.5rem 0;
}

.accent_pink_1f9e li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.accent_pink_1f9e a {
  font-weight: 600;
}

.hero-e05d {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.link-0e5e {
  margin: 2.5rem 0;
}

.grid_light_ea3c {
  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;
}

.grid_light_ea3c:hover {
  box-shadow: var(--shadow-lg);
}

.grid_light_ea3c.thumbnail_924d {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.frame-in-fd44 {
  flex-shrink: 0;
}

.frame-in-fd44 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);
}

.silver_aa81 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.slider-middle-5a1d,
.active-c68e,
.thick-4c4e {
  width: 100%;
  margin: 1.5rem 0;
}

.large_ba26 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.large_ba26 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.list_gas_ae3d {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.list_gas_ae3d strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.yellow-c875 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.yellow-c875 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.bronze_a250 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.hero_brown_b8b4 {
  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;
}

.hero_brown_b8b4:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.hero_brown_b8b4.hovered_a826 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.hero_brown_b8b4 .gradient_bd41 {
  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;
}

.hero_brown_b8b4 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.caption-bde9 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.title-red-8ffb {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.title-red-8ffb label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.input-lower-a420 {
  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 === */
.content_c7fd {
  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;
}

.badge_slow_7ffc {
  background-color: var(--primary-color);
  color: white;
}

.badge_slow_7ffc:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.wrapper_over_6a1a {
  background-color: var(--text-secondary);
  color: white;
}

.wrapper_over_6a1a:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.shadow_top_f27b {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.shadow_top_f27b:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.north-733f {
  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;
}

.north-733f:hover {
  background-color: var(--primary-dark);
}

.frame_bd86 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.article-3730 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.primary_under_2011 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.layout_b91c {
  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 === */
.top-3d76 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.last-5c2b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.last-5c2b h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.dim-7796 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.background-0a6c {
  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;
}

.tabs-32d2 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.current_5187 {
  list-style: none;
  counter-reset: rank-counter;
}

.current_5187 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.current_5187 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;
}

.element_a2ce {
  list-style: none;
}

.element_a2ce li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.menu-pink-df48 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.in-550d {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.in-550d .disabled-yellow-b2b4 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.in-550d .hard-1064 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.tiny_4be2 {
  margin-top: 3rem;
}

.caption_f820 {
  width: 100%;
}

.section-332c {
  background-color: #fef3c7;
}

.pink_d973 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.hovered_f835 {
  margin: 3rem 0;
}

.fresh-206e {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.preview-85cd {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.preview-85cd:hover {
  box-shadow: var(--shadow-lg);
}

.preview-85cd.widget_75e2 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.icon_6af9 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.tiny-051e strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.tiny-051e span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.module-easy-922c {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.preview-85cd blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.detail_current_10fa {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.layout_88b5 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.down_5ec8 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.background_7230 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.overlay_be41 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.medium_4d47 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.layout_hot_87e0 {
  max-width: 900px;
  margin: 0 auto;
}

.section_warm_dcf0 {
  margin: 2rem 0;
}

.upper-35e2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.upper-35e2 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.upper-35e2 summary::-webkit-details-marker {
  display: none;
}

.upper-35e2 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.mask_glass_7d87 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.upper-35e2[open] .mask_glass_7d87 {
  transform: rotate(45deg);
}

.smooth_084d {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.smooth_084d p:last-child {
  margin-bottom: 0;
}

.up-f1af {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.widget_bronze_00e3 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.content-a92a {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.content-a92a p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.content-a92a .content_c7fd {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.dark_28ad {
  max-width: 900px;
  margin: 0 auto;
}

.element_892e {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.wrapper_d5c6 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.wrapper_d5c6.fn-success-84e5 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.thumbnail_blue_ccad {
  font-size: 3rem;
  line-height: 1;
}

.surface-small-5fba h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.heading_orange_c854 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.gallery_9c4b,
.progress-bottom-283b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.gallery_9c4b h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.progress-bottom-283b h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.message-3311,
.lite_05ac {
  margin: 1.5rem 0;
}

.message-3311 li,
.lite_05ac li {
  margin-bottom: 1rem;
}

.thumbnail_up_1aac {
  margin: 3rem 0;
}

.table-bbb9 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.table-bbb9 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.table-bbb9 ol {
  margin: 1rem 0;
}

.table-bbb9 li {
  margin-bottom: 0.75rem;
}

.tabs-steel-4d6e {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.hover_outer_ac6c {
  margin: 2rem 0;
}

.main-dad3 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.next_674f {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.button_upper_f28d {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.info_eed5 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.liquid_f9bd {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.lower-9e6e {
  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;
}

.lower-9e6e img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.focus_8190 {
  flex: 1;
}

.focus_8190 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.clean_0eca {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.texture_west_f5b8 p {
  margin-bottom: 1rem;
}

.aside-a38c {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.detail_selected_9c29 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.sidebar_e467 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.sidebar_e467 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.content-basic-afd0 h3 {
  margin-bottom: 1.5rem;
}

.hover-71d8 {
  display: grid;
  gap: 2rem;
}

.dirty-7fe9 {
  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;
}

.dirty-7fe9 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.dirty-7fe9 h4 {
  margin: 0 0 0.25rem;
}

.dirty-7fe9 p {
  margin: 0;
  font-size: 0.9375rem;
}

.menu_left_694f {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.avatar-small-06c9 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.avatar-small-06c9 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.avatar-small-06c9 ul {
  margin: 1.5rem 0;
}

.avatar-small-06c9 li {
  margin-bottom: 0.75rem;
}

.article_gas_2f3d {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.bright-3563 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.container_d16e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.fluid_50c7 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.fluid_50c7 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.easy_21ba {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.easy_21ba a {
  color: rgba(255, 255, 255, 0.8);
}

.modal-c270 {
  list-style: none;
}

.modal-c270 li {
  margin-bottom: 0.75rem;
}

.modal-c270 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.modal-c270 a:hover {
  color: white;
}

.frame_clean_b917 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.warm-fe98 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.paper-c956 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.highlight_8889 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.table_action_1b85 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .input_basic_ef80 {
    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;
  }

  .slow-5b02 {
    font-size: 1.5rem !important;
  }

  .banner-a1ab {
    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 */
  .tertiary-29ec,
  .detail-d62c,
  .lite-7bfc,
  .silver_aa81,
  .icon_6af9,
  .preview-85cd,
  .smooth_084d,
  .gradient-tall-eef5,
  .detail_9d62,
  .row_clean_0cee {
    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 */
  .pattern-tall-e2c3 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .rough_27d4 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .table_huge_89ad {
    flex-shrink: 0;
  }

  .focus_8190 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .column-eab7,
  .bronze-4e2b {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .bronze-4e2b {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .link_mini_d1a6 {
    display: none;
  }

  /* Show mobile actions */
  .brown_d214 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .photo-steel-15d6 {
    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;
  }

  .photo-steel-15d6 svg {
    flex-shrink: 0;
  }

  .photo-steel-15d6 .small-f595 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .photo-steel-15d6 .iron-f9d5 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .shadow_2bee {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .static-926a {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .photo-steel-15d6:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .dim_ec5d {
    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;
  }

  .dim_ec5d.fn-active-84e5 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .dim_ec5d li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .dim_ec5d li:last-child {
    border-bottom: none;
  }

  .dim_ec5d a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .detail_198c {
    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;
  }

  .detail_198c li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .detail_198c li:last-child {
    border-bottom: none;
  }

  .detail_198c a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .wrapper_easy_1c76 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .button_e622 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .paper_402e,
  .dropdown-8ec9 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .paper_402e {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .dropdown-8ec9 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .detail_198c.fn-active-84e5 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .red-da0c {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .middle-e71c {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .active-8af9 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .caption_easy_f293 {
    margin-top: 0;
  }

  /* Hero section */
  .caption_easy_f293 {
    padding: 2rem 0 1.5rem;
  }

  .banner-a1ab {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .detail_9d62 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .banner-603a {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .blue-5c5a {
    max-width: 100%;
    border-radius: 8px;
  }

  .widget_6867 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .outer_32cf {
    padding: 1rem;
  }

  .hard_3e7c {
    font-size: 1.5rem;
  }

  .widget-1cdc {
    font-size: 0.75rem;
  }

  .gradient-tall-eef5 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .card-huge-a964 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .card-huge-a964 .content_c7fd {
    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 */
  .primary_dirty_a22c {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .grid_light_ea3c {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .frame-in-fd44 {
    margin-bottom: 1rem;
  }

  /* Author */
  .summary-up-51d0 {
    flex-direction: column;
  }

  .lower-9e6e {
    flex-direction: column;
  }

  /* Quotes */
  .icon_6af9 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .heading_orange_c854 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .info_eed5 {
    flex-direction: column;
  }

  .info_eed5 .content_c7fd {
    width: 100%;
  }

  /* Version comparison */
  .bronze_a250 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .top-3d76 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .container_d16e {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .paper-c956 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .aside_north_d1b6,
  .active-c68e,
  .green_1b31,
  .caption_f820,
  .slider-middle-5a1d,
  .thick-4c4e {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .aside_north_d1b6 table,
  .active-c68e table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .input-lower-a420 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .input_basic_ef80 {
    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;
  }

  .slow-5b02 {
    font-size: 1.25rem !important;
  }

  .banner-a1ab {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .middle-e71c {
    position: fixed;
  }

  .active-8af9 {
    padding: 0.625rem 0;
  }

  .logo_c932 img {
    height: 26px;
  }

  .detail_198c {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .dim_ec5d {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .photo-steel-15d6 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .photo-steel-15d6 svg {
    width: 18px;
    height: 18px;
  }

  .photo-steel-15d6 .small-f595 {
    font-size: 0.7rem;
  }

  .photo-steel-15d6 .iron-f9d5 {
    font-size: 0.65rem;
  }

  .paper_402e,
  .dropdown-8ec9 {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
  }

  /* Ultra aggressive word breaking for small screens */
  * {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  /* Ensure no element exceeds viewport */
  body, .input_basic_ef80, .carousel-focused-057d, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .banner-603a {
    padding: 1rem;
  }

  .widget_6867 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .outer_32cf {
    padding: 0.875rem;
  }

  .hard_3e7c {
    font-size: 1.25rem;
  }

  .card-huge-a964 .content_c7fd {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .banner-a1ab {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .content_c7fd {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .frame_bd86 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .grid_light_ea3c {
    padding: 1rem;
  }

  .frame-in-fd44 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .tertiary-29ec,
  .main-pressed-278e,
  .status_8ef8,
  .notice-f9ce {
    padding: 1rem;
  }
}

@media print {
  .middle-e71c,
  .video-medium-4421,
  .red-da0c,
  .content_c7fd,
  .bright-3563 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .input_basic_ef80 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.green_70d8 {
  margin-bottom: 3rem;
  text-align: center;
}

.slow-5b02 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.fresh_e4e2 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.main-7ff4,
.image_hard_5416 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.middle-4128 {
  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;
}

.middle-4128:hover {
  transform: translateY(-5px);
}

.middle-4128 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.middle-4128 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.dirty-f57a {
  margin: 3rem 0;
}

.box_cold_14bc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.hard-76a7 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.hard-76a7:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.badge_liquid_aea6 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.mask-9555 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.thick-c82d {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.box_wood_e8d2 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.surface_209f {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.surface_209f:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.surface_209f.caption_54a5 {
  border-left: 4px solid var(--primary-color);
}

.button-left-b9cb {
  flex-shrink: 0;
}

.button-left-b9cb svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.banner_yellow_0cb2 {
  flex: 1;
}

.banner_yellow_0cb2 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.table_active_3fdf {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.tag_wide_efa5,
.tall_a315,
.black-f968 {
  margin-bottom: 1.5rem;
}

.tag_wide_efa5 h4,
.tall_a315 h4,
.black-f968 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tag_wide_efa5 ul,
.tall_a315 ul,
.black-f968 ul {
  list-style: none;
  padding: 0;
}

.tag_wide_efa5 li,
.tall_a315 li,
.black-f968 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.tag_wide_efa5 li:before,
.tall_a315 li:before,
.black-f968 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.banner-full-ddae {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.banner-full-ddae 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;
}

.banner-full-ddae a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.alert_72b6 { margin: 2rem 0; }
.widget-plasma-8a3c { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.widget-plasma-8a3c h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.border-complex-db3f p { margin-bottom: 1rem; line-height: 1.7; }
.border-complex-db3f strong { color: var(--text-primary); }
.border-complex-db3f ul { list-style: none; padding-left: 0; }
.border-complex-db3f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.border-complex-db3f ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.border-dynamic-dfab { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.link-13ee { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.link-13ee:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.purple-ec41 { font-size: 3rem; margin-bottom: 1rem; }
.link-13ee h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.link-13ee p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.title-complex-5344 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.title-complex-5344 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.widget-0dba { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.breadcrumb_0196 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.gradient_750e { text-align: center; }
.secondary_orange_a30a { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.avatar_narrow_5e64 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.border_hard_725b { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.solid-bde0 { margin: 2rem 0; }
.pagination_selected_27f7 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.pagination_selected_27f7 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.pagination_selected_27f7 p, .pagination_selected_27f7 ul { line-height: 1.7; }
.pagination_selected_27f7 ul { list-style: none; padding-left: 0; }
.pagination_selected_27f7 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.pagination_selected_27f7 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.paragraph-thick-3fee { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.background-d192 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.up_acba { text-align: center; }
.medium_c24d { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.notice_f67b { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.soft_a7d3 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.highlight-narrow-4b92 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.prev_2c1b { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.prev_2c1b:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.prev_2c1b h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.prev_2c1b p, .prev_2c1b ul { line-height: 1.7; }
.prev_2c1b ul { list-style: none; padding-left: 0; }
.prev_2c1b ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.prev_2c1b ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: fde6 */
.widget-item-f1 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.3;
}
