/* ============================================
   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 */
.mask_5a2b p,
.mini_2278,
.title-fixed-8e07,
.breadcrumb-prev-b1c3,
.red-de51,
.copper_62cf,
.dim_8e57,
.clean_a657 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.silver-aff2 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.silver-aff2 > *,
.plasma_2323,
.mask_5a2b,
.dropdown-blue-10bc {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .silver-aff2 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .silver-aff2 {
    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 === */
.tiny-7c48 {
  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 */
.tiny-7c48.steel_61c6 {
  box-shadow: var(--shadow-md);
}

.yellow_2ba1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.hover-6280 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.upper-da0c {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.chip_pressed_915e {
  display: none;
}

/* Hide mobile actions on desktop */
.overlay-blue-23d4 {
  display: none;
}

.background-83fe a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.background-83fe a:hover,
.background-83fe a.fn-active-af8a {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.surface_67c6 {
  margin-left: 1rem;
}

.selected-5444 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.dynamic-a6ce,
.slider-short-9344 {
  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;
}

.dynamic-a6ce {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.dynamic-a6ce: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;
}

.slider-short-9344 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.slider-short-9344: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;
}

.dynamic-a6ce svg,
.slider-short-9344 svg {
  flex-shrink: 0;
}

.up_7b6f {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.large_40bd {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.large_40bd::before,
.large_40bd::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.large_40bd::before {
  top: -7px;
}

.large_40bd::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.component-upper-70f8 {
  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 === */
.link_4803 {
  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);
}

.disabled-bright-e8d0 {
  margin: 0 0 2rem;
  text-align: center;
}

.gradient_up_4bd6 {
  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;
}

.gradient_up_4bd6:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.caption_light_420a {
  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);
}

.caption_light_420a strong {
  color: var(--primary-color);
  font-weight: 700;
}

.input_da3d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.wood_1147 {
  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;
}

.wood_1147:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.input-bronze-55fc {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stale_986e {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.surface-purple-6955 {
  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);
}

.surface-purple-6955 .smooth-1804 {
  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;
}

.surface-purple-6955 .smooth-1804 svg {
  flex-shrink: 0;
}

.surface-purple-6955 .active_next_c764 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.surface-purple-6955 .active_next_c764: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);
}

.surface-purple-6955 .prev-5866 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.surface-purple-6955 .prev-5866: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) {
  .link_4803 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .gradient_up_4bd6 {
    max-width: 100%;
  }

  .input_da3d {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .wood_1147 {
    padding: 1rem;
  }

  .input-bronze-55fc {
    font-size: 1.5rem;
  }

  .stale_986e {
    font-size: 0.75rem;
  }

  .caption_light_420a {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .surface-purple-6955 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .surface-purple-6955 .smooth-1804 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .input_da3d {
    grid-template-columns: 1fr;
  }
}

.form_glass_3705 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.primary_54d7 {
  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 === */
.white_e5bb {
  margin-bottom: 2.5rem;
}

.summary_d457 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.form_glass_3705 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.caption-f4f5 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.east-7e7c {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.label_cd79 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.panel_stale_38c0 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.notification_new_6870 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.brown-e7b7 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.video-51f7 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.video-51f7 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.shade_wide_ee5d {
  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);
}

.top_e0c6 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.preview_41f6 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.panel-warm-5efd {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.medium_b3c9 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.icon-f8c6 {
  display: grid;
  gap: 1rem;
}

.tall_2a55 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.static_ad24 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.slow_7a3c {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.hover_lower_2781 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.sidebar_8ed1 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.component_active_ea39 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.component_active_ea39 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.mini_2278 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.small-1005 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.chip-8e2e {
  display: grid;
  gap: 2rem;
}

.header_79c8 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.east-7e7c {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.caption-f4f5 {
  flex: 1;
}

.panel_stale_38c0 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.panel_stale_38c0 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.light_7cac {
  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;
}

.notification_new_6870 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.list_white_670c {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.list_white_670c span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.alert_smooth_ef15 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.alert_smooth_ef15 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.copper_9c7c {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.copper_9c7c strong {
  display: block;
  margin-bottom: 0.75rem;
}

.copper_9c7c ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.copper_9c7c li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.small-9b99 {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #fef3c7;
  border-left: 4px solid var(--warning-color);
  border-radius: 4px;
  font-size: 0.9375rem;
}

/* === Table of Contents === */
.paragraph_simple_4caf {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.menu_easy_f195 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.center-2e2f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tertiary-motion-bcbe h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.tertiary-motion-bcbe ol {
  list-style: none;
  counter-reset: toc-counter;
}

.tertiary-motion-bcbe ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.tertiary-motion-bcbe 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;
}

.tertiary-motion-bcbe ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.tertiary-motion-bcbe ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.mask_5a2b {
  padding: 3rem 0 5rem;
}

.dropdown-blue-10bc {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.dropdown-blue-10bc.mini_990c {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.title-fixed-8e07 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.avatar-large-883a {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.shade_white_93ae {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.shade_white_93ae h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.easy-b8b0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.paragraph_f73b {
  text-align: center;
}

.stone_1caf {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.liquid_bd9f {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.silver-c122 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.copper_62cf {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.breadcrumb-prev-b1c3 {
  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;
}

.breadcrumb-prev-b1c3 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.breadcrumb-prev-b1c3:hover {
  box-shadow: var(--shadow-lg);
}

.breadcrumb-prev-b1c3.active-3a9e {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.breadcrumb-prev-b1c3 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.breadcrumb-prev-b1c3 ul {
  margin: 1rem 0;
}

.breadcrumb-prev-b1c3 li {
  margin-bottom: 0.75rem;
}

.paper-05d6 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.banner_out_4e7b {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.banner_out_4e7b a {
  font-weight: 600;
}

/* === Data Tables === */
.gallery_b835 {
  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;
}

.gallery_b835 table {
  width: 100%;
  min-width: 600px;
}

.gallery_b835 thead {
  background-color: var(--primary-color);
  color: white;
}

.gallery_b835 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.gallery_b835 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.gallery_b835 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.gallery_b835 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.middle_0400 {
  list-style: none;
  margin: 1.5rem 0;
}

.middle_0400 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.middle_0400 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.stale_c5d1::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-af8a::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 === */
.primary-pro-1a38 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.smooth-2022 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.smooth-2022 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.smooth-2022 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.smooth-2022 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.primary-pro-1a38 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.dim_8e57 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.dim_8e57::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.avatar-brown-5847 {
  position: relative;
  margin-bottom: 3rem;
}

.highlight_5de8 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.highlight_5de8 .bronze-2574 {
  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;
}

.fast_e9e4 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.fast_e9e4 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.fast_e9e4 ul {
  margin: 1rem 0;
}

.fast_e9e4 li {
  margin-bottom: 0.75rem;
}

.button_0dcb {
  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 === */
.box_action_f609 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.box_action_f609 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.north-bbc8 {
  list-style: none;
  margin: 1.5rem 0;
}

.north-bbc8 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.north-bbc8 a {
  font-weight: 600;
}

.widget-upper-4129 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.clean_a657 {
  margin: 2.5rem 0;
}

.wrapper-cold-4746 {
  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;
}

.wrapper-cold-4746:hover {
  box-shadow: var(--shadow-lg);
}

.wrapper-cold-4746.list-outer-e98c {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.widget_0f3c {
  flex-shrink: 0;
}

.widget_0f3c 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);
}

.alert-action-9d64 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.link-070f,
.notice_bc0a,
.dropdown-2306 {
  width: 100%;
  margin: 1.5rem 0;
}

.avatar_110a {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.avatar_110a strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.breadcrumb-2229 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.breadcrumb-2229 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.outer_4e46 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.outer_4e46 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.shade_29c9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.card-white-fe90 {
  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;
}

.card-white-fe90:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card-white-fe90.gradient-0f01 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.card-white-fe90 .gradient-f811 {
  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;
}

.card-white-fe90 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.status-bronze-eea7 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.down_c08c {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.down_c08c label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.dropdown-caa8 {
  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 === */
.smooth-1804 {
  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;
}

.active_next_c764 {
  background-color: var(--primary-color);
  color: white;
}

.active_next_c764:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.prev-5866 {
  background-color: var(--text-secondary);
  color: white;
}

.prev-5866:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.avatar_upper_0a56 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.avatar_upper_0a56:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.nav_left_8fee {
  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;
}

.nav_left_8fee:hover {
  background-color: var(--primary-dark);
}

.carousel-c5d5 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.avatar-pro-415d {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.link_5722 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.notice_paper_f0ba {
  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 === */
.popup-purple-1575 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.popup_focused_7e46 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.popup_focused_7e46 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.section_88d0 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.dropdown_right_e9b5 {
  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;
}

.silver-09d2 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.widget-b36f {
  list-style: none;
  counter-reset: rank-counter;
}

.widget-b36f li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.widget-b36f 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;
}

.active-7f4b {
  list-style: none;
}

.active-7f4b li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.focus_tiny_f095 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.notification-a463 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.notification-a463 .disabled-right-cde7 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.notification-a463 .tag_out_6e37 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.focused_5b2f {
  margin-top: 3rem;
}

.slider-41ba {
  width: 100%;
}

.footer_ec78 {
  background-color: #fef3c7;
}

.list_fluid_6b0d {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.active_steel_0e1d {
  margin: 3rem 0;
}

.tabs_west_c8b7 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.red-85f0 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.red-85f0:hover {
  box-shadow: var(--shadow-lg);
}

.red-85f0.column_5de0 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.carousel-3dcd {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.label-c205 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.label-c205 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.in-9f9a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.red-85f0 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.rough-ee7a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.picture_steel_c08e {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.iron_6a21 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.shade_817d {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.module-fc7c {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.black-7be4 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.dropdown_gold_e057 {
  max-width: 900px;
  margin: 0 auto;
}

.form_4470 {
  margin: 2rem 0;
}

.modal_iron_ef37 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.modal_iron_ef37 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.modal_iron_ef37 summary::-webkit-details-marker {
  display: none;
}

.modal_iron_ef37 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.title_dea8 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.modal_iron_ef37[open] .title_dea8 {
  transform: rotate(45deg);
}

.logo_935b {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.logo_935b p:last-child {
  margin-bottom: 0;
}

.frame_wood_d169 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.content_7a2c {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.overlay-bd96 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.overlay-bd96 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.overlay-bd96 .smooth-1804 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.badge-pressed-d6e6 {
  max-width: 900px;
  margin: 0 auto;
}

.mask-center-e6fd {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.logo_ca4a {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.logo_ca4a.fn-success-af8a {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.search_fb68 {
  font-size: 3rem;
  line-height: 1;
}

.hot-11f3 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.surface-bdd0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.full_ba05,
.hard_b10a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.full_ba05 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.hard_b10a h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.dirty-f333,
.disabled-large-605e {
  margin: 1.5rem 0;
}

.dirty-f333 li,
.disabled-large-605e li {
  margin-bottom: 1rem;
}

.nav-fa56 {
  margin: 3rem 0;
}

.photo-west-30a9 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.photo-west-30a9 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.photo-west-30a9 ol {
  margin: 1rem 0;
}

.photo-west-30a9 li {
  margin-bottom: 0.75rem;
}

.down_766c {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.border_left_5fa4 {
  margin: 2rem 0;
}

.notification-fixed-006f {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.left-cbd6 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.selected-d74a {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.hot_7150 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.tall-957b {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.huge_22c1 {
  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;
}

.huge_22c1 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.label_cd79 {
  flex: 1;
}

.label_cd79 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.table-ffb2 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.table_626e p {
  margin-bottom: 1rem;
}

.short-1aff {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.block_2bb4 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.pagination_glass_77e0 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.pagination_glass_77e0 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.dropdown-clean-7d13 h3 {
  margin-bottom: 1.5rem;
}

.last-5cea {
  display: grid;
  gap: 2rem;
}

.complex_85d4 {
  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;
}

.complex_85d4 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.complex_85d4 h4 {
  margin: 0 0 0.25rem;
}

.complex_85d4 p {
  margin: 0;
  font-size: 0.9375rem;
}

.north-a02c {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.dynamic_4049 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.dynamic_4049 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.dynamic_4049 ul {
  margin: 1.5rem 0;
}

.dynamic_4049 li {
  margin-bottom: 0.75rem;
}

.outline_3ba3 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.east-1090 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.card_71f7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.table-active-4c56 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.table-active-4c56 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.purple_a0a3 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.purple_a0a3 a {
  color: rgba(255, 255, 255, 0.8);
}

.header_6d42 {
  list-style: none;
}

.header_6d42 li {
  margin-bottom: 0.75rem;
}

.header_6d42 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.header_6d42 a:hover {
  color: white;
}

.red-481b {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.middle-ddc6 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.summary-liquid-29ff {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.form-1112 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.accordion-3879 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .silver-aff2 {
    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;
  }

  .focus_outer_1d6d {
    font-size: 1.5rem !important;
  }

  .summary_d457 {
    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 */
  .breadcrumb-prev-b1c3,
  .red-de51,
  .fast_e9e4,
  .alert-action-9d64,
  .carousel-3dcd,
  .red-85f0,
  .logo_935b,
  .caption_light_420a,
  .mini_2278,
  .title-fixed-8e07 {
    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 */
  .form_glass_3705 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .caption-f4f5 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .east-7e7c {
    flex-shrink: 0;
  }

  .label_cd79 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .panel_stale_38c0,
  .notification_new_6870 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .notification_new_6870 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .upper-da0c {
    display: none;
  }

  /* Show mobile actions */
  .overlay-blue-23d4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .message_0a56 {
    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;
  }

  .message_0a56 svg {
    flex-shrink: 0;
  }

  .message_0a56 .modal-ce07 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .message_0a56 .badge-8a1e {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .input-e376 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .tiny_e70c {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .message_0a56:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .chip_pressed_915e {
    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;
  }

  .chip_pressed_915e.fn-active-af8a {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .chip_pressed_915e li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .chip_pressed_915e li:last-child {
    border-bottom: none;
  }

  .chip_pressed_915e a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .background-83fe {
    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;
  }

  .background-83fe li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .background-83fe li:last-child {
    border-bottom: none;
  }

  .background-83fe a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .surface_67c6 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .selected-5444 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .dynamic-a6ce,
  .slider-short-9344 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .dynamic-a6ce {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .slider-short-9344 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .background-83fe.fn-active-af8a {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .up_7b6f {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .tiny-7c48 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .yellow_2ba1 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .component-upper-70f8 {
    margin-top: 0;
  }

  /* Hero section */
  .component-upper-70f8 {
    padding: 2rem 0 1.5rem;
  }

  .summary_d457 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .mini_2278 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .link_4803 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .gradient_up_4bd6 {
    max-width: 100%;
    border-radius: 8px;
  }

  .input_da3d {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .wood_1147 {
    padding: 1rem;
  }

  .input-bronze-55fc {
    font-size: 1.5rem;
  }

  .stale_986e {
    font-size: 0.75rem;
  }

  .caption_light_420a {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .surface-purple-6955 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .surface-purple-6955 .smooth-1804 {
    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 */
  .center-2e2f {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .wrapper-cold-4746 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .widget_0f3c {
    margin-bottom: 1rem;
  }

  /* Author */
  .header_79c8 {
    flex-direction: column;
  }

  .huge_22c1 {
    flex-direction: column;
  }

  /* Quotes */
  .carousel-3dcd {
    flex-direction: column;
  }

  /* Pros/Cons */
  .surface-bdd0 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .hot_7150 {
    flex-direction: column;
  }

  .hot_7150 .smooth-1804 {
    width: 100%;
  }

  /* Version comparison */
  .shade_29c9 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .popup-purple-1575 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .card_71f7 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .summary-liquid-29ff {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .gallery_b835,
  .notice_bc0a,
  .black-08df,
  .slider-41ba,
  .link-070f,
  .dropdown-2306 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .gallery_b835 table,
  .notice_bc0a table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .dropdown-caa8 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .silver-aff2 {
    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;
  }

  .focus_outer_1d6d {
    font-size: 1.25rem !important;
  }

  .summary_d457 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .tiny-7c48 {
    position: fixed;
  }

  .yellow_2ba1 {
    padding: 0.625rem 0;
  }

  .hover-6280 img {
    height: 26px;
  }

  .background-83fe {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .chip_pressed_915e {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .message_0a56 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .message_0a56 svg {
    width: 18px;
    height: 18px;
  }

  .message_0a56 .modal-ce07 {
    font-size: 0.7rem;
  }

  .message_0a56 .badge-8a1e {
    font-size: 0.65rem;
  }

  .dynamic-a6ce,
  .slider-short-9344 {
    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, .silver-aff2, .plasma_2323, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .link_4803 {
    padding: 1rem;
  }

  .input_da3d {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .wood_1147 {
    padding: 0.875rem;
  }

  .input-bronze-55fc {
    font-size: 1.25rem;
  }

  .surface-purple-6955 .smooth-1804 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .summary_d457 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .smooth-1804 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .carousel-c5d5 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .wrapper-cold-4746 {
    padding: 1rem;
  }

  .widget_0f3c span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .breadcrumb-prev-b1c3,
  .filter-aad6,
  .bright-4dac,
  .texture_5d6c {
    padding: 1rem;
  }
}

@media print {
  .tiny-7c48,
  .paragraph_simple_4caf,
  .up_7b6f,
  .smooth-1804,
  .east-1090 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .silver-aff2 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.box_right_d079 {
  margin-bottom: 3rem;
  text-align: center;
}

.focus_outer_1d6d {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.preview-dynamic-74e6 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.notification-middle-4e2e,
.static_4cc9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.hover_bronze_3ae0 {
  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_bronze_3ae0:hover {
  transform: translateY(-5px);
}

.hover_bronze_3ae0 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.hover_bronze_3ae0 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.chip-af07 {
  margin: 3rem 0;
}

.background_3ca7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.detail_rough_d1db {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.detail_rough_d1db:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.breadcrumb-upper-aa37 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.active_d329 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.chip_a3aa {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.large-feba {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.dim_8041 {
  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;
}

.dim_8041:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.dim_8041.main_bright_e716 {
  border-left: 4px solid var(--primary-color);
}

.mini_1ef7 {
  flex-shrink: 0;
}

.mini_1ef7 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.pink_25d0 {
  flex: 1;
}

.pink_25d0 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.module_hot_6f75 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.nav-warm-e01f,
.header-1c7e,
.title-8255 {
  margin-bottom: 1.5rem;
}

.nav-warm-e01f h4,
.header-1c7e h4,
.title-8255 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-warm-e01f ul,
.header-1c7e ul,
.title-8255 ul {
  list-style: none;
  padding: 0;
}

.nav-warm-e01f li,
.header-1c7e li,
.title-8255 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.nav-warm-e01f li:before,
.header-1c7e li:before,
.title-8255 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.button_selected_7b91 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.button_selected_7b91 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;
}

.button_selected_7b91 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.card_3518 { margin: 2rem 0; }
.notification-wide-18cb { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.notification-wide-18cb h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.inner-35fd p { margin-bottom: 1rem; line-height: 1.7; }
.inner-35fd strong { color: var(--text-primary); }
.inner-35fd ul { list-style: none; padding-left: 0; }
.inner-35fd ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.inner-35fd ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.content_warm_e1b8 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.widget-fresh-b90c { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.widget-fresh-b90c:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.section-1d19 { font-size: 3rem; margin-bottom: 1rem; }
.widget-fresh-b90c h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.widget-fresh-b90c p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.solid-76df { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.solid-76df span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.pro_ea16 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.surface_26f5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.thumbnail_2f5a { text-align: center; }
.tabs-efd1 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.accordion_0f18 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.silver-819d { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.current-5b15 { margin: 2rem 0; }
.content_40c3 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.content_40c3 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.content_40c3 p, .content_40c3 ul { line-height: 1.7; }
.content_40c3 ul { list-style: none; padding-left: 0; }
.content_40c3 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.content_40c3 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.summary_orange_9e56 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.secondary-first-4223 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.primary_3026 { text-align: center; }
.carousel-west-2c3e { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.thumbnail-9a92 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.card-hot-061f { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.thick_6212 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.primary-copper-6abf { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.primary-copper-6abf:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.primary-copper-6abf h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.primary-copper-6abf p, .primary-copper-6abf ul { line-height: 1.7; }
.primary-copper-6abf ul { list-style: none; padding-left: 0; }
.primary-copper-6abf ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.primary-copper-6abf ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 2244 */
.phantom-card-x0 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.0;
}
