body,
html {
  margin: 0;
  padding: 0;
  font-family: monospace;
  background-color: #000000;
  color: #d1d5db;
  height: 100%;
  overflow: hidden;
}

.header {
  display: flex;
  gap: 1rem;
  align-items: center;
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  right: 2.5rem;
  justify-content: space-between;
  z-index: 10;
}

.logo {
  fill: #d1d5db;
  transition: all 0.3s;
}

.block-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.block-icon {
  fill: #22c55e;
}

.block-text {
  color: #d1d5db;
  font-size: 0.875rem;
}

.hidden {
  display: none;
}

.main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}

.grid-background {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(
      to right,
      rgba(75, 75, 75, 0.4) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(75, 75, 75, 0.4) 1px, transparent 1px);
  background-size: 2rem 2rem;
  background-color: #000000;
}

.radial-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.8) 30%,
    transparent 70%
  );
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6),
      transparent,
      rgba(0, 0, 0, 0.6)
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6),
      transparent,
      rgba(0, 0, 0, 0.6)
    );
}

.content {
  position: relative;
  z-index: 10;
  padding: 2rem;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.instructions {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.instructions p {
  margin: 0.2rem;
  font-size: 13px;
}

.code-highlight {
  background-color: #1f2937;
  padding: 0 0.25rem;
  border-radius: 0.25rem;
  font-weight: bold;
}

.buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  width: 100%;
}

.buttons a {
  width: 100%;
  text-decoration: none;
}

.button {
  height: 2.5rem;
  width: 100%;
  padding: 0 1.5rem;
  font-weight: bold;
  border-radius: 0.375rem;
  transition: background-color 0.3s;
  font-size: 13px;
  cursor: pointer;
  border: none;
}

.button.primary {
  background-color: white;
  color: black;
}

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

.button.secondary {
  background-color: #222222;
  color: white;
}

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

.social-links {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  position: absolute;
  bottom: 5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
}

.social-link:hover {
  color: white;
}

.social-link svg {
  fill: currentColor;
}

.minima-icon {
  fill: currentColor;
}
