body {
  font-family: "JetBrains Mono", Consolas, monospace;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)), url("https://images.unsplash.com/photo-1644088379091-d574269d422f");
  background-size: cover;
  margin: 0;
  padding: 20px;
  color: #f0f6fc;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}
.container {
  max-width: 800px;
  width: 100%;
  padding: 2rem;
  margin-top: 5vh;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  box-sizing: border-box;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }
  
  .container {
    padding: 1.5rem;
    margin-top: 3vh;
    border-radius: 15px;
  }
  
  .header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }
  
  .header h1 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .github-link {
    align-self: stretch;
    justify-content: center;
  }
  
  .copy-btn {
    font-size: 12px;
    padding: 4px 8px;
    top: 10px;
    right: 8px;
  }
  
  pre {
    padding: 15px 12px;
    font-size: 14px;
  }
  
  code {
    font-size: 14px;
  }
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 1rem;
}
.header h1 {
  margin: 0;
  font-size: 1.5rem;
}
.install-caption {
  color: #999;
  font-size: 13px;
  margin-bottom: 4px;
  margin-left: 7px;
}
.code-container {
  position: relative;
}
.code-block {
  background: #0d1117;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #444;
  border-radius: 10px;
}
.copy-btn {
  font-family: "JetBrains Mono", Consolas, monospace;
  position: absolute;
  font-size: 14px;
  top: 14px;
  right: 12px;
  background: #21262d;
  border: 1px solid #999b9d;
  color: #f0f6fc;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  z-index: 1;
}
.copy-btn:hover {
  background: #30363d;
}
.copy-btn.copied {
  background: #238636;
  border-color: #238636;
}
pre {
  margin: 0;
  padding: 20px 16px;
  overflow-x: auto;
}
code {
  font-family: "JetBrains Mono", Consolas, monospace;
  color: #f0f6fc;
}
code::before {
  content: '$ ';
}
.github-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #21262d;
  color: #f0f6fc;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid #30363d;
  transition: background-color 0.2s;
  white-space: nowrap;
}
.github-link:hover {
  background: #30363d;
  color: #f0f6fc;
}
.github-icon {
  width: 16px;
  height: 16px;
}