/* ============================================
   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 */
.title-in-7f7e p,
.pink_8907,
.picture_e6bc,
.form-pro-c6e9,
.copper_ca00,
.north_b619,
.avatar_cc74,
.component_9c79 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.warm-e23c {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.warm-e23c > *,
.column-4782,
.title-in-7f7e,
.new-a784 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .warm-e23c {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .warm-e23c {
    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 === */
.status-9118 {
  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 */
.status-9118.section-basic-bc02 {
  box-shadow: var(--shadow-md);
}

.easy-5184 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.lite-6b3c img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.article_south_cad9 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.progress_hovered_621f {
  display: none;
}

/* Hide mobile actions on desktop */
.warm-eb59 {
  display: none;
}

.popup_6f33 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.popup_6f33 a:hover,
.popup_6f33 a.fn-active-afc7 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.link-soft-bc82 {
  margin-left: 1rem;
}

.input_first_ef5c {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.gallery-yellow-6e45,
.pink_3445 {
  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;
}

.gallery-yellow-6e45 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.gallery-yellow-6e45: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;
}

.pink_3445 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.pink_3445: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;
}

.gallery-yellow-6e45 svg,
.pink_3445 svg {
  flex-shrink: 0;
}

.active_c676 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.header_over_7e3f {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.header_over_7e3f::before,
.header_over_7e3f::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.header_over_7e3f::before {
  top: -7px;
}

.header_over_7e3f::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.dropdown-brown-0c76 {
  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 === */
.progress-steel-1224 {
  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);
}

.aside-pink-e14a {
  margin: 0 0 2rem;
  text-align: center;
}

.inner_743e {
  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;
}

.inner_743e:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.text_0c6d {
  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);
}

.text_0c6d strong {
  color: var(--primary-color);
  font-weight: 700;
}

.main-f362 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.carousel-cf53 {
  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;
}

.carousel-cf53:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.alert-985c {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.paragraph_down_9eae {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.widget_231d {
  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);
}

.widget_231d .popup-gas-a0ef {
  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;
}

.widget_231d .popup-gas-a0ef svg {
  flex-shrink: 0;
}

.widget_231d .panel-full-7520 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.widget_231d .panel-full-7520: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);
}

.widget_231d .glass-709d {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.widget_231d .glass-709d: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) {
  .progress-steel-1224 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .inner_743e {
    max-width: 100%;
  }

  .main-f362 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .carousel-cf53 {
    padding: 1rem;
  }

  .alert-985c {
    font-size: 1.5rem;
  }

  .paragraph_down_9eae {
    font-size: 0.75rem;
  }

  .text_0c6d {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .widget_231d {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .widget_231d .popup-gas-a0ef {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .main-f362 {
    grid-template-columns: 1fr;
  }
}

.detail_full_f45c {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.pagination_active_a195 {
  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 === */
.picture-out-605c {
  margin-bottom: 2.5rem;
}

.smooth-03f8 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.detail_full_f45c {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.middle-d0c8 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pattern-lite-9a9d {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.over_387a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.current-92db {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.hard_8bbc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.module-upper-18d4 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.blue_6a34 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.blue_6a34 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.block_6f89 {
  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);
}

.motion-a6b2 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.prev-abe1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.slider-cc50 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.table-motion-66f6 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.hero-a3f8 {
  display: grid;
  gap: 1rem;
}

.rough-5c8e {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.black-6c92 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.disabled_black_f025 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.small-c480 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.panel_mini_b537 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.sidebar-3f1e {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.sidebar-3f1e p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.pink_8907 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.secondary_4ef8 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.under-d00e {
  display: grid;
  gap: 2rem;
}

.hot_b4ab {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.pattern-lite-9a9d {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.middle-d0c8 {
  flex: 1;
}

.current-92db {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.current-92db a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.pink-858f {
  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;
}

.hard_8bbc {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.input_inner_4d0e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.input_inner_4d0e span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.solid_7e4d {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.solid_7e4d a {
  font-size: 0.875rem;
  font-weight: 500;
}

.easy_5545 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.easy_5545 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.easy_5545 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.easy_5545 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.silver_b745 {
  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 === */
.layout-bronze-ea63 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.steel_f2d4 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.easy_5083 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mask_new_b0c9 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.mask_new_b0c9 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.mask_new_b0c9 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.mask_new_b0c9 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;
}

.mask_new_b0c9 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.mask_new_b0c9 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.title-in-7f7e {
  padding: 3rem 0 5rem;
}

.new-a784 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.new-a784.background_44c5 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.picture_e6bc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.upper-03c8 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.summary-pressed-c283 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.summary-pressed-c283 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.easy-9e43 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.tertiary-6520 {
  text-align: center;
}

.pagination_636c {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pattern_pro_0f06 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.steel-c39a {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.north_b619 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.form-pro-c6e9 {
  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;
}

.form-pro-c6e9 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.form-pro-c6e9:hover {
  box-shadow: var(--shadow-lg);
}

.form-pro-c6e9.table-lite-2cb1 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.form-pro-c6e9 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.form-pro-c6e9 ul {
  margin: 1rem 0;
}

.form-pro-c6e9 li {
  margin-bottom: 0.75rem;
}

.cool_997f {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.grid_lower_68bc {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.grid_lower_68bc a {
  font-weight: 600;
}

/* === Data Tables === */
.media-dbf6 {
  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;
}

.media-dbf6 table {
  width: 100%;
  min-width: 600px;
}

.media-dbf6 thead {
  background-color: var(--primary-color);
  color: white;
}

.media-dbf6 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.media-dbf6 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.media-dbf6 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.media-dbf6 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.list_plasma_2b25 {
  list-style: none;
  margin: 1.5rem 0;
}

.list_plasma_2b25 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.list_plasma_2b25 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.active_2bf6::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-afc7::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 === */
.filter_stone_3d01 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.first_edac {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.first_edac img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.first_edac strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.first_edac span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.filter_stone_3d01 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.avatar_cc74 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.avatar_cc74::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-in-c1d4 {
  position: relative;
  margin-bottom: 3rem;
}

.backdrop-first-130e {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.backdrop-first-130e .modal-top-70ed {
  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;
}

.paper-b657 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.paper-b657 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.paper-b657 ul {
  margin: 1rem 0;
}

.paper-b657 li {
  margin-bottom: 0.75rem;
}

.preview-4b85 {
  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 === */
.tabs_a896 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.tabs_a896 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.module_2f50 {
  list-style: none;
  margin: 1.5rem 0;
}

.module_2f50 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.module_2f50 a {
  font-weight: 600;
}

.huge_1200 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.component_9c79 {
  margin: 2.5rem 0;
}

.gradient-tall-8a7e {
  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;
}

.gradient-tall-8a7e:hover {
  box-shadow: var(--shadow-lg);
}

.gradient-tall-8a7e.bright_f45c {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.backdrop-8119 {
  flex-shrink: 0;
}

.backdrop-8119 span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.message_5fa3 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.carousel_focused_1c52,
.widget-7ec5,
.alert-active-4f92 {
  width: 100%;
  margin: 1.5rem 0;
}

.lite_d207 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.lite_d207 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.north-23c2 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.north-23c2 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.content_4355 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.content_4355 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.gold-bce4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.secondary_96e1 {
  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;
}

.secondary_96e1:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.secondary_96e1.hero-south-48ec {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.secondary_96e1 .badge-2ffd {
  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;
}

.secondary_96e1 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.outline-black-762a {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.slider_290e {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.slider_290e label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.green_b602 {
  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 === */
.popup-gas-a0ef {
  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;
}

.panel-full-7520 {
  background-color: var(--primary-color);
  color: white;
}

.panel-full-7520:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.glass-709d {
  background-color: var(--text-secondary);
  color: white;
}

.glass-709d:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.texture_fb50 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.texture_fb50:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.silver-22d7 {
  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;
}

.silver-22d7:hover {
  background-color: var(--primary-dark);
}

.surface-ee8b {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.avatar-dynamic-0adf {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.banner_paper_34c8 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.upper_e4ee {
  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 === */
.old-fd3f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.carousel-dfd5 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.carousel-dfd5 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.progress-large-6398 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.section_fixed_5795 {
  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;
}

.layout-motion-352d {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.sort_8bdc {
  list-style: none;
  counter-reset: rank-counter;
}

.sort_8bdc li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.sort_8bdc 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;
}

.photo-f214 {
  list-style: none;
}

.photo-f214 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.brown_6b1b {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.brown-c3f1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.brown-c3f1 .cool-9c15 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.brown-c3f1 .widget-8f7c {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.cold-f869 {
  margin-top: 3rem;
}

.black_8973 {
  width: 100%;
}

.slow-e8f0 {
  background-color: #fef3c7;
}

.outline_ee7b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.search-short-3544 {
  margin: 3rem 0;
}

.input_0110 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.module_center_8574 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.module_center_8574:hover {
  box-shadow: var(--shadow-lg);
}

.module_center_8574.block-stone-cdc9 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.notice-ee0a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.main-3aa1 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.main-3aa1 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.advanced_7ff9 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.module_center_8574 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.section-4a3c {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.prev_88d8 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.left-4b59 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.pressed_831f {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.block-short-42d4 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.pattern-next-11ac {
  margin-top: 1rem;
}

/* === FAQ Section === */
.cold-f2ea {
  max-width: 900px;
  margin: 0 auto;
}

.pagination_upper_2072 {
  margin: 2rem 0;
}

.wrapper-cool-e13a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.wrapper-cool-e13a summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.wrapper-cool-e13a summary::-webkit-details-marker {
  display: none;
}

.wrapper-cool-e13a summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.button-3f1f {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.wrapper-cool-e13a[open] .button-3f1f {
  transform: rotate(45deg);
}

.avatar_next_d48c {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.avatar_next_d48c p:last-child {
  margin-bottom: 0;
}

.active_fbc1 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.avatar-simple-171e {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.photo_ccd6 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.photo_ccd6 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.photo_ccd6 .popup-gas-a0ef {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.west-a0d0 {
  max-width: 900px;
  margin: 0 auto;
}

.dirty-5cd0 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.border_advanced_8054 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.border_advanced_8054.fn-success-afc7 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.border-fixed-2a37 {
  font-size: 3rem;
  line-height: 1;
}

.tag-bronze-dff7 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.item_176e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.chip-26da,
.content_gas_2801 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.chip-26da h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.content_gas_2801 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.fluid-c709,
.alert_29f8 {
  margin: 1.5rem 0;
}

.fluid-c709 li,
.alert_29f8 li {
  margin-bottom: 1rem;
}

.bronze_a7fa {
  margin: 3rem 0;
}

.steel_4613 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.steel_4613 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.steel_4613 ol {
  margin: 1rem 0;
}

.steel_4613 li {
  margin-bottom: 0.75rem;
}

.current_b054 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.advanced-f448 {
  margin: 2rem 0;
}

.gas-f07c {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.carousel_dbf7 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.short-89ff {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.filter-5502 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.filter_2233 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.element-over-e095 {
  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;
}

.element-over-e095 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.over_387a {
  flex: 1;
}

.over_387a h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.bronze-c553 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.middle_a3e8 p {
  margin-bottom: 1rem;
}

.description_1f68 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.tabs_red_f51d {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.bright_48cf {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.bright_48cf a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.breadcrumb_ae50 h3 {
  margin-bottom: 1.5rem;
}

.blue_1a7f {
  display: grid;
  gap: 2rem;
}

.avatar-orange-319e {
  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;
}

.avatar-orange-319e img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.avatar-orange-319e h4 {
  margin: 0 0 0.25rem;
}

.avatar-orange-319e p {
  margin: 0;
  font-size: 0.9375rem;
}

.pagination-d3ec {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.surface-fresh-9a17 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.surface-fresh-9a17 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.surface-fresh-9a17 ul {
  margin: 1.5rem 0;
}

.surface-fresh-9a17 li {
  margin-bottom: 0.75rem;
}

.nav-last-1cf3 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.element_focused_03fb {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.tiny_a669 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.mask_fresh_5ead h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.mask_fresh_5ead p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.column_23a9 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.column_23a9 a {
  color: rgba(255, 255, 255, 0.8);
}

.center-f151 {
  list-style: none;
}

.center-f151 li {
  margin-bottom: 0.75rem;
}

.center-f151 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.center-f151 a:hover {
  color: white;
}

.focused-381b {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.banner_24ab {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.badge_pink_3097 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.footer-next-a283 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.full-3fad {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .warm-e23c {
    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;
  }

  .next-98bc {
    font-size: 1.5rem !important;
  }

  .smooth-03f8 {
    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 */
  .form-pro-c6e9,
  .copper_ca00,
  .paper-b657,
  .message_5fa3,
  .notice-ee0a,
  .module_center_8574,
  .avatar_next_d48c,
  .text_0c6d,
  .pink_8907,
  .picture_e6bc {
    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 */
  .detail_full_f45c {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .middle-d0c8 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .pattern-lite-9a9d {
    flex-shrink: 0;
  }

  .over_387a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .current-92db,
  .hard_8bbc {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hard_8bbc {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .article_south_cad9 {
    display: none;
  }

  /* Show mobile actions */
  .warm-eb59 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .cold_f39d {
    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;
  }

  .cold_f39d svg {
    flex-shrink: 0;
  }

  .cold_f39d .up-0426 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .cold_f39d .block-80af {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .form-active-8646 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .under-705b {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .cold_f39d:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .progress_hovered_621f {
    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;
  }

  .progress_hovered_621f.fn-active-afc7 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .progress_hovered_621f li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .progress_hovered_621f li:last-child {
    border-bottom: none;
  }

  .progress_hovered_621f a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .popup_6f33 {
    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;
  }

  .popup_6f33 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .popup_6f33 li:last-child {
    border-bottom: none;
  }

  .popup_6f33 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .link-soft-bc82 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .input_first_ef5c {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .gallery-yellow-6e45,
  .pink_3445 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .gallery-yellow-6e45 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .pink_3445 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .popup_6f33.fn-active-afc7 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .active_c676 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .status-9118 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .easy-5184 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .dropdown-brown-0c76 {
    margin-top: 0;
  }

  /* Hero section */
  .dropdown-brown-0c76 {
    padding: 2rem 0 1.5rem;
  }

  .smooth-03f8 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .pink_8907 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .progress-steel-1224 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .inner_743e {
    max-width: 100%;
    border-radius: 8px;
  }

  .main-f362 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .carousel-cf53 {
    padding: 1rem;
  }

  .alert-985c {
    font-size: 1.5rem;
  }

  .paragraph_down_9eae {
    font-size: 0.75rem;
  }

  .text_0c6d {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .widget_231d {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .widget_231d .popup-gas-a0ef {
    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 */
  .easy_5083 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .gradient-tall-8a7e {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .backdrop-8119 {
    margin-bottom: 1rem;
  }

  /* Author */
  .hot_b4ab {
    flex-direction: column;
  }

  .element-over-e095 {
    flex-direction: column;
  }

  /* Quotes */
  .notice-ee0a {
    flex-direction: column;
  }

  /* Pros/Cons */
  .item_176e {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .filter-5502 {
    flex-direction: column;
  }

  .filter-5502 .popup-gas-a0ef {
    width: 100%;
  }

  /* Version comparison */
  .gold-bce4 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .old-fd3f {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .tiny_a669 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .badge_pink_3097 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .media-dbf6,
  .widget-7ec5,
  .section_fresh_c7e8,
  .black_8973,
  .carousel_focused_1c52,
  .alert-active-4f92 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .media-dbf6 table,
  .widget-7ec5 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .green_b602 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .warm-e23c {
    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;
  }

  .next-98bc {
    font-size: 1.25rem !important;
  }

  .smooth-03f8 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .status-9118 {
    position: fixed;
  }

  .easy-5184 {
    padding: 0.625rem 0;
  }

  .lite-6b3c img {
    height: 26px;
  }

  .popup_6f33 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .progress_hovered_621f {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .cold_f39d {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .cold_f39d svg {
    width: 18px;
    height: 18px;
  }

  .cold_f39d .up-0426 {
    font-size: 0.7rem;
  }

  .cold_f39d .block-80af {
    font-size: 0.65rem;
  }

  .gallery-yellow-6e45,
  .pink_3445 {
    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, .warm-e23c, .column-4782, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .progress-steel-1224 {
    padding: 1rem;
  }

  .main-f362 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .carousel-cf53 {
    padding: 0.875rem;
  }

  .alert-985c {
    font-size: 1.25rem;
  }

  .widget_231d .popup-gas-a0ef {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .smooth-03f8 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .popup-gas-a0ef {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .surface-ee8b {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .gradient-tall-8a7e {
    padding: 1rem;
  }

  .backdrop-8119 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .form-pro-c6e9,
  .border-upper-4896,
  .label_6912,
  .grid_ef46 {
    padding: 1rem;
  }
}

@media print {
  .status-9118,
  .layout-bronze-ea63,
  .active_c676,
  .popup-gas-a0ef,
  .element_focused_03fb {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .warm-e23c {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.focus-fast-c052 {
  margin-bottom: 3rem;
  text-align: center;
}

.next-98bc {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.overlay-inner-4030 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.first-aa11,
.grid-white-a461 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.hover_plasma_7b28 {
  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;
}

.hover_plasma_7b28:hover {
  transform: translateY(-5px);
}

.hover_plasma_7b28 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.hover_plasma_7b28 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.clean-5038 {
  margin: 3rem 0;
}

.copper_fca5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.smooth-642e {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.smooth-642e:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.hover_action_9c27 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.search_0fc8 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.red-4614 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.slider-9424 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.secondary_9fc2 {
  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;
}

.secondary_9fc2:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.secondary_9fc2.inner-e163 {
  border-left: 4px solid var(--primary-color);
}

.stale_78b0 {
  flex-shrink: 0;
}

.stale_78b0 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.search-dim-0d60 {
  flex: 1;
}

.search-dim-0d60 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.photo-thick-0a46 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.nav-dark-7bf7,
.warm_0659,
.footer-thick-8c3a {
  margin-bottom: 1.5rem;
}

.nav-dark-7bf7 h4,
.warm_0659 h4,
.footer-thick-8c3a h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-dark-7bf7 ul,
.warm_0659 ul,
.footer-thick-8c3a ul {
  list-style: none;
  padding: 0;
}

.nav-dark-7bf7 li,
.warm_0659 li,
.footer-thick-8c3a li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.nav-dark-7bf7 li:before,
.warm_0659 li:before,
.footer-thick-8c3a li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.description_gold_4cf8 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.description_gold_4cf8 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;
}

.description_gold_4cf8 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.section_cold_8e2a { margin: 2rem 0; }
.backdrop-9798 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.backdrop-9798 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.card_b90b p { margin-bottom: 1rem; line-height: 1.7; }
.card_b90b strong { color: var(--text-primary); }
.card_b90b ul { list-style: none; padding-left: 0; }
.card_b90b ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.card_b90b ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.dropdown-36ca { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.active-fbc5 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.active-fbc5:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.medium_a152 { font-size: 3rem; margin-bottom: 1rem; }
.active-fbc5 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.active-fbc5 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.carousel-9af0 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.carousel-9af0 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.soft_c430 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.stone_5e7b { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.grid-22bc { text-align: center; }
.secondary-basic-a945 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.middle-5c9f { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.motion-085b { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.media-liquid-be15 { margin: 2rem 0; }
.wrapper-copper-a8c4 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.wrapper-copper-a8c4 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.wrapper-copper-a8c4 p, .wrapper-copper-a8c4 ul { line-height: 1.7; }
.wrapper-copper-a8c4 ul { list-style: none; padding-left: 0; }
.wrapper-copper-a8c4 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.wrapper-copper-a8c4 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.small-ffb6 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.border-1791 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.module_simple_eb76 { text-align: center; }
.sidebar_red_d77b { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.huge-e692 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.east-4caf { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.column-cd8d { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.new-e99a { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.new-e99a:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.new-e99a h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.new-e99a p, .new-e99a ul { line-height: 1.7; }
.new-e99a ul { list-style: none; padding-left: 0; }
.new-e99a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.new-e99a ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 6f9b */
.promo-block-g1 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.2;
}
