
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
:root {
  --bg-main: #0b0f19;
  --bg-surface: #151c2c;
  --bg-surface-hover: #1e293b;
  --border-color: #27354a;

  --text-main: #f1f5f9;
  --text-muted: #94a3b8;

  --primary: #6366f1;       
  --primary-hover: #4f46e5;
  --accent-green: #10b981; 

  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-code: "Fira Code", Consolas, Monaco, monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
}


.site-header {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 4rem);
  text-align: center;
  padding: 6rem 1.5rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  color: white;
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-download {
  background-color: var(--accent-green);
  color: #042f2e;
}
a{
    color: rgb(113, 116, 243);
}

.btn-download:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}


.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.download-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.2s, transform 0.2s;
}

.download-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.download-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.download-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}


.docs-wrapper {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
}

.docs-sidebar {
  position: sticky;
  top: 5rem;
  height: calc(100vh - 6rem);
  overflow-y: auto;
  padding-right: 1rem;
}

.docs-nav-group {
  margin-bottom: 1.5rem;
}

.docs-nav-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.docs-nav-links {
  list-style: none;
}

.docs-nav-links a {
  display: block;
  padding: 0.35rem 0;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.docs-nav-links a:hover,
.docs-nav-links a.active {
  color: var(--primary);
}

.docs-content {
  max-width: 800px;
}

.docs-content h1, 
.docs-content h2, 
.docs-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.docs-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.docs-content code {
  background: var(--bg-surface);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: var(--font-code);
  font-size: 0.9em;
  border: 1px solid var(--border-color);
}

.docs-content pre {
  background: var(--bg-surface);
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  border: 1px solid var(--border-color);
  margin: 1rem 0;
}

.docs-content pre code {
  background: none;
  padding: 0;
  border: none;
}

@media (max-width: 768px) {
  .docs-wrapper {
    grid-template-columns: 1fr;
  }
  
  .docs-sidebar {
    position: static;
    height: auto;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
}
.hero-bg-carousel {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height:auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
  border-radius: 0; 
}

.hero-bg-carousel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 15, 25, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-content p {
  font-size: 1.25rem;
  color: #f1f5f9; 
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.homeTitle {
  padding: 20px;
  background: rgba(11, 15, 25, 0.466);
  border-radius: 20px;
  border-color: rgba(11, 15, 25, 0.466);
}
.docs-content img {
  max-width: 100%;       
  height: auto;          
  display: block;        
  margin: 1.5rem 0;      
  border-radius: 8px;    
  border: 1px solid var(--border-color); 
}