:root {
  --primary-color: #4a90e2;
  --secondary-color: #50e3c2;
  --background-color: #f8f9fa;
  --text-color: #333;
  --card-bg-color: #ffffff;
  --border-radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

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

header {
  margin-bottom: 2rem;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
}

nav ul li {
  margin: 0 1rem;
}

nav ul li a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--primary-color);
}

h1, h2 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.installation-card {
  background-color: var(--card-bg-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

pre {
  background-color: #f1f3f5;
  border-radius: var(--border-radius);
  padding: 1rem;
  overflow-x: auto;
  margin-top: 10px;
  margin-bottom: 1rem;
}

code {
  font-family: 'Fira Code', monospace;
  font-size: 0.9rem;
}

.copy-btn {
  background-color: var(--secondary-color);
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s ease;
}

.copy-btn:hover {
  background-color: #3ec1a0;
}

.cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background-color: var(--primary-color);
  color: white;
}

.button.primary:hover {
  background-color: #3a7bc8;
}

.button.secondary {
  background-color: #e9ecef;
  color: var(--text-color);
}

.button.secondary:hover {
  background-color: #dee2e6;
}

.help-options {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 20px;
}

.help-options li {
  background-color: var(--card-bg-color);
  padding: 1rem;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.help-options a {
  color: var(--primary-color);
  text-decoration: none;
}

footer {
  margin-top: 2rem;
  text-align: center;
  color: #666;
}

.social-links {
  list-style-type: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: #666;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .cta-group {
    flex-direction: column;
  }

  .help-options {
    grid-template-columns: 1fr;
  }
}

section#logo {
  margin: 30px !important;
}

.logo-container {
  text-align: center;
}

.logo-container img {
  max-width: 300px;
}