pre code {
  display: block;
  color: #0f0;
  padding: 1rem;
  font-family: 'Source Code Pro', Menlo, Monaco, Consolas, 'Courier New', monospace;
  font-size: 0.9rem;
  line-height: 1.4;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
}

pre {
  background:#00152e!important;
  margin: 1.5rem 0;
}

.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  background: linear-gradient(90deg, #007bff, #0056b3);
  color: #fff;
  border-radius: 0 0 4px 4px;
}

.announcement-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.announcement-button {
  background: #fff;
  color: #007bff;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: background 0.2s, transform 0.2s;
}

.announcement-button:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}

#preloader .loader-cover .loader-container .loader-icon {
    background: conic-gradient(from 120deg at 50% 64%, transparent, #0050e4ff 1deg 120deg, transparent 121deg)!important;

}

body {
  background: #0a0f1a;
  color: #e5eaf5;
  font-family: 'Inter', sans-serif;
}

.project-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 20px;
  text-align: center;
  line-height: 1.7;
}

.site-title {
  font-size: 2rem;
  font-weight: 700;
  color: #4da6ff;
  margin-bottom: 20px;
}

.site-tagline {
  font-size: 1.4rem;
  font-weight: 500;
  color: #a0c4ff;
  margin-bottom: 40px;
}

.section-title {
  margin: 50px 0 20px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #4da6ff;
  border-bottom: 2px solid #1a2235;
  display: inline-block;
  padding-bottom: 6px;
}

.feature-title {
  margin-top: 30px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #e5eaf5;
}

.feature-desc {
  margin: 12px auto 25px;
  max-width: 700px;
  font-size: 1rem;
  color: #b3bcd1;
}

.cta-block {
  background: linear-gradient(181deg, #190041, #0f001c);
  color: #fff;
  padding: 50px 30px;
  margin: 60px 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.cta-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 32px;
  background: #007bff;
  color: #0a0f1a;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all .3s ease;
}

.cta-btn:hover {
  background: transparent;
  border: 2px solid #007bff;
  color: #007bff;
  transform: translateY(-3px);
}