/* ============================================
   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 */
.item-top-108b p,
.description_fluid_4854,
.frame_25af,
.container_852d,
.overlay-3cc3,
.info-2906,
.footer_6653,
.video-bottom-0741 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.surface-88c5 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.surface-88c5 > *,
.block-hard-1d9a,
.item-top-108b,
.tertiary-wood-51b7 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .surface-88c5 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .surface-88c5 {
    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 === */
.grid-d050 {
  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 */
.grid-d050.caption-up-ddca {
  box-shadow: var(--shadow-md);
}

.avatar-prev-56b3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.feature_a515 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.middle-53cb {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.heading_silver_9d3e {
  display: none;
}

/* Hide mobile actions on desktop */
.complex-fd67 {
  display: none;
}

.mini-a9f3 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.mini-a9f3 a:hover,
.mini-a9f3 a.fn-active-4224 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.huge_74ab {
  margin-left: 1rem;
}

.overlay_pink_b19a {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.heading_6da2,
.purple-8e72 {
  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;
}

.heading_6da2 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.heading_6da2: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;
}

.purple-8e72 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.purple-8e72: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;
}

.heading_6da2 svg,
.purple-8e72 svg {
  flex-shrink: 0;
}

.heading_8171 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hot-5fa6 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.hot-5fa6::before,
.hot-5fa6::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.hot-5fa6::before {
  top: -7px;
}

.hot-5fa6::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.smooth-64db {
  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 === */
.frame_3c49 {
  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);
}

.search_c141 {
  margin: 0 0 2rem;
  text-align: center;
}

.hidden_828d {
  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;
}

.hidden_828d:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.disabled_dbb3 {
  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);
}

.disabled_dbb3 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.focus-230b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.copper_2108 {
  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;
}

.copper_2108:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.picture_9386 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.layout_light_b553 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.label-in-6d5d {
  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);
}

.label-in-6d5d .pagination-up-11fc {
  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;
}

.label-in-6d5d .pagination-up-11fc svg {
  flex-shrink: 0;
}

.label-in-6d5d .avatar_e4f2 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.label-in-6d5d .avatar_e4f2: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);
}

.label-in-6d5d .pattern_981c {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.label-in-6d5d .pattern_981c: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) {
  .frame_3c49 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .hidden_828d {
    max-width: 100%;
  }

  .focus-230b {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .copper_2108 {
    padding: 1rem;
  }

  .picture_9386 {
    font-size: 1.5rem;
  }

  .layout_light_b553 {
    font-size: 0.75rem;
  }

  .disabled_dbb3 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .label-in-6d5d {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .label-in-6d5d .pagination-up-11fc {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .focus-230b {
    grid-template-columns: 1fr;
  }
}

.left_4f42 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.right_35c0 {
  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 === */
.form-copper-edc0 {
  margin-bottom: 2.5rem;
}

.video_2fe0 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.left_4f42 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.sort-silver-f5eb {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.full-db46 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.fluid_f575 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.focus-tiny-713b {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.clean_545a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.tooltip_2ee1 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.mask_simple_930c {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.mask_simple_930c svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.secondary_inner_1e87 {
  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);
}

.sort_2c07 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.box_056f {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.in_21af {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.basic-2f45 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.small_930a {
  display: grid;
  gap: 1rem;
}

.thumbnail-brown-c5a9 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.fixed-2ed5 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.tag-fluid-3d6a {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.hot-3763 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.article-bf53 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.component-9cc8 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.component-9cc8 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.description_fluid_4854 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.primary_1f07 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.main_b0d1 {
  display: grid;
  gap: 2rem;
}

.footer_basic_2f0d {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.full-db46 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.sort-silver-f5eb {
  flex: 1;
}

.focus-tiny-713b {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.focus-tiny-713b a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.accordion-orange-915f {
  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;
}

.clean_545a {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.article_up_45eb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.article_up_45eb span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.slider_bright_b432 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.slider_bright_b432 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.link-8023 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.link-8023 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.link-8023 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.link-8023 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.gradient_cool_48a0 {
  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 === */
.primary-da6a {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.down-bb16 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.modal_rough_b030 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.module-a606 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.module-a606 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.module-a606 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.module-a606 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;
}

.module-a606 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.module-a606 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.item-top-108b {
  padding: 3rem 0 5rem;
}

.tertiary-wood-51b7 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.tertiary-wood-51b7.texture-selected-1a65 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.frame_25af {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.glass-3648 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.header_30c3 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.header_30c3 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.texture-inner-4a7d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.heading_b86f {
  text-align: center;
}

.bronze-fe40 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.module_active_19f3 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.static-3cf0 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.info-2906 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.container_852d {
  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;
}

.container_852d * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.container_852d:hover {
  box-shadow: var(--shadow-lg);
}

.container_852d.section_over_d1f0 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.container_852d h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.container_852d ul {
  margin: 1rem 0;
}

.container_852d li {
  margin-bottom: 0.75rem;
}

.over_2352 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.panel_medium_cab9 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.panel_medium_cab9 a {
  font-weight: 600;
}

/* === Data Tables === */
.text-035d {
  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;
}

.text-035d table {
  width: 100%;
  min-width: 600px;
}

.text-035d thead {
  background-color: var(--primary-color);
  color: white;
}

.text-035d th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.text-035d td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.text-035d tbody tr:hover {
  background-color: var(--bg-secondary);
}

.text-035d tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.frame_56b3 {
  list-style: none;
  margin: 1.5rem 0;
}

.frame_56b3 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.frame_56b3 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.popup_1656::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-4224::before {
  content: '⚠';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--warning-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

/* === Expert Insight Box === */
.smooth_194e {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.icon-d629 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.icon-d629 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.icon-d629 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.icon-d629 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.smooth_194e blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.footer_6653 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.footer_6653::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.block_074a {
  position: relative;
  margin-bottom: 3rem;
}

.chip_35d0 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.chip_35d0 .text-be9f {
  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;
}

.summary_top_ece9 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.summary_top_ece9 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.summary_top_ece9 ul {
  margin: 1rem 0;
}

.summary_top_ece9 li {
  margin-bottom: 0.75rem;
}

.column-eeb2 {
  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 === */
.tag-2512 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.tag-2512 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.over-dd1c {
  list-style: none;
  margin: 1.5rem 0;
}

.over-dd1c li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.over-dd1c a {
  font-weight: 600;
}

.hover_static_c8cb {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.video-bottom-0741 {
  margin: 2.5rem 0;
}

.video_smooth_6b06 {
  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;
}

.video_smooth_6b06:hover {
  box-shadow: var(--shadow-lg);
}

.video_smooth_6b06.short_6f74 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.upper_b8a4 {
  flex-shrink: 0;
}

.upper_b8a4 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);
}

.copper-f868 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.nav_paper_b810,
.thumbnail-easy-62be,
.west_6247 {
  width: 100%;
  margin: 1.5rem 0;
}

.tooltip-basic-f15a {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.tooltip-basic-f15a strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.input-pro-80db {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.input-pro-80db strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.hover_dim_83e6 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.hover_dim_83e6 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.photo_987c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.prev-880e {
  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;
}

.prev-880e:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.prev-880e.simple-5da1 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.prev-880e .input-slow-f6e4 {
  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;
}

.prev-880e h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.description-copper-e9e4 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.box_c190 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.box_c190 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.motion-fff4 {
  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 === */
.pagination-up-11fc {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.avatar_e4f2 {
  background-color: var(--primary-color);
  color: white;
}

.avatar_e4f2:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.pattern_981c {
  background-color: var(--text-secondary);
  color: white;
}

.pattern_981c:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.dim-32e8 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.dim-32e8:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.basic-b041 {
  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;
}

.basic-b041:hover {
  background-color: var(--primary-dark);
}

.paragraph_3dc6 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.nav_complex_c54a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.tooltip_dark_fdd2 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-4c93 {
  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 === */
.thumbnail_10a3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.paragraph_d101 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.paragraph_d101 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.input_2372 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.shadow_white_9d6e {
  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;
}

.up-2202 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.grid-short-7f5a {
  list-style: none;
  counter-reset: rank-counter;
}

.grid-short-7f5a li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.grid-short-7f5a 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;
}

.message-2801 {
  list-style: none;
}

.message-2801 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.shade_huge_b4a2 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.feature_e0be {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.feature_e0be .header-lower-ea82 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.feature_e0be .main-left-3680 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.copper-05ac {
  margin-top: 3rem;
}

.bottom_8dc1 {
  width: 100%;
}

.icon-black-c4ac {
  background-color: #fef3c7;
}

.aside-large-66ff {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.block-over-871f {
  margin: 3rem 0;
}

.hero_3976 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.right_f2f4 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.right_f2f4:hover {
  box-shadow: var(--shadow-lg);
}

.right_f2f4.complex-9b1e {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.dropdown-98f0 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.disabled_lite_a670 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.disabled_lite_a670 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.simple_b70c {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.right_f2f4 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.next_0ff5 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.form_blue_9d66 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.feature_349d {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.tall_ae6a {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.article-c8e5 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.media-active-d7a7 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.modal_4095 {
  max-width: 900px;
  margin: 0 auto;
}

.slider-2561 {
  margin: 2rem 0;
}

.feature-basic-bd59 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.feature-basic-bd59 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.feature-basic-bd59 summary::-webkit-details-marker {
  display: none;
}

.feature-basic-bd59 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.box-b51a {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.feature-basic-bd59[open] .box-b51a {
  transform: rotate(45deg);
}

.surface_easy_a115 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.surface_easy_a115 p:last-child {
  margin-bottom: 0;
}

.easy_509f {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.texture_21fd {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.copper-6ca4 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.copper-6ca4 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.copper-6ca4 .pagination-up-11fc {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.gallery_d63a {
  max-width: 900px;
  margin: 0 auto;
}

.red-630f {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.light_0b6b {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.light_0b6b.fn-success-4224 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.disabled_589b {
  font-size: 3rem;
  line-height: 1;
}

.bottom-00cf h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.header-fixed-fdd3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.preview_wood_6c5d,
.accordion-581e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.preview_wood_6c5d h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.accordion-581e h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.image_tiny_beef,
.picture_cool_7fd7 {
  margin: 1.5rem 0;
}

.image_tiny_beef li,
.picture_cool_7fd7 li {
  margin-bottom: 1rem;
}

.tooltip_inner_f3b5 {
  margin: 3rem 0;
}

.liquid-0f35 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.liquid-0f35 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.liquid-0f35 ol {
  margin: 1rem 0;
}

.liquid-0f35 li {
  margin-bottom: 0.75rem;
}

.chip-3fe5 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.article-dynamic-2ed1 {
  margin: 2rem 0;
}

.action-79e0 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.wrapper_a51b {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.first-5b0f {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.texture-west-fb75 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.mask_74c9 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.iron_1bc8 {
  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;
}

.iron_1bc8 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.fluid_f575 {
  flex: 1;
}

.fluid_f575 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.summary-wood-376c {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.rough_9b08 p {
  margin-bottom: 1rem;
}

.logo-9bde {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.element-b379 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.box_next_ea69 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.box_next_ea69 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.border_0dba h3 {
  margin-bottom: 1.5rem;
}

.carousel-advanced-28e2 {
  display: grid;
  gap: 2rem;
}

.old_fa53 {
  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;
}

.old_fa53 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.old_fa53 h4 {
  margin: 0 0 0.25rem;
}

.old_fa53 p {
  margin: 0;
  font-size: 0.9375rem;
}

.table-6fb1 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.dropdown_upper_8289 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.dropdown_upper_8289 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.dropdown_upper_8289 ul {
  margin: 1.5rem 0;
}

.dropdown_upper_8289 li {
  margin-bottom: 0.75rem;
}

.solid-fc24 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.video-f496 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.highlight_lite_d58d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.badge_cold_8e40 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.badge_cold_8e40 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.grid-bronze-05d0 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.grid-bronze-05d0 a {
  color: rgba(255, 255, 255, 0.8);
}

.row-wide-72d1 {
  list-style: none;
}

.row-wide-72d1 li {
  margin-bottom: 0.75rem;
}

.row-wide-72d1 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.row-wide-72d1 a:hover {
  color: white;
}

.container_501d {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.over-f4bd {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.element_thick_4c65 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.box-b1d4 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.red-74b6 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .surface-88c5 {
    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;
  }

  .outer-8e56 {
    font-size: 1.5rem !important;
  }

  .video_2fe0 {
    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 */
  .container_852d,
  .overlay-3cc3,
  .summary_top_ece9,
  .copper-f868,
  .dropdown-98f0,
  .right_f2f4,
  .surface_easy_a115,
  .disabled_dbb3,
  .description_fluid_4854,
  .frame_25af {
    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 */
  .left_4f42 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .sort-silver-f5eb {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .full-db46 {
    flex-shrink: 0;
  }

  .fluid_f575 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .focus-tiny-713b,
  .clean_545a {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .clean_545a {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .middle-53cb {
    display: none;
  }

  /* Show mobile actions */
  .complex-fd67 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .hero_new_d984 {
    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;
  }

  .hero_new_d984 svg {
    flex-shrink: 0;
  }

  .hero_new_d984 .media_a8ab {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .hero_new_d984 .white-5cbd {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .sidebar-6c0a {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .hover_current_ecfb {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .hero_new_d984:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .heading_silver_9d3e {
    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;
  }

  .heading_silver_9d3e.fn-active-4224 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .heading_silver_9d3e li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .heading_silver_9d3e li:last-child {
    border-bottom: none;
  }

  .heading_silver_9d3e a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .mini-a9f3 {
    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;
  }

  .mini-a9f3 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .mini-a9f3 li:last-child {
    border-bottom: none;
  }

  .mini-a9f3 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .huge_74ab {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .overlay_pink_b19a {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .heading_6da2,
  .purple-8e72 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .heading_6da2 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .purple-8e72 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .mini-a9f3.fn-active-4224 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .heading_8171 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .grid-d050 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .avatar-prev-56b3 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .smooth-64db {
    margin-top: 0;
  }

  /* Hero section */
  .smooth-64db {
    padding: 2rem 0 1.5rem;
  }

  .video_2fe0 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .description_fluid_4854 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .frame_3c49 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .hidden_828d {
    max-width: 100%;
    border-radius: 8px;
  }

  .focus-230b {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .copper_2108 {
    padding: 1rem;
  }

  .picture_9386 {
    font-size: 1.5rem;
  }

  .layout_light_b553 {
    font-size: 0.75rem;
  }

  .disabled_dbb3 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .label-in-6d5d {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .label-in-6d5d .pagination-up-11fc {
    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 */
  .modal_rough_b030 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .video_smooth_6b06 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .upper_b8a4 {
    margin-bottom: 1rem;
  }

  /* Author */
  .footer_basic_2f0d {
    flex-direction: column;
  }

  .iron_1bc8 {
    flex-direction: column;
  }

  /* Quotes */
  .dropdown-98f0 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .header-fixed-fdd3 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .texture-west-fb75 {
    flex-direction: column;
  }

  .texture-west-fb75 .pagination-up-11fc {
    width: 100%;
  }

  /* Version comparison */
  .photo_987c {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .thumbnail_10a3 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .highlight_lite_d58d {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .element_thick_4c65 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .text-035d,
  .thumbnail-easy-62be,
  .photo-374d,
  .bottom_8dc1,
  .nav_paper_b810,
  .west_6247 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .text-035d table,
  .thumbnail-easy-62be table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .motion-fff4 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .surface-88c5 {
    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;
  }

  .outer-8e56 {
    font-size: 1.25rem !important;
  }

  .video_2fe0 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .grid-d050 {
    position: fixed;
  }

  .avatar-prev-56b3 {
    padding: 0.625rem 0;
  }

  .feature_a515 img {
    height: 26px;
  }

  .mini-a9f3 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .heading_silver_9d3e {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .hero_new_d984 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .hero_new_d984 svg {
    width: 18px;
    height: 18px;
  }

  .hero_new_d984 .media_a8ab {
    font-size: 0.7rem;
  }

  .hero_new_d984 .white-5cbd {
    font-size: 0.65rem;
  }

  .heading_6da2,
  .purple-8e72 {
    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, .surface-88c5, .block-hard-1d9a, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .frame_3c49 {
    padding: 1rem;
  }

  .focus-230b {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .copper_2108 {
    padding: 0.875rem;
  }

  .picture_9386 {
    font-size: 1.25rem;
  }

  .label-in-6d5d .pagination-up-11fc {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .video_2fe0 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .pagination-up-11fc {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .paragraph_3dc6 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .video_smooth_6b06 {
    padding: 1rem;
  }

  .upper_b8a4 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .container_852d,
  .form_7761,
  .logo-purple-4071,
  .west_b251 {
    padding: 1rem;
  }
}

@media print {
  .grid-d050,
  .primary-da6a,
  .heading_8171,
  .pagination-up-11fc,
  .video-f496 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .surface-88c5 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.shadow_5b65 {
  margin-bottom: 3rem;
  text-align: center;
}

.outer-8e56 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.static-7618 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.filter_330a,
.feature_9731 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.video_aaae {
  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;
}

.video_aaae:hover {
  transform: translateY(-5px);
}

.video_aaae strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.video_aaae span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.purple_f980 {
  margin: 3rem 0;
}

.badge_f595 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.article_lite_470a {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.article_lite_470a:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.texture-brown-cbaa {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.message-wood-8be9 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.slider-advanced-2caf {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.button-green-0b76 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.carousel-6e6c {
  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;
}

.carousel-6e6c:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.carousel-6e6c.nav_e669 {
  border-left: 4px solid var(--primary-color);
}

.disabled_mini_6d62 {
  flex-shrink: 0;
}

.disabled_mini_6d62 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.primary_47f3 {
  flex: 1;
}

.primary_47f3 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.white-60cd {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.gradient_14fa,
.link_liquid_6264,
.card_right_d24f {
  margin-bottom: 1.5rem;
}

.gradient_14fa h4,
.link_liquid_6264 h4,
.card_right_d24f h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gradient_14fa ul,
.link_liquid_6264 ul,
.card_right_d24f ul {
  list-style: none;
  padding: 0;
}

.gradient_14fa li,
.link_liquid_6264 li,
.card_right_d24f li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.gradient_14fa li:before,
.link_liquid_6264 li:before,
.card_right_d24f li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.status-5500 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.status-5500 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;
}

.status-5500 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.hot_6254 { margin: 2rem 0; }
.header-5b76 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.header-5b76 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.dropdown-last-78e4 p { margin-bottom: 1rem; line-height: 1.7; }
.dropdown-last-78e4 strong { color: var(--text-primary); }
.dropdown-last-78e4 ul { list-style: none; padding-left: 0; }
.dropdown-last-78e4 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.dropdown-last-78e4 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.notice-b8e1 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.logo_843a { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.logo_843a:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.media_tall_ba1f { font-size: 3rem; margin-bottom: 1rem; }
.logo_843a h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.logo_843a p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.article-1a3d { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.article-1a3d span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.alert_red_23cc { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.inner_eea7 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.header-1068 { text-align: center; }
.menu_959a { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.bottom_2873 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.texture-liquid-e7f0 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.aside_971e { margin: 2rem 0; }
.progress_1234 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.progress_1234 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.progress_1234 p, .progress_1234 ul { line-height: 1.7; }
.progress_1234 ul { list-style: none; padding-left: 0; }
.progress_1234 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.progress_1234 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.modal-hard-5e16 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.tiny-c859 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.mask_fresh_0d03 { text-align: center; }
.top-2774 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.paragraph_fluid_227e { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.nav_016b { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.bronze_3984 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.main-silver-ebca { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.main-silver-ebca:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.main-silver-ebca h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.main-silver-ebca p, .main-silver-ebca ul { line-height: 1.7; }
.main-silver-ebca ul { list-style: none; padding-left: 0; }
.main-silver-ebca ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.main-silver-ebca ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 6fe0 */
.widget-item-u1 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.3;
}
