html,
body {
  background: #030303;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.download-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.download-state.hidden {
  display: none !important;
}

.download-nav-logo {
  width: 118px;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(168, 85, 247, 0.18));
}

.download-card-logo {
  width: 56px;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(168, 85, 247, 0.18));
}

.download-state .sharp-button {
  box-sizing: border-box;
  width: 246px;
  min-height: 70px;
  padding-inline: 0 !important;
}

.download-state .sharp-button svg {
  flex: 0 0 24px;
}

.bento-card {
  min-height: 416px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.035), transparent 44%),
    rgba(255, 255, 255, 0.018);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 24px 70px rgba(0, 0, 0, 0.18);
}

.bento-card > * {
  position: relative;
  z-index: 1;
}

.download-scan-bar {
  animation: download-scan 2s linear infinite;
  animation-delay: -1.6s;
}

@keyframes download-scan {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(300%);
  }
}

@media (max-width: 1020px) {
  nav .md\:flex {
    gap: 1.25rem;
  }

  #download-nav-actions {
    min-width: auto;
  }
}
