/* ============================================
   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 */
.status_37b3 p,
.liquid-d257,
.green_59bc,
.gallery_out_dcf4,
.widget_over_dc09,
.main_fa68,
.container-center-029b,
.highlight_basic_852c {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.gold_882e {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.gold_882e > *,
.gradient-02cb,
.status_37b3,
.pink-801a {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .gold_882e {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .gold_882e {
    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 === */
.pattern-lite-d328 {
  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 */
.pattern-lite-d328.basic_7f60 {
  box-shadow: var(--shadow-md);
}

.texture-671e {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.selected-83ca img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.motion_502c {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.alert_middle_b876 {
  display: none;
}

/* Hide mobile actions on desktop */
.accordion_top_2500 {
  display: none;
}

.item-ddc6 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.item-ddc6 a:hover,
.item-ddc6 a.fn-active-04ec {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.item_easy_05b4 {
  margin-left: 1rem;
}

.large-9e4f {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.column_dark_8e0d,
.hover-fcce {
  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;
}

.column_dark_8e0d {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.column_dark_8e0d: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;
}

.hover-fcce {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.hover-fcce: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;
}

.column_dark_8e0d svg,
.hover-fcce svg {
  flex-shrink: 0;
}

.label_9293 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.shade-inner-e478 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.shade-inner-e478::before,
.shade-inner-e478::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.shade-inner-e478::before {
  top: -7px;
}

.shade-inner-e478::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.container-8b27 {
  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 === */
.form_left_d44a {
  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);
}

.secondary_5e28 {
  margin: 0 0 2rem;
  text-align: center;
}

.copper_5ed1 {
  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;
}

.copper_5ed1:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.link-last-117f {
  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);
}

.link-last-117f strong {
  color: var(--primary-color);
  font-weight: 700;
}

.breadcrumb_hard_b903 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.iron_9c63 {
  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;
}

.iron_9c63:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.brown_4305 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.simple_f32e {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.dropdown-bdad {
  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);
}

.dropdown-bdad .picture_easy_52bf {
  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;
}

.dropdown-bdad .picture_easy_52bf svg {
  flex-shrink: 0;
}

.dropdown-bdad .lite_17dc {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.dropdown-bdad .lite_17dc: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);
}

.dropdown-bdad .pagination-315d {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.dropdown-bdad .pagination-315d: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) {
  .form_left_d44a {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .copper_5ed1 {
    max-width: 100%;
  }

  .breadcrumb_hard_b903 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .iron_9c63 {
    padding: 1rem;
  }

  .brown_4305 {
    font-size: 1.5rem;
  }

  .simple_f32e {
    font-size: 0.75rem;
  }

  .link-last-117f {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .dropdown-bdad {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .dropdown-bdad .picture_easy_52bf {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .breadcrumb_hard_b903 {
    grid-template-columns: 1fr;
  }
}

.info-out-8c60 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.message_1c22 {
  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 === */
.hidden_active_a015 {
  margin-bottom: 2.5rem;
}

.pattern_action_3176 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.info-out-8c60 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.card-ec38 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.north_f448 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.element_0110 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.complex_ecd2 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.backdrop-smooth-1d87 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.thick_219b {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tag-soft-303c {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tag-soft-303c svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.up_973b {
  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);
}

.element_ffc6 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.pattern_top_bcda {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.element_bf93 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.banner_simple_5f26 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.menu_static_b442 {
  display: grid;
  gap: 1rem;
}

.complex-b266 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.feature_smooth_cf79 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.card-old-68bc {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.modal_fb18 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.active-261d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.overlay-next-1857 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.overlay-next-1857 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.liquid-d257 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.hidden_rough_f1c0 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.south_3289 {
  display: grid;
  gap: 2rem;
}

.bright-3d44 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.north_f448 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.card-ec38 {
  flex: 1;
}

.complex_ecd2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.complex_ecd2 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.in_acbf {
  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;
}

.backdrop-smooth-1d87 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.element-gas-83a5 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.element-gas-83a5 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.accent-gold-5299 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.accent-gold-5299 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.panel-fresh-1087 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.panel-fresh-1087 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.panel-fresh-1087 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.panel-fresh-1087 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.detail_e265 {
  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 === */
.paragraph-south-9ca7 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.hard-0e08 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.breadcrumb_2aed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.title_complex_cfad h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.title_complex_cfad ol {
  list-style: none;
  counter-reset: toc-counter;
}

.title_complex_cfad ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.title_complex_cfad 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;
}

.title_complex_cfad ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.title_complex_cfad ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.status_37b3 {
  padding: 3rem 0 5rem;
}

.pink-801a {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.pink-801a.video_pink_fe85 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.green_59bc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.header_a204 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.content-4c7c {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.content-4c7c h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.bright_8437 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.accordion-a3d2 {
  text-align: center;
}

.button_current_ac40 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.under-34f8 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.gold_9db4 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.main_fa68 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.gallery_out_dcf4 {
  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;
}

.gallery_out_dcf4 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.gallery_out_dcf4:hover {
  box-shadow: var(--shadow-lg);
}

.gallery_out_dcf4.content-8dd8 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.gallery_out_dcf4 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.gallery_out_dcf4 ul {
  margin: 1rem 0;
}

.gallery_out_dcf4 li {
  margin-bottom: 0.75rem;
}

.shadow_1327 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.footer_60d2 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.footer_60d2 a {
  font-weight: 600;
}

/* === Data Tables === */
.north_f543 {
  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;
}

.north_f543 table {
  width: 100%;
  min-width: 600px;
}

.north_f543 thead {
  background-color: var(--primary-color);
  color: white;
}

.north_f543 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.north_f543 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.north_f543 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.north_f543 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.picture-green-17e7 {
  list-style: none;
  margin: 1.5rem 0;
}

.picture-green-17e7 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.picture-green-17e7 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.list-96b8::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-04ec::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 === */
.light-5662 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.panel_4772 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.panel_4772 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.panel_4772 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.panel_4772 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.light-5662 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.container-center-029b {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.container-center-029b::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.main-1486 {
  position: relative;
  margin-bottom: 3rem;
}

.grid-blue-ee92 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.grid-blue-ee92 .section_2e3d {
  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;
}

.progress-prev-1400 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.progress-prev-1400 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.progress-prev-1400 ul {
  margin: 1rem 0;
}

.progress-prev-1400 li {
  margin-bottom: 0.75rem;
}

.hover_stale_cfd3 {
  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 === */
.image_59d7 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.image_59d7 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.green_5913 {
  list-style: none;
  margin: 1.5rem 0;
}

.green_5913 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.green_5913 a {
  font-weight: 600;
}

.carousel-d6f8 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.highlight_basic_852c {
  margin: 2.5rem 0;
}

.light_1c3c {
  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;
}

.light_1c3c:hover {
  box-shadow: var(--shadow-lg);
}

.light_1c3c.small-7c1c {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.media-inner-1486 {
  flex-shrink: 0;
}

.media-inner-1486 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);
}

.gradient_advanced_20a1 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.status_8d1f,
.status_selected_4263,
.left-cecd {
  width: 100%;
  margin: 1.5rem 0;
}

.block-0a9f {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.block-0a9f strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.background_gold_a81e {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.background_gold_a81e strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.notice_0829 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.notice_0829 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.layout-1471 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.media-c516 {
  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;
}

.media-c516:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.media-c516.small_a1a7 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.media-c516 .notification_fluid_de7e {
  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;
}

.media-c516 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.paragraph_west_9ca4 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.bright_d64b {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.bright_d64b label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.text-blue-f677 {
  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 === */
.picture_easy_52bf {
  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;
}

.lite_17dc {
  background-color: var(--primary-color);
  color: white;
}

.lite_17dc:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.pagination-315d {
  background-color: var(--text-secondary);
  color: white;
}

.pagination-315d:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.focus-a1ea {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.focus-a1ea:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.block_next_0d15 {
  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;
}

.block_next_0d15:hover {
  background-color: var(--primary-dark);
}

.media-glass-29cc {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.breadcrumb_mini_23fc {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.south_8346 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.hovered-ef36 {
  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 === */
.pagination_cool_efcc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.top-9ed5 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.top-9ed5 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.breadcrumb-5a7b {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.badge-fluid-46a0 {
  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;
}

.shadow-9aa6 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.tooltip-e620 {
  list-style: none;
  counter-reset: rank-counter;
}

.tooltip-e620 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.tooltip-e620 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;
}

.notice_bd93 {
  list-style: none;
}

.notice_bd93 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.sidebar_263a {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.header_0c44 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.header_0c44 .link-8dff {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.header_0c44 .aside-0889 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.accordion_5955 {
  margin-top: 3rem;
}

.article-inner-4dc1 {
  width: 100%;
}

.steel_6100 {
  background-color: #fef3c7;
}

.right_7dc9 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.clean_c149 {
  margin: 3rem 0;
}

.gas-0665 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.next_f3e1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.next_f3e1:hover {
  box-shadow: var(--shadow-lg);
}

.next_f3e1.yellow-ad57 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.item-blue-2e6b {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.avatar_6e5e strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.avatar_6e5e span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.sidebar_aaf3 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.next_f3e1 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.gas_6aee {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.silver-0551 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.hover-8910 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.paragraph-lower-5032 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.hot_bb26 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.hidden-9620 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.module_bottom_fb8b {
  max-width: 900px;
  margin: 0 auto;
}

.tertiary_6932 {
  margin: 2rem 0;
}

.section_orange_41e8 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.section_orange_41e8 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.section_orange_41e8 summary::-webkit-details-marker {
  display: none;
}

.section_orange_41e8 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.in-4a2d {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.section_orange_41e8[open] .in-4a2d {
  transform: rotate(45deg);
}

.badge-2d9c {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.badge-2d9c p:last-child {
  margin-bottom: 0;
}

.heading-hot-1ee1 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.slider-cbca {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.thumbnail_brown_02c2 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.thumbnail_brown_02c2 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.thumbnail_brown_02c2 .picture_easy_52bf {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.aside-2e1c {
  max-width: 900px;
  margin: 0 auto;
}

.full-69d0 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.status-smooth-4ad9 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.status-smooth-4ad9.fn-success-04ec {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.summary_medium_06d8 {
  font-size: 3rem;
  line-height: 1;
}

.texture-action-d753 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.smooth_97fe {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.shadow_13c6,
.alert_b629 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.shadow_13c6 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.alert_b629 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.gallery-ba96,
.prev_bbdb {
  margin: 1.5rem 0;
}

.gallery-ba96 li,
.prev_bbdb li {
  margin-bottom: 1rem;
}

.logo-02e5 {
  margin: 3rem 0;
}

.item_b0e7 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.item_b0e7 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.item_b0e7 ol {
  margin: 1rem 0;
}

.item_b0e7 li {
  margin-bottom: 0.75rem;
}

.button_e95a {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.backdrop-dfe2 {
  margin: 2rem 0;
}

.aside_over_d3fc {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.button-f261 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.huge_c4de {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.logo_e2c2 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.thick_d03c {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.breadcrumb-left-54d3 {
  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;
}

.breadcrumb-left-54d3 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.element_0110 {
  flex: 1;
}

.element_0110 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.table_narrow_a24f {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.gradient_iron_e6aa p {
  margin-bottom: 1rem;
}

.top-2272 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.red_6897 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.sort_1a3e {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.sort_1a3e a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.chip_clean_0ede h3 {
  margin-bottom: 1.5rem;
}

.pagination_purple_feb2 {
  display: grid;
  gap: 2rem;
}

.secondary-hard-8b23 {
  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;
}

.secondary-hard-8b23 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.secondary-hard-8b23 h4 {
  margin: 0 0 0.25rem;
}

.secondary-hard-8b23 p {
  margin: 0;
  font-size: 0.9375rem;
}

.slider_807b {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.grid-green-a686 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.grid-green-a686 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.grid-green-a686 ul {
  margin: 1.5rem 0;
}

.grid-green-a686 li {
  margin-bottom: 0.75rem;
}

.banner_east_9ede {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.active_8de2 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.caption-plasma-3fde {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer_brown_63dd h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.footer_brown_63dd p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.fresh_0912 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.fresh_0912 a {
  color: rgba(255, 255, 255, 0.8);
}

.list-3219 {
  list-style: none;
}

.list-3219 li {
  margin-bottom: 0.75rem;
}

.list-3219 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.list-3219 a:hover {
  color: white;
}

.video_steel_b24c {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.secondary-inner-8ba2 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.summary_fb88 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.silver-17c2 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.warm_d8ad {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .gold_882e {
    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;
  }

  .logo_709b {
    font-size: 1.5rem !important;
  }

  .pattern_action_3176 {
    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 */
  .gallery_out_dcf4,
  .widget_over_dc09,
  .progress-prev-1400,
  .gradient_advanced_20a1,
  .item-blue-2e6b,
  .next_f3e1,
  .badge-2d9c,
  .link-last-117f,
  .liquid-d257,
  .green_59bc {
    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 */
  .info-out-8c60 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .card-ec38 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .north_f448 {
    flex-shrink: 0;
  }

  .element_0110 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .complex_ecd2,
  .backdrop-smooth-1d87 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .backdrop-smooth-1d87 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .motion_502c {
    display: none;
  }

  /* Show mobile actions */
  .accordion_top_2500 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .aside_0fde {
    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;
  }

  .aside_0fde svg {
    flex-shrink: 0;
  }

  .aside_0fde .disabled-49d0 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .aside_0fde .shadow-dark-6e9f {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .image-last-abd2 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .table-c268 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .aside_0fde:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .alert_middle_b876 {
    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;
  }

  .alert_middle_b876.fn-active-04ec {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .alert_middle_b876 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .alert_middle_b876 li:last-child {
    border-bottom: none;
  }

  .alert_middle_b876 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .item-ddc6 {
    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;
  }

  .item-ddc6 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .item-ddc6 li:last-child {
    border-bottom: none;
  }

  .item-ddc6 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .item_easy_05b4 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .large-9e4f {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .column_dark_8e0d,
  .hover-fcce {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .column_dark_8e0d {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .hover-fcce {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .item-ddc6.fn-active-04ec {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .label_9293 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .pattern-lite-d328 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .texture-671e {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .container-8b27 {
    margin-top: 0;
  }

  /* Hero section */
  .container-8b27 {
    padding: 2rem 0 1.5rem;
  }

  .pattern_action_3176 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .liquid-d257 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .form_left_d44a {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .copper_5ed1 {
    max-width: 100%;
    border-radius: 8px;
  }

  .breadcrumb_hard_b903 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .iron_9c63 {
    padding: 1rem;
  }

  .brown_4305 {
    font-size: 1.5rem;
  }

  .simple_f32e {
    font-size: 0.75rem;
  }

  .link-last-117f {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .dropdown-bdad {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .dropdown-bdad .picture_easy_52bf {
    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 */
  .breadcrumb_2aed {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .light_1c3c {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .media-inner-1486 {
    margin-bottom: 1rem;
  }

  /* Author */
  .bright-3d44 {
    flex-direction: column;
  }

  .breadcrumb-left-54d3 {
    flex-direction: column;
  }

  /* Quotes */
  .item-blue-2e6b {
    flex-direction: column;
  }

  /* Pros/Cons */
  .smooth_97fe {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .logo_e2c2 {
    flex-direction: column;
  }

  .logo_e2c2 .picture_easy_52bf {
    width: 100%;
  }

  /* Version comparison */
  .layout-1471 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .pagination_cool_efcc {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .caption-plasma-3fde {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .summary_fb88 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .north_f543,
  .status_selected_4263,
  .gradient_hovered_c20a,
  .article-inner-4dc1,
  .status_8d1f,
  .left-cecd {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .north_f543 table,
  .status_selected_4263 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .text-blue-f677 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .gold_882e {
    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;
  }

  .logo_709b {
    font-size: 1.25rem !important;
  }

  .pattern_action_3176 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .pattern-lite-d328 {
    position: fixed;
  }

  .texture-671e {
    padding: 0.625rem 0;
  }

  .selected-83ca img {
    height: 26px;
  }

  .item-ddc6 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .alert_middle_b876 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .aside_0fde {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .aside_0fde svg {
    width: 18px;
    height: 18px;
  }

  .aside_0fde .disabled-49d0 {
    font-size: 0.7rem;
  }

  .aside_0fde .shadow-dark-6e9f {
    font-size: 0.65rem;
  }

  .column_dark_8e0d,
  .hover-fcce {
    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, .gold_882e, .gradient-02cb, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .form_left_d44a {
    padding: 1rem;
  }

  .breadcrumb_hard_b903 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .iron_9c63 {
    padding: 0.875rem;
  }

  .brown_4305 {
    font-size: 1.25rem;
  }

  .dropdown-bdad .picture_easy_52bf {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .pattern_action_3176 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .picture_easy_52bf {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .media-glass-29cc {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .light_1c3c {
    padding: 1rem;
  }

  .media-inner-1486 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .gallery_out_dcf4,
  .dirty-8d89,
  .last_8160,
  .accordion-under-ef1f {
    padding: 1rem;
  }
}

@media print {
  .pattern-lite-d328,
  .paragraph-south-9ca7,
  .label_9293,
  .picture_easy_52bf,
  .active_8de2 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .gold_882e {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.gold_ec7b {
  margin-bottom: 3rem;
  text-align: center;
}

.logo_709b {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.element_gas_e391 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.label-0949,
.card-487c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.sort_3439 {
  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;
}

.sort_3439:hover {
  transform: translateY(-5px);
}

.sort_3439 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.sort_3439 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.tertiary-tiny-cad9 {
  margin: 3rem 0;
}

.link_dynamic_723b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.nav_4926 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.nav_4926:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.hero-261a {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.input-2b61 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.texture-ac06 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.icon_13ce {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.pagination-soft-d830 {
  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;
}

.pagination-soft-d830:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.pagination-soft-d830.block-bronze-bfb7 {
  border-left: 4px solid var(--primary-color);
}

.gallery_c6a6 {
  flex-shrink: 0;
}

.gallery_c6a6 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.avatar-bae2 {
  flex: 1;
}

.avatar-bae2 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.notice_silver_47bd {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.section_rough_9d24,
.menu_ef26,
.text_bottom_2622 {
  margin-bottom: 1.5rem;
}

.section_rough_9d24 h4,
.menu_ef26 h4,
.text_bottom_2622 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section_rough_9d24 ul,
.menu_ef26 ul,
.text_bottom_2622 ul {
  list-style: none;
  padding: 0;
}

.section_rough_9d24 li,
.menu_ef26 li,
.text_bottom_2622 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.section_rough_9d24 li:before,
.menu_ef26 li:before,
.text_bottom_2622 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.steel-a7a5 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.steel-a7a5 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;
}

.steel-a7a5 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.wrapper-narrow-5754 { margin: 2rem 0; }
.accent-outer-2115 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.accent-outer-2115 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.lower_5501 p { margin-bottom: 1rem; line-height: 1.7; }
.lower_5501 strong { color: var(--text-primary); }
.lower_5501 ul { list-style: none; padding-left: 0; }
.lower_5501 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.lower_5501 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.layout_d3a1 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.article-958a { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.article-958a:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.prev-e87b { font-size: 3rem; margin-bottom: 1rem; }
.article-958a h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.article-958a p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.tooltip_d617 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.tooltip_d617 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.alert-pink-0890 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.primary_north_4a5a { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.badge_cold_7e4e { text-align: center; }
.carousel_c1f7 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.small-d340 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.thumbnail-d5f9 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.hidden-862c { margin: 2rem 0; }
.static_9562 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.static_9562 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.static_9562 p, .static_9562 ul { line-height: 1.7; }
.static_9562 ul { list-style: none; padding-left: 0; }
.static_9562 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.static_9562 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.shade-under-d564 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.lite_59ec { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.paragraph-1a91 { text-align: center; }
.lower_970b { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.lower-8b2d { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.basic_6be2 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.aside_651d { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.outline-1ea6 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.outline-1ea6:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.outline-1ea6 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.outline-1ea6 p, .outline-1ea6 ul { line-height: 1.7; }
.outline-1ea6 ul { list-style: none; padding-left: 0; }
.outline-1ea6 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.outline-1ea6 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 5fa3 */
.ghost-box-n8 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.2;
}
